WordPress/wp-includes/js/dist/block-library.min.js
gziolo 2ec4c366e6 Build: Update webpack to v5.x
Update webpack version to latest version https://www.npmjs.com/package/webpack. This aligns closer with how the Gutenberg plugin handles WordPress packages. Related update in Gutenberg from August 2021: https://github.com/WordPress/gutenberg/pull/33818.

Props walbo, desrosj, mukesh27.
Fixes #51750.



Built from https://develop.svn.wordpress.org/trunk@53135


git-svn-id: http://core.svn.wordpress.org/trunk@52724 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2022-04-11 12:04:30 +00:00

14 lines
568 KiB
JavaScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*! This file is auto-generated */
!function(){var e={3827:function(e,t){var n;
/*!
Copyright (c) 2018 Jed Watson.
Licensed under the MIT License (MIT), see
http://jedwatson.github.io/classnames
*/!function(){"use strict";var o=function(){function e(){}function t(e,t){for(var n=t.length,o=0;o<n;++o)r(e,t[o])}e.prototype=Object.create(null);var n={}.hasOwnProperty;var o=/\s+/;function r(e,r){if(r){var a=typeof r;"string"===a?function(e,t){for(var n=t.split(o),r=n.length,a=0;a<r;++a)e[n[a]]=!0}(e,r):Array.isArray(r)?t(e,r):"object"===a?function(e,t){if(t.toString===Object.prototype.toString)for(var o in t)n.call(t,o)&&(e[o]=!!t[o]);else e[t.toString()]=!0}(e,r):"number"===a&&function(e,t){e[t]=!0}(e,r)}}return function(){for(var n=arguments.length,o=Array(n),r=0;r<n;r++)o[r]=arguments[r];var a=new e;t(a,o);var l=[];for(var i in a)a[i]&&l.push(i);return l.join(" ")}}();e.exports?(o.default=o,e.exports=o):void 0===(n=function(){return o}.apply(t,[]))||(e.exports=n)}()},4403:function(e,t){var n;
/*!
Copyright (c) 2018 Jed Watson.
Licensed under the MIT License (MIT), see
http://jedwatson.github.io/classnames
*/!function(){"use strict";var o={}.hasOwnProperty;function r(){for(var e=[],t=0;t<arguments.length;t++){var n=arguments[t];if(n){var a=typeof n;if("string"===a||"number"===a)e.push(n);else if(Array.isArray(n)){if(n.length){var l=r.apply(null,n);l&&e.push(l)}}else if("object"===a)if(n.toString===Object.prototype.toString)for(var i in n)o.call(n,i)&&n[i]&&e.push(i);else e.push(n.toString())}}return e.join(" ")}e.exports?(r.default=r,e.exports=r):void 0===(n=function(){return r}.apply(t,[]))||(e.exports=n)}()},5027:function(e){
/*! Fast Average Color | © 2019 Denis Seleznev | MIT License | https://github.com/hcodes/fast-average-color/ */
e.exports=function(){"use strict";function e(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function t(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function n(e,n,o){return n&&t(e.prototype,n),o&&t(e,o),e}function o(e,t){return r(e)||a(e,t)||l()}function r(e){if(Array.isArray(e))return e}function a(e,t){var n=[],o=!0,r=!1,a=void 0;try{for(var l,i=e[Symbol.iterator]();!(o=(l=i.next()).done)&&(n.push(l.value),!t||n.length!==t);o=!0);}catch(e){r=!0,a=e}finally{try{o||null==i.return||i.return()}finally{if(r)throw a}}return n}function l(){throw new TypeError("Invalid attempt to destructure non-iterable instance")}return function(){function t(){e(this,t)}return n(t,[{key:"getColorAsync",value:function(e,t,n){e.complete?t.call(e,this.getColor(e,n),n&&n.data):this._bindImageEvents(e,t,n)}},{key:"getColor",value:function(e,t){t=t||{};var n=this._getDefaultColor(t),o=this._getOriginalSize(e),r=this._prepareSizeAndPosition(o,t),a=null,l=n;if(!(r.srcWidth&&r.srcHeight&&r.destWidth&&r.destHeight))return this._prepareResult(n,new Error("FastAverageColor: Incorrect sizes."));if(!this._ctx&&(this._canvas=this._makeCanvas(),this._ctx=this._canvas.getContext&&this._canvas.getContext("2d"),!this._ctx))return this._prepareResult(n,new Error("FastAverageColor: Canvas Context 2D is not supported in this browser."));this._canvas.width=r.destWidth,this._canvas.height=r.destHeight;try{this._ctx.clearRect(0,0,r.destWidth,r.destHeight),this._ctx.drawImage(e,r.srcLeft,r.srcTop,r.srcWidth,r.srcHeight,0,0,r.destWidth,r.destHeight);var i=this._ctx.getImageData(0,0,r.destWidth,r.destHeight).data;l=this.getColorFromArray4(i,t)}catch(e){a=e}return this._prepareResult(l,a)}},{key:"getColorFromArray4",value:function(e,t){t=t||{};var n=4,o=e.length;if(o<n)return this._getDefaultColor(t);var r=o-o%n,a=(t.step||1)*n,l="_"+(t.algorithm||"sqrt")+"Algorithm";if("function"!=typeof this[l])throw new Error("FastAverageColor: ".concat(t.algorithm," is unknown algorithm."));return this[l](e,r,a)}},{key:"destroy",value:function(){delete this._canvas,delete this._ctx}},{key:"_getDefaultColor",value:function(e){return this._getOption(e,"defaultColor",[255,255,255,255])}},{key:"_getOption",value:function(e,t,n){return void 0===e[t]?n:e[t]}},{key:"_prepareSizeAndPosition",value:function(e,t){var n=this._getOption(t,"left",0),o=this._getOption(t,"top",0),r=this._getOption(t,"width",e.width),a=this._getOption(t,"height",e.height),l=r,i=a;if("precision"===t.mode)return{srcLeft:n,srcTop:o,srcWidth:r,srcHeight:a,destWidth:l,destHeight:i};var s,c=100,u=10;return r>a?(s=r/a,l=c,i=Math.round(l/s)):(s=a/r,i=c,l=Math.round(i/s)),(l>r||i>a||l<u||i<u)&&(l=r,i=a),{srcLeft:n,srcTop:o,srcWidth:r,srcHeight:a,destWidth:l,destHeight:i}}},{key:"_simpleAlgorithm",value:function(e,t,n){for(var o=0,r=0,a=0,l=0,i=0,s=0;s<t;s+=n){var c=e[s+3];o+=e[s]*c,r+=e[s+1]*c,a+=e[s+2]*c,l+=c,i++}return l?[Math.round(o/l),Math.round(r/l),Math.round(a/l),Math.round(l/i)]:[0,0,0,0]}},{key:"_sqrtAlgorithm",value:function(e,t,n){for(var o=0,r=0,a=0,l=0,i=0,s=0;s<t;s+=n){var c=e[s],u=e[s+1],m=e[s+2],d=e[s+3];o+=c*c*d,r+=u*u*d,a+=m*m*d,l+=d,i++}return l?[Math.round(Math.sqrt(o/l)),Math.round(Math.sqrt(r/l)),Math.round(Math.sqrt(a/l)),Math.round(l/i)]:[0,0,0,0]}},{key:"_dominantAlgorithm",value:function(e,t,n){for(var r={},a=24,l=0;l<t;l+=n){var i=e[l],s=e[l+1],c=e[l+2],u=e[l+3],m=Math.round(i/a)+","+Math.round(s/a)+","+Math.round(c/a);r[m]?r[m]=[r[m][0]+i*u,r[m][1]+s*u,r[m][2]+c*u,r[m][3]+u,r[m][4]+1]:r[m]=[i*u,s*u,c*u,u,1]}var d=Object.keys(r).map((function(e){return r[e]})).sort((function(e,t){var n=e[4],o=t[4];return n>o?-1:n===o?0:1})),p=o(d[0],5),g=p[0],h=p[1],v=p[2],b=p[3],y=p[4];return b?[Math.round(g/b),Math.round(h/b),Math.round(v/b),Math.round(b/y)]:[0,0,0,0]}},{key:"_bindImageEvents",value:function(e,t,n){var o=this,r=(n=n||{})&&n.data,a=this._getDefaultColor(n),l=function(){c(),t.call(e,o.getColor(e,n),r)},i=function(){c(),t.call(e,o._prepareResult(a,new Error("Image error")),r)},s=function(){c(),t.call(e,o._prepareResult(a,new Error("Image abort")),r)},c=function(){e.removeEventListener("load",l),e.removeEventListener("error",i),e.removeEventListener("abort",s)};e.addEventListener("load",l),e.addEventListener("error",i),e.addEventListener("abort",s)}},{key:"_prepareResult",value:function(e,t){var n=e.slice(0,3),o=[].concat(n,e[3]/255),r=this._isDark(e);return{error:t,value:e,rgb:"rgb("+n.join(",")+")",rgba:"rgba("+o.join(",")+")",hex:this._arrayToHex(n),hexa:this._arrayToHex(e),isDark:r,isLight:!r}}},{key:"_getOriginalSize",value:function(e){return e instanceof HTMLImageElement?{width:e.naturalWidth,height:e.naturalHeight}:e instanceof HTMLVideoElement?{width:e.videoWidth,height:e.videoHeight}:{width:e.width,height:e.height}}},{key:"_toHex",value:function(e){var t=e.toString(16);return 1===t.length?"0"+t:t}},{key:"_arrayToHex",value:function(e){return"#"+e.map(this._toHex).join("")}},{key:"_isDark",value:function(e){return(299*e[0]+587*e[1]+114*e[2])/1e3<128}},{key:"_makeCanvas",value:function(){return"undefined"==typeof window?new OffscreenCanvas(1,1):document.createElement("canvas")}}]),t}()}()},9756:function(e){e.exports=function(e,t){var n,o,r=0;function a(){var a,l,i=n,s=arguments.length;e:for(;i;){if(i.args.length===arguments.length){for(l=0;l<s;l++)if(i.args[l]!==arguments[l]){i=i.next;continue e}return i!==n&&(i===o&&(o=i.prev),i.prev.next=i.next,i.next&&(i.next.prev=i.prev),i.next=n,i.prev=null,n.prev=i,n=i),i.val}i=i.next}for(a=new Array(s),l=0;l<s;l++)a[l]=arguments[l];return i={args:a,val:e.apply(null,a)},n?(n.prev=i,i.next=n):o=i,r===t.maxSize?(o=o.prev).next=null:r++,n=i,i.val}return t=t||{},a.clear=function(){n=null,o=null,r=0},a}}},t={};function n(o){var r=t[o];if(void 0!==r)return r.exports;var a=t[o]={exports:{}};return e[o].call(a.exports,a,a.exports,n),a.exports}n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,{a:t}),t},n.d=function(e,t){for(var o in t)n.o(t,o)&&!n.o(e,o)&&Object.defineProperty(e,o,{enumerable:!0,get:t[o]})},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var o={};!function(){"use strict";n.r(o),n.d(o,{__experimentalGetCoreBlocks:function(){return Tv},__experimentalRegisterExperimentalCoreBlocks:function(){return zv},registerCoreBlocks:function(){return Nv}});var e={};n.r(e),n.d(e,{metadata:function(){return Se},name:function(){return Be},settings:function(){return Te}});var t={};n.r(t),n.d(t,{metadata:function(){return Je},name:function(){return Ye},settings:function(){return Xe}});var r={};n.r(r),n.d(r,{metadata:function(){return kt},name:function(){return wt},settings:function(){return Et}});var a={};n.r(a),n.d(a,{metadata:function(){return Rt},name:function(){return Lt},settings:function(){return Vt}});var l={};n.r(l),n.d(l,{metadata:function(){return Ut},name:function(){return Ot},settings:function(){return qt}});var i={};n.r(i),n.d(i,{metadata:function(){return jt},name:function(){return Zt},settings:function(){return Kt}});var s={};n.r(s),n.d(s,{metadata:function(){return Xt},name:function(){return en},settings:function(){return tn}});var c={};n.r(c),n.d(c,{metadata:function(){return ln},name:function(){return sn},settings:function(){return cn}});var u={};n.r(u),n.d(u,{metadata:function(){return gn},name:function(){return hn},settings:function(){return vn}});var m={};n.r(m),n.d(m,{metadata:function(){return Mn},name:function(){return Rn},settings:function(){return Ln}});var d={};n.r(d),n.d(d,{metadata:function(){return Uo},name:function(){return Oo},settings:function(){return qo}});var p={};n.r(p),n.d(p,{metadata:function(){return Sr},name:function(){return Br},settings:function(){return Tr}});var g={};n.r(g),n.d(g,{metadata:function(){return Or},name:function(){return qr},settings:function(){return $r}});var h={};n.r(h),n.d(h,{metadata:function(){return Ja},name:function(){return Ya},settings:function(){return Xa}});var v={};n.r(v),n.d(v,{metadata:function(){return sl},name:function(){return cl},settings:function(){return ul}});var b={};n.r(b),n.d(b,{metadata:function(){return Pl},name:function(){return Il},settings:function(){return Ml}});var y={};n.r(y),n.d(y,{metadata:function(){return Vl},name:function(){return Hl},settings:function(){return Al}});var f={};n.r(f),n.d(f,{metadata:function(){return Xl},name:function(){return ei},settings:function(){return ti}});var _={};n.r(_),n.d(_,{metadata:function(){return oi},name:function(){return ri},settings:function(){return ai}});var k={};n.r(k),n.d(k,{metadata:function(){return gi},name:function(){return hi},settings:function(){return vi}});var w={};n.r(w),n.d(w,{metadata:function(){return Pi},name:function(){return Ii},settings:function(){return Mi}});var E={};n.r(E),n.d(E,{metadata:function(){return Li},name:function(){return Vi},settings:function(){return Hi}});var C={};n.r(C),n.d(C,{metadata:function(){return os},name:function(){return rs},settings:function(){return as}});var x={};n.r(x),n.d(x,{metadata:function(){return cs},name:function(){return us},settings:function(){return ms}});var S={};n.r(S),n.d(S,{metadata:function(){return hs},name:function(){return vs},settings:function(){return bs}});var B={};n.r(B),n.d(B,{metadata:function(){return sc},name:function(){return cc},settings:function(){return uc}});var T={};n.r(T),n.d(T,{metadata:function(){return Sc},name:function(){return Bc},settings:function(){return Tc}});var N={};n.r(N),n.d(N,{metadata:function(){return Ac},name:function(){return Fc},settings:function(){return Dc}});var z={};n.r(z),n.d(z,{metadata:function(){return Oc},name:function(){return qc},settings:function(){return $c}});var P={};n.r(P),n.d(P,{metadata:function(){return jc},name:function(){return Zc},settings:function(){return Kc}});var I={};n.r(I),n.d(I,{metadata:function(){return ou},name:function(){return ru},settings:function(){return au}});var M={};n.r(M),n.d(M,{metadata:function(){return yu},name:function(){return fu},settings:function(){return _u}});var R={};n.r(R),n.d(R,{metadata:function(){return Eu},name:function(){return Cu},settings:function(){return xu}});var L={};n.r(L),n.d(L,{metadata:function(){return Tu},name:function(){return Nu},settings:function(){return zu}});var V={};n.r(V),n.d(V,{metadata:function(){return Au},name:function(){return Fu},settings:function(){return Du}});var H={};n.r(H),n.d(H,{metadata:function(){return Ou},name:function(){return qu},settings:function(){return $u}});var A={};n.r(A),n.d(A,{metadata:function(){return ju},name:function(){return Zu},settings:function(){return Ku}});var F={};n.r(F),n.d(F,{metadata:function(){return am},name:function(){return lm},settings:function(){return im}});var D={};n.r(D),n.d(D,{metadata:function(){return dm},name:function(){return pm},settings:function(){return gm}});var G={};n.r(G),n.d(G,{metadata:function(){return fm},name:function(){return _m},settings:function(){return km}});var U={};n.r(U),n.d(U,{metadata:function(){return xm},name:function(){return Sm},settings:function(){return Bm}});var O={};n.r(O),n.d(O,{metadata:function(){return Nm},name:function(){return zm},settings:function(){return Pm}});var q={};n.r(q),n.d(q,{metadata:function(){return Lm},name:function(){return Vm},settings:function(){return Hm}});var $={};n.r($),n.d($,{metadata:function(){return jm},name:function(){return Zm},settings:function(){return Km}});var W={};n.r(W),n.d(W,{metadata:function(){return bd},name:function(){return yd},settings:function(){return fd}});var j={};n.r(j),n.d(j,{metadata:function(){return Cd},name:function(){return xd},settings:function(){return Sd}});var Z={};n.r(Z),n.d(Z,{metadata:function(){return Nd},name:function(){return zd},settings:function(){return Pd}});var K={};n.r(K),n.d(K,{metadata:function(){return Rd},name:function(){return Ld},settings:function(){return Vd}});var Q={};n.r(Q),n.d(Q,{metadata:function(){return Fd},name:function(){return Dd},settings:function(){return Gd}});var J={};n.r(J),n.d(J,{metadata:function(){return jd},name:function(){return Zd},settings:function(){return Kd}});var Y={};n.r(Y),n.d(Y,{metadata:function(){return op},name:function(){return rp},settings:function(){return ap}});var X={};n.r(X),n.d(X,{metadata:function(){return cp},name:function(){return up},settings:function(){return mp}});var ee={};n.r(ee),n.d(ee,{metadata:function(){return pp},name:function(){return gp},settings:function(){return hp}});var te={};n.r(te),n.d(te,{metadata:function(){return Cp},name:function(){return xp},settings:function(){return Sp}});var ne={};n.r(ne),n.d(ne,{metadata:function(){return Pp},name:function(){return Ip},settings:function(){return Mp}});var oe={};n.r(oe),n.d(oe,{metadata:function(){return Hp},name:function(){return Ap},settings:function(){return Fp}});var re={};n.r(re),n.d(re,{metadata:function(){return qp},name:function(){return $p},settings:function(){return Wp}});var ae={};n.r(ae),n.d(ae,{metadata:function(){return Kp},name:function(){return Qp},settings:function(){return Jp}});var le={};n.r(le),n.d(le,{metadata:function(){return ng},name:function(){return og},settings:function(){return rg}});var ie={};n.r(ie),n.d(ie,{metadata:function(){return dg},name:function(){return pg},settings:function(){return gg}});var se={};n.r(se),n.d(se,{metadata:function(){return kg},name:function(){return wg},settings:function(){return Eg}});var ce={};n.r(ce),n.d(ce,{metadata:function(){return Ig},name:function(){return Mg},settings:function(){return Rg}});var ue={};n.r(ue),n.d(ue,{metadata:function(){return ch},name:function(){return uh},settings:function(){return mh}});var me={};n.r(me),n.d(me,{metadata:function(){return ph},name:function(){return gh},settings:function(){return hh}});var de={};n.r(de),n.d(de,{metadata:function(){return Hh},name:function(){return Ah},settings:function(){return Fh}});var pe={};n.r(pe),n.d(pe,{metadata:function(){return Uh},name:function(){return Oh},settings:function(){return qh}});var ge={};n.r(ge),n.d(ge,{metadata:function(){return Kh},name:function(){return Qh},settings:function(){return Jh}});var he={};n.r(he),n.d(he,{metadata:function(){return rv},name:function(){return av},settings:function(){return lv}});var ve={};n.r(ve),n.d(ve,{metadata:function(){return Cv},name:function(){return xv},settings:function(){return Sv}});var be=window.wp.blocks,ye=window.wp.element,fe=window.wp.primitives;var _e=(0,ye.createElement)(fe.SVG,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,ye.createElement)(fe.Path,{d:"M19 6.2h-5.9l-.6-1.1c-.3-.7-1-1.1-1.8-1.1H5c-1.1 0-2 .9-2 2v11.8c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V8.2c0-1.1-.9-2-2-2zm.5 11.6c0 .3-.2.5-.5.5H5c-.3 0-.5-.2-.5-.5V6c0-.3.2-.5.5-.5h5.8c.2 0 .4.1.4.3l1 2H19c.3 0 .5.2.5.5v9.5zM8 12.8h8v-1.5H8v1.5zm0 3h8v-1.5H8v1.5z"})),ke=window.wp.components,we=window.wp.i18n,Ee=window.wp.blockEditor,Ce=window.wp.serverSideRender,xe=n.n(Ce);const Se={apiVersion:2,name:"core/archives",title:"Archives",category:"widgets",description:"Display a monthly archive of your posts.",textdomain:"default",attributes:{displayAsDropdown:{type:"boolean",default:!1},showPostCounts:{type:"boolean",default:!1}},supports:{align:!0,html:!1},editorStyle:"wp-block-archives-editor"},{name:Be}=Se,Te={icon:_e,example:{},edit:function(e){let{attributes:t,setAttributes:n}=e;const{showPostCounts:o,displayAsDropdown:r}=t;return(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)(Ee.InspectorControls,null,(0,ye.createElement)(ke.PanelBody,{title:(0,we.__)("Archives settings")},(0,ye.createElement)(ke.ToggleControl,{label:(0,we.__)("Display as dropdown"),checked:r,onChange:()=>n({displayAsDropdown:!r})}),(0,ye.createElement)(ke.ToggleControl,{label:(0,we.__)("Show post counts"),checked:o,onChange:()=>n({showPostCounts:!o})}))),(0,ye.createElement)("div",(0,Ee.useBlockProps)(),(0,ye.createElement)(ke.Disabled,null,(0,ye.createElement)(xe(),{block:"core/archives",attributes:t}))))}};var Ne=(0,ye.createElement)(fe.SVG,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,ye.createElement)(fe.Path,{d:"M17.7 4.3c-1.2 0-2.8 0-3.8 1-.6.6-.9 1.5-.9 2.6V14c-.6-.6-1.5-1-2.5-1C8.6 13 7 14.6 7 16.5S8.6 20 10.5 20c1.5 0 2.8-1 3.3-2.3.5-.8.7-1.8.7-2.5V7.9c0-.7.2-1.2.5-1.6.6-.6 1.8-.6 2.8-.6h.3V4.3h-.4z"})),ze=[{attributes:{src:{type:"string",source:"attribute",selector:"audio",attribute:"src"},caption:{type:"string",source:"html",selector:"figcaption"},id:{type:"number"},autoplay:{type:"boolean",source:"attribute",selector:"audio",attribute:"autoplay"},loop:{type:"boolean",source:"attribute",selector:"audio",attribute:"loop"},preload:{type:"string",source:"attribute",selector:"audio",attribute:"preload"}},supports:{align:!0},save(e){let{attributes:t}=e;const{autoplay:n,caption:o,loop:r,preload:a,src:l}=t;return(0,ye.createElement)("figure",null,(0,ye.createElement)("audio",{controls:"controls",src:l,autoPlay:n,loop:r,preload:a}),!Ee.RichText.isEmpty(o)&&(0,ye.createElement)(Ee.RichText.Content,{tagName:"figcaption",value:o}))}}],Pe=window.wp.blob,Ie=window.wp.data;const Me=[{ratio:"2.33",className:"wp-embed-aspect-21-9"},{ratio:"2.00",className:"wp-embed-aspect-18-9"},{ratio:"1.78",className:"wp-embed-aspect-16-9"},{ratio:"1.33",className:"wp-embed-aspect-4-3"},{ratio:"1.00",className:"wp-embed-aspect-1-1"},{ratio:"0.56",className:"wp-embed-aspect-9-16"},{ratio:"0.50",className:"wp-embed-aspect-1-2"}],Re="wp-embed";var Le=window.lodash,Ve=n(3827),He=n.n(Ve),Ae=n(9756),Fe=n.n(Ae);const{name:De}={apiVersion:2,name:"core/embed",title:"Embed",category:"embed",description:"Add a block that displays content pulled from other sites, like Twitter or YouTube.",textdomain:"default",attributes:{url:{type:"string"},caption:{type:"string",source:"html",selector:"figcaption"},type:{type:"string"},providerNameSlug:{type:"string"},allowResponsive:{type:"boolean",default:!0},responsive:{type:"boolean",default:!1},previewable:{type:"boolean",default:!0}},supports:{align:!0},editorStyle:"wp-block-embed-editor",style:"wp-block-embed"},Ge=e=>{var t;return null===(t=(0,be.getBlockVariations)(De))||void 0===t?void 0:t.find((t=>{let{patterns:n}=t;return function(e){return(arguments.length>1&&void 0!==arguments[1]?arguments[1]:[]).some((t=>e.match(t)))}(e,n)}))},Ue=e=>e&&e.includes('class="wp-embedded-content"'),Oe=function(e){var t;let n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};const{preview:o,attributes:r={}}=e,{url:a,providerNameSlug:l,type:i,...s}=r;if(!a||!(0,be.getBlockType)(De))return;const c=Ge(a),u="wordpress"===l||i===Re,m=!u&&c&&(c.attributes.providerNameSlug!==l||!l);if(m)return(0,be.createBlock)(De,{url:a,...s,...c.attributes});const d=null===(t=(0,be.getBlockVariations)(De))||void 0===t?void 0:t.find((e=>{let{name:t}=e;return"wordpress"===t}));return d&&o&&Ue(o.html)&&!u?(0,be.createBlock)(De,{url:a,...d.attributes,...n}):void 0},qe=e=>{if(!e)return e;const t=Me.reduce(((e,t)=>{let{className:n}=t;return e[n]=!1,e}),{"wp-has-aspect-ratio":!1});return He()(e,t)};function $e(e,t){let n=!(arguments.length>2&&void 0!==arguments[2])||arguments[2];if(!n)return qe(t);const o=document.implementation.createHTMLDocument("");o.body.innerHTML=e;const r=o.body.querySelector("iframe");if(r&&r.height&&r.width){const e=(r.width/r.height).toFixed(2);for(let n=0;n<Me.length;n++){const o=Me[n];if(e>=o.ratio){return e-o.ratio>.1?qe(t):He()(qe(t),o.className,"wp-has-aspect-ratio")}}}return t}const We=Fe()((function(e,t,n,o){let r=!(arguments.length>4&&void 0!==arguments[4])||arguments[4];if(!e)return{};const a={};let{type:l="rich"}=e;const{html:i,provider_name:s}=e,c=(0,Le.kebabCase)((s||t).toLowerCase());return Ue(i)&&(l=Re),(i||"photo"===l)&&(a.type=l,a.providerNameSlug=c),a.className=$e(i,n,o&&r),a})),je=["audio"];var Ze=(0,ke.withNotices)((function(e){let{attributes:t,noticeOperations:n,setAttributes:o,onReplace:r,isSelected:a,noticeUI:l,insertBlocksAfter:i}=e;const{id:s,autoplay:c,caption:u,loop:m,preload:d,src:p}=t,g=(0,Ee.useBlockProps)(),h=(0,Ie.useSelect)((e=>{const{getSettings:t}=e(Ee.store);return t().mediaUpload}),[]);function v(e){return t=>{o({[e]:t})}}function b(e){if(e!==p){const t=Oe({attributes:{url:e}});if(void 0!==t)return void r(t);o({src:e,id:void 0})}}function y(e){n.removeAllNotices(),n.createErrorNotice(e)}function f(e){e&&e.url?o({src:e.url,id:e.id}):o({src:void 0,id:void 0})}return(0,ye.useEffect)((()=>{if(!s&&(0,Pe.isBlobURL)(p)){const e=(0,Pe.getBlobByURL)(p);e&&h({filesList:[e],onFileChange:e=>{let[{id:t,url:n}]=e;o({id:t,src:n})},onError:e=>{o({src:void 0,id:void 0}),n.createErrorNotice(e)},allowedTypes:je})}}),[]),p?(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)(Ee.BlockControls,{group:"other"},(0,ye.createElement)(Ee.MediaReplaceFlow,{mediaId:s,mediaURL:p,allowedTypes:je,accept:"audio/*",onSelect:f,onSelectURL:b,onError:y})),(0,ye.createElement)(Ee.InspectorControls,null,(0,ye.createElement)(ke.PanelBody,{title:(0,we.__)("Audio settings")},(0,ye.createElement)(ke.ToggleControl,{label:(0,we.__)("Autoplay"),onChange:v("autoplay"),checked:c,help:function(e){return e?(0,we.__)("Autoplay may cause usability issues for some users."):null}}),(0,ye.createElement)(ke.ToggleControl,{label:(0,we.__)("Loop"),onChange:v("loop"),checked:m}),(0,ye.createElement)(ke.SelectControl,{label:(0,we._x)("Preload","noun; Audio block parameter"),value:d||"",onChange:e=>o({preload:e||void 0}),options:[{value:"",label:(0,we.__)("Browser default")},{value:"auto",label:(0,we.__)("Auto")},{value:"metadata",label:(0,we.__)("Metadata")},{value:"none",label:(0,we._x)("None",'"Preload" value')}]}))),(0,ye.createElement)("figure",g,(0,ye.createElement)(ke.Disabled,{isDisabled:!a},(0,ye.createElement)("audio",{controls:"controls",src:p})),(!Ee.RichText.isEmpty(u)||a)&&(0,ye.createElement)(Ee.RichText,{tagName:"figcaption","aria-label":(0,we.__)("Audio caption text"),placeholder:(0,we.__)("Add caption"),value:u,onChange:e=>o({caption:e}),inlineToolbar:!0,__unstableOnSplitAtEnd:()=>i((0,be.createBlock)("core/paragraph"))}))):(0,ye.createElement)("div",g,(0,ye.createElement)(Ee.MediaPlaceholder,{icon:(0,ye.createElement)(Ee.BlockIcon,{icon:Ne}),onSelect:f,onSelectURL:b,accept:"audio/*",allowedTypes:je,value:t,notices:l,onError:y}))}));const Ke={from:[{type:"files",isMatch:e=>1===e.length&&0===e[0].type.indexOf("audio/"),transform(e){const t=e[0];return(0,be.createBlock)("core/audio",{src:(0,Pe.createBlobURL)(t)})}},{type:"shortcode",tag:"audio",attributes:{src:{type:"string",shortcode:e=>{let{named:{src:t,mp3:n,m4a:o,ogg:r,wav:a,wma:l}}=e;return t||n||o||r||a||l}},loop:{type:"string",shortcode:e=>{let{named:{loop:t}}=e;return t}},autoplay:{type:"string",shortcode:e=>{let{named:{autoplay:t}}=e;return t}},preload:{type:"string",shortcode:e=>{let{named:{preload:t}}=e;return t}}}}]};var Qe=Ke;const Je={apiVersion:2,name:"core/audio",title:"Audio",category:"media",description:"Embed a simple audio player.",keywords:["music","sound","podcast","recording"],textdomain:"default",attributes:{src:{type:"string",source:"attribute",selector:"audio",attribute:"src"},caption:{type:"string",source:"html",selector:"figcaption"},id:{type:"number"},autoplay:{type:"boolean",source:"attribute",selector:"audio",attribute:"autoplay"},loop:{type:"boolean",source:"attribute",selector:"audio",attribute:"loop"},preload:{type:"string",source:"attribute",selector:"audio",attribute:"preload"}},supports:{anchor:!0,align:!0},editorStyle:"wp-block-audio-editor",style:"wp-block-audio"},{name:Ye}=Je,Xe={icon:Ne,example:{attributes:{src:"https://upload.wikimedia.org/wikipedia/commons/d/dd/Armstrong_Small_Step.ogg"}},transforms:Qe,deprecated:ze,edit:Ze,save:function(e){let{attributes:t}=e;const{autoplay:n,caption:o,loop:r,preload:a,src:l}=t;return l&&(0,ye.createElement)("figure",Ee.useBlockProps.save(),(0,ye.createElement)("audio",{controls:"controls",src:l,autoPlay:n,loop:r,preload:a}),!Ee.RichText.isEmpty(o)&&(0,ye.createElement)(Ee.RichText.Content,{tagName:"figcaption",value:o}))}};var et=(0,ye.createElement)(fe.SVG,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,ye.createElement)(fe.Path,{d:"M19 6.5H5c-1.1 0-2 .9-2 2v7c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-7c0-1.1-.9-2-2-2zm.5 9c0 .3-.2.5-.5.5H5c-.3 0-.5-.2-.5-.5v-7c0-.3.2-.5.5-.5h14c.3 0 .5.2.5.5v7zM8 12.8h8v-1.5H8v1.5z"})),tt=n(4403),nt=n.n(tt),ot=window.wp.compose;const rt=e=>{if(!(0,Le.isObject)(e)||Array.isArray(e))return e;const t=(0,Le.pickBy)((0,Le.mapValues)(e,rt),Le.identity);return(0,Le.isEmpty)(t)?void 0:t};var at=rt;function lt(e){var t,n;if(null==e||null===(t=e.style)||void 0===t||null===(n=t.typography)||void 0===n||!n.fontFamily)return e;const o=(0,Le.cloneDeep)(e),r=o.style.typography.fontFamily.split("|").pop();return delete o.style.typography.fontFamily,o.style=at(o.style),{...o,fontFamily:r}}const it=e=>{var t,n,o;const{borderRadius:r,...a}=e,l=[r,null===(t=a.style)||void 0===t||null===(n=t.border)||void 0===n?void 0:n.radius].find((e=>"number"==typeof e&&0!==e));return l?{...a,style:{...a.style,border:{...null===(o=a.style)||void 0===o?void 0:o.border,radius:`${l}px`}}}:a},st=e=>{if(!e.customTextColor&&!e.customBackgroundColor&&!e.customGradient)return e;const t={color:{}};return e.customTextColor&&(t.color.text=e.customTextColor),e.customBackgroundColor&&(t.color.background=e.customBackgroundColor),e.customGradient&&(t.color.gradient=e.customGradient),{...(0,Le.omit)(e,["customTextColor","customBackgroundColor","customGradient"]),style:t}},ct=e=>st((0,Le.omit)({...e,customTextColor:e.textColor&&"#"===e.textColor[0]?e.textColor:void 0,customBackgroundColor:e.color&&"#"===e.color[0]?e.color:void 0},["color","textColor"])),ut={url:{type:"string",source:"attribute",selector:"a",attribute:"href"},title:{type:"string",source:"attribute",selector:"a",attribute:"title"},text:{type:"string",source:"html",selector:"a"}},mt={attributes:{url:{type:"string",source:"attribute",selector:"a",attribute:"href"},title:{type:"string",source:"attribute",selector:"a",attribute:"title"},text:{type:"string",source:"html",selector:"a"},linkTarget:{type:"string",source:"attribute",selector:"a",attribute:"target"},rel:{type:"string",source:"attribute",selector:"a",attribute:"rel"},placeholder:{type:"string"},backgroundColor:{type:"string"},textColor:{type:"string"},gradient:{type:"string"},width:{type:"number"}},supports:{anchor:!0,align:!0,alignWide:!1,color:{__experimentalSkipSerialization:!0,gradients:!0},typography:{fontSize:!0,__experimentalFontFamily:!0},reusable:!1,spacing:{__experimentalSkipSerialization:!0,padding:["horizontal","vertical"],__experimentalDefaultControls:{padding:!0}},__experimentalBorder:{radius:!0,__experimentalSkipSerialization:!0},__experimentalSelector:".wp-block-button__link"},save(e){var t,n;let{attributes:o,className:r}=e;const{fontSize:a,linkTarget:l,rel:i,style:s,text:c,title:u,url:m,width:d}=o;if(!c)return null;const p=(0,Ee.__experimentalGetBorderClassesAndStyles)(o),g=(0,Ee.__experimentalGetColorClassesAndStyles)(o),h=(0,Ee.__experimentalGetSpacingClassesAndStyles)(o),v=nt()("wp-block-button__link",g.className,p.className,{"no-border-radius":0===(null==s||null===(t=s.border)||void 0===t?void 0:t.radius)}),b={...p.style,...g.style,...h.style},y=nt()(r,{[`has-custom-width wp-block-button__width-${d}`]:d,"has-custom-font-size":a||(null==s||null===(n=s.typography)||void 0===n?void 0:n.fontSize)});return(0,ye.createElement)("div",Ee.useBlockProps.save({className:y}),(0,ye.createElement)(Ee.RichText.Content,{tagName:"a",className:v,href:m,title:u,style:b,value:c,target:l,rel:i}))},migrate:lt,isEligible(e){var t;let{style:n}=e;return null==n||null===(t=n.typography)||void 0===t?void 0:t.fontFamily}},dt=[mt,{supports:{anchor:!0,align:!0,alignWide:!1,color:{__experimentalSkipSerialization:!0,gradients:!0},typography:{fontSize:!0,__experimentalFontFamily:!0},reusable:!1,__experimentalSelector:".wp-block-button__link"},attributes:{...ut,linkTarget:{type:"string",source:"attribute",selector:"a",attribute:"target"},rel:{type:"string",source:"attribute",selector:"a",attribute:"rel"},placeholder:{type:"string"},backgroundColor:{type:"string"},textColor:{type:"string"},gradient:{type:"string"},width:{type:"number"}},isEligible(e){var t;let{style:n}=e;return"number"==typeof(null==n||null===(t=n.border)||void 0===t?void 0:t.radius)},save(e){var t,n,o;let{attributes:r,className:a}=e;const{fontSize:l,linkTarget:i,rel:s,style:c,text:u,title:m,url:d,width:p}=r;if(!u)return null;const g=null==c||null===(t=c.border)||void 0===t?void 0:t.radius,h=(0,Ee.__experimentalGetColorClassesAndStyles)(r),v=nt()("wp-block-button__link",h.className,{"no-border-radius":0===(null==c||null===(n=c.border)||void 0===n?void 0:n.radius)}),b={borderRadius:g||void 0,...h.style},y=nt()(a,{[`has-custom-width wp-block-button__width-${p}`]:p,"has-custom-font-size":l||(null==c||null===(o=c.typography)||void 0===o?void 0:o.fontSize)});return(0,ye.createElement)("div",Ee.useBlockProps.save({className:y}),(0,ye.createElement)(Ee.RichText.Content,{tagName:"a",className:v,href:d,title:m,style:b,value:u,target:i,rel:s}))},migrate:(0,ot.compose)(lt,it)},{supports:{anchor:!0,align:!0,alignWide:!1,color:{__experimentalSkipSerialization:!0},reusable:!1,__experimentalSelector:".wp-block-button__link"},attributes:{...ut,linkTarget:{type:"string",source:"attribute",selector:"a",attribute:"target"},rel:{type:"string",source:"attribute",selector:"a",attribute:"rel"},placeholder:{type:"string"},borderRadius:{type:"number"},backgroundColor:{type:"string"},textColor:{type:"string"},gradient:{type:"string"},style:{type:"object"},width:{type:"number"}},save(e){let{attributes:t,className:n}=e;const{borderRadius:o,linkTarget:r,rel:a,text:l,title:i,url:s,width:c}=t,u=(0,Ee.__experimentalGetColorClassesAndStyles)(t),m=nt()("wp-block-button__link",u.className,{"no-border-radius":0===o}),d={borderRadius:o?o+"px":void 0,...u.style},p=nt()(n,{[`has-custom-width wp-block-button__width-${c}`]:c});return(0,ye.createElement)("div",Ee.useBlockProps.save({className:p}),(0,ye.createElement)(Ee.RichText.Content,{tagName:"a",className:m,href:s,title:i,style:d,value:l,target:r,rel:a}))},migrate:(0,ot.compose)(lt,it)},{supports:{anchor:!0,align:!0,alignWide:!1,color:{__experimentalSkipSerialization:!0},reusable:!1,__experimentalSelector:".wp-block-button__link"},attributes:{...ut,linkTarget:{type:"string",source:"attribute",selector:"a",attribute:"target"},rel:{type:"string",source:"attribute",selector:"a",attribute:"rel"},placeholder:{type:"string"},borderRadius:{type:"number"},backgroundColor:{type:"string"},textColor:{type:"string"},gradient:{type:"string"},style:{type:"object"},width:{type:"number"}},save(e){let{attributes:t,className:n}=e;const{borderRadius:o,linkTarget:r,rel:a,text:l,title:i,url:s,width:c}=t,u=(0,Ee.__experimentalGetColorClassesAndStyles)(t),m=nt()("wp-block-button__link",u.className,{"no-border-radius":0===o}),d={borderRadius:o?o+"px":void 0,...u.style},p=nt()(n,{[`has-custom-width wp-block-button__width-${c}`]:c});return(0,ye.createElement)("div",Ee.useBlockProps.save({className:p}),(0,ye.createElement)(Ee.RichText.Content,{tagName:"a",className:m,href:s,title:i,style:d,value:l,target:r,rel:a}))},migrate:(0,ot.compose)(lt,it)},{supports:{align:!0,alignWide:!1,color:{gradients:!0}},attributes:{...ut,linkTarget:{type:"string",source:"attribute",selector:"a",attribute:"target"},rel:{type:"string",source:"attribute",selector:"a",attribute:"rel"},placeholder:{type:"string"},borderRadius:{type:"number"},backgroundColor:{type:"string"},textColor:{type:"string"},gradient:{type:"string"},style:{type:"object"}},save(e){let{attributes:t}=e;const{borderRadius:n,linkTarget:o,rel:r,text:a,title:l,url:i}=t,s=nt()("wp-block-button__link",{"no-border-radius":0===n}),c={borderRadius:n?n+"px":void 0};return(0,ye.createElement)(Ee.RichText.Content,{tagName:"a",className:s,href:i,title:l,style:c,value:a,target:o,rel:r})},migrate:it},{supports:{align:!0,alignWide:!1},attributes:{...ut,linkTarget:{type:"string",source:"attribute",selector:"a",attribute:"target"},rel:{type:"string",source:"attribute",selector:"a",attribute:"rel"},placeholder:{type:"string"},borderRadius:{type:"number"},backgroundColor:{type:"string"},textColor:{type:"string"},customBackgroundColor:{type:"string"},customTextColor:{type:"string"},customGradient:{type:"string"},gradient:{type:"string"}},isEligible:e=>!!e.customTextColor||!!e.customBackgroundColor||!!e.customGradient,migrate:(0,ot.compose)(it,st),save(e){let{attributes:t}=e;const{backgroundColor:n,borderRadius:o,customBackgroundColor:r,customTextColor:a,customGradient:l,linkTarget:i,gradient:s,rel:c,text:u,textColor:m,title:d,url:p}=t,g=(0,Ee.getColorClassName)("color",m),h=!l&&(0,Ee.getColorClassName)("background-color",n),v=(0,Ee.__experimentalGetGradientClass)(s),b=nt()("wp-block-button__link",{"has-text-color":m||a,[g]:g,"has-background":n||r||l||s,[h]:h,"no-border-radius":0===o,[v]:v}),y={background:l||void 0,backgroundColor:h||l||s?void 0:r,color:g?void 0:a,borderRadius:o?o+"px":void 0};return(0,ye.createElement)("div",null,(0,ye.createElement)(Ee.RichText.Content,{tagName:"a",className:b,href:p,title:d,style:y,value:u,target:i,rel:c}))}},{attributes:{...ut,align:{type:"string",default:"none"},backgroundColor:{type:"string"},textColor:{type:"string"},customBackgroundColor:{type:"string"},customTextColor:{type:"string"},linkTarget:{type:"string",source:"attribute",selector:"a",attribute:"target"},rel:{type:"string",source:"attribute",selector:"a",attribute:"rel"},placeholder:{type:"string"}},isEligible:e=>e.className&&e.className.includes("is-style-squared"),migrate(e){let t=e.className;return t&&(t=t.replace(/is-style-squared[\s]?/,"").trim()),it(st({...e,className:t||void 0,borderRadius:0}))},save(e){let{attributes:t}=e;const{backgroundColor:n,customBackgroundColor:o,customTextColor:r,linkTarget:a,rel:l,text:i,textColor:s,title:c,url:u}=t,m=(0,Ee.getColorClassName)("color",s),d=(0,Ee.getColorClassName)("background-color",n),p=nt()("wp-block-button__link",{"has-text-color":s||r,[m]:m,"has-background":n||o,[d]:d}),g={backgroundColor:d?void 0:o,color:m?void 0:r};return(0,ye.createElement)("div",null,(0,ye.createElement)(Ee.RichText.Content,{tagName:"a",className:p,href:u,title:c,style:g,value:i,target:a,rel:l}))}},{attributes:{...ut,align:{type:"string",default:"none"},backgroundColor:{type:"string"},textColor:{type:"string"},customBackgroundColor:{type:"string"},customTextColor:{type:"string"}},migrate:ct,save(e){let{attributes:t}=e;const{url:n,text:o,title:r,backgroundColor:a,textColor:l,customBackgroundColor:i,customTextColor:s}=t,c=(0,Ee.getColorClassName)("color",l),u=(0,Ee.getColorClassName)("background-color",a),m=nt()("wp-block-button__link",{"has-text-color":l||s,[c]:c,"has-background":a||i,[u]:u}),d={backgroundColor:u?void 0:i,color:c?void 0:s};return(0,ye.createElement)("div",null,(0,ye.createElement)(Ee.RichText.Content,{tagName:"a",className:m,href:n,title:r,style:d,value:o}))}},{attributes:{...ut,color:{type:"string"},textColor:{type:"string"},align:{type:"string",default:"none"}},save(e){let{attributes:t}=e;const{url:n,text:o,title:r,align:a,color:l,textColor:i}=t,s={backgroundColor:l,color:i};return(0,ye.createElement)("div",{className:`align${a}`},(0,ye.createElement)(Ee.RichText.Content,{tagName:"a",className:"wp-block-button__link",href:n,title:r,style:s,value:o}))},migrate:ct},{attributes:{...ut,color:{type:"string"},textColor:{type:"string"},align:{type:"string",default:"none"}},save(e){let{attributes:t}=e;const{url:n,text:o,title:r,align:a,color:l,textColor:i}=t;return(0,ye.createElement)("div",{className:`align${a}`,style:{backgroundColor:l}},(0,ye.createElement)(Ee.RichText.Content,{tagName:"a",href:n,title:r,style:{color:i},value:o}))},migrate:ct}];var pt=dt;function gt(){return gt=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var o in n)Object.prototype.hasOwnProperty.call(n,o)&&(e[o]=n[o])}return e},gt.apply(this,arguments)}var ht=window.wp.keycodes;var vt=(0,ye.createElement)(fe.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,ye.createElement)(fe.Path,{d:"M15.6 7.2H14v1.5h1.6c2 0 3.7 1.7 3.7 3.7s-1.7 3.7-3.7 3.7H14v1.5h1.6c2.8 0 5.2-2.3 5.2-5.2 0-2.9-2.3-5.2-5.2-5.2zM4.7 12.4c0-2 1.7-3.7 3.7-3.7H10V7.2H8.4c-2.9 0-5.2 2.3-5.2 5.2 0 2.9 2.3 5.2 5.2 5.2H10v-1.5H8.4c-2 0-3.7-1.7-3.7-3.7zm4.6.9h5.3v-1.5H9.3v1.5z"}));var bt=(0,ye.createElement)(fe.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,ye.createElement)(fe.Path,{d:"M15.6 7.3h-.7l1.6-3.5-.9-.4-3.9 8.5H9v1.5h2l-1.3 2.8H8.4c-2 0-3.7-1.7-3.7-3.7s1.7-3.7 3.7-3.7H10V7.3H8.4c-2.9 0-5.2 2.3-5.2 5.2 0 2.9 2.3 5.2 5.2 5.2H9l-1.4 3.2.9.4 5.7-12.5h1.4c2 0 3.7 1.7 3.7 3.7s-1.7 3.7-3.7 3.7H14v1.5h1.6c2.9 0 5.2-2.3 5.2-5.2 0-2.9-2.4-5.2-5.2-5.2z"}));const yt="noreferrer noopener";function ft(e){let{selectedWidth:t,setAttributes:n}=e;return(0,ye.createElement)(ke.PanelBody,{title:(0,we.__)("Width settings")},(0,ye.createElement)(ke.ButtonGroup,{"aria-label":(0,we.__)("Button width")},[25,50,75,100].map((e=>(0,ye.createElement)(ke.Button,{key:e,isSmall:!0,variant:e===t?"primary":void 0,onClick:()=>{var o;n({width:t===(o=e)?void 0:o})}},e,"%")))))}var _t=function(e){var t;const{attributes:n,setAttributes:o,className:r,isSelected:a,onReplace:l,mergeBlocks:i}=e,{linkTarget:s,placeholder:c,rel:u,style:m,text:d,url:p,width:g}=n,h=(0,ye.useCallback)((e=>{o({rel:e})}),[o]),v=(0,Ee.__experimentalUseBorderProps)(n),b=(0,Ee.__experimentalUseColorProps)(n),y=(0,Ee.__experimentalGetSpacingClassesAndStyles)(n),f=(0,ye.useRef)(),_=(0,ye.useRef)(),k=(0,Ee.useBlockProps)({ref:f,onKeyDown:function(e){if(ht.isKeyboardEvent.primary(e,"k"))S(e);else if(ht.isKeyboardEvent.primaryShift(e,"k")){var t;B(),null===(t=_.current)||void 0===t||t.focus()}}}),[w,E]=(0,ye.useState)(!1),C=!!p,x="_blank"===s;function S(e){e.preventDefault(),E(!0)}function B(){o({url:void 0,linkTarget:void 0,rel:void 0}),E(!1)}return(0,ye.useEffect)((()=>{a||E(!1)}),[a]),(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)("div",gt({},k,{className:nt()(k.className,{[`has-custom-width wp-block-button__width-${g}`]:g,"has-custom-font-size":k.style.fontSize})}),(0,ye.createElement)(Ee.RichText,{ref:_,"aria-label":(0,we.__)("Button text"),placeholder:c||(0,we.__)("Add text…"),value:d,onChange:e=>{o({text:e.replace(/<\/?a[^>]*>/g,"")})},withoutInteractiveFormatting:!0,className:nt()(r,"wp-block-button__link",b.className,v.className,{"no-border-radius":0===(null==m||null===(t=m.border)||void 0===t?void 0:t.radius)}),style:{...v.style,...b.style,...y.style},onSplit:e=>(0,be.createBlock)("core/button",{...n,text:e}),onReplace:l,onMerge:i,identifier:"text"})),(0,ye.createElement)(Ee.BlockControls,{group:"block"},!C&&(0,ye.createElement)(ke.ToolbarButton,{name:"link",icon:vt,title:(0,we.__)("Link"),shortcut:ht.displayShortcut.primary("k"),onClick:S}),C&&(0,ye.createElement)(ke.ToolbarButton,{name:"link",icon:bt,title:(0,we.__)("Unlink"),shortcut:ht.displayShortcut.primaryShift("k"),onClick:B,isActive:!0})),a&&(w||C)&&(0,ye.createElement)(ke.Popover,{position:"bottom center",onClose:()=>{var e;E(!1),null===(e=_.current)||void 0===e||e.focus()},anchorRef:null==f?void 0:f.current,focusOnMount:!!w&&"firstElement"},(0,ye.createElement)(Ee.__experimentalLinkControl,{className:"wp-block-navigation-link__inline-link-input",value:{url:p,opensInNewTab:x},onChange:e=>{let{url:t="",opensInNewTab:n}=e;o({url:t}),x!==n&&function(e){const t=e?"_blank":void 0;let n=u;t&&!u?n=yt:t||u!==yt||(n=void 0),o({linkTarget:t,rel:n})}(n)},onRemove:()=>{var e;B(),null===(e=_.current)||void 0===e||e.focus()},forceIsEditingLink:w})),(0,ye.createElement)(Ee.InspectorControls,null,(0,ye.createElement)(ft,{selectedWidth:g,setAttributes:o})),(0,ye.createElement)(Ee.InspectorControls,{__experimentalGroup:"advanced"},(0,ye.createElement)(ke.TextControl,{label:(0,we.__)("Link rel"),value:u||"",onChange:h})))};const kt={apiVersion:2,name:"core/button",title:"Button",category:"design",parent:["core/buttons"],description:"Prompt visitors to take action with a button-style link.",keywords:["link"],textdomain:"default",attributes:{url:{type:"string",source:"attribute",selector:"a",attribute:"href"},title:{type:"string",source:"attribute",selector:"a",attribute:"title"},text:{type:"string",source:"html",selector:"a"},linkTarget:{type:"string",source:"attribute",selector:"a",attribute:"target"},rel:{type:"string",source:"attribute",selector:"a",attribute:"rel"},placeholder:{type:"string"},backgroundColor:{type:"string"},textColor:{type:"string"},gradient:{type:"string"},width:{type:"number"}},supports:{anchor:!0,align:!0,alignWide:!1,color:{__experimentalSkipSerialization:!0,gradients:!0},typography:{fontSize:!0,__experimentalFontFamily:!0,__experimentalDefaultControls:{fontSize:!0}},reusable:!1,spacing:{__experimentalSkipSerialization:!0,padding:["horizontal","vertical"],__experimentalDefaultControls:{padding:!0}},__experimentalBorder:{radius:!0,__experimentalSkipSerialization:!0},__experimentalSelector:".wp-block-button__link"},styles:[{name:"fill",label:"Fill",isDefault:!0},{name:"outline",label:"Outline"}],editorStyle:"wp-block-button-editor",style:"wp-block-button"},{name:wt}=kt,Et={icon:et,example:{attributes:{className:"is-style-fill",text:(0,we.__)("Call to Action")}},edit:_t,save:function(e){var t,n;let{attributes:o,className:r}=e;const{fontSize:a,linkTarget:l,rel:i,style:s,text:c,title:u,url:m,width:d}=o;if(!c)return null;const p=(0,Ee.__experimentalGetBorderClassesAndStyles)(o),g=(0,Ee.__experimentalGetColorClassesAndStyles)(o),h=(0,Ee.__experimentalGetSpacingClassesAndStyles)(o),v=nt()("wp-block-button__link",g.className,p.className,{"no-border-radius":0===(null==s||null===(t=s.border)||void 0===t?void 0:t.radius)}),b={...p.style,...g.style,...h.style},y=nt()(r,{[`has-custom-width wp-block-button__width-${d}`]:d,"has-custom-font-size":a||(null==s||null===(n=s.typography)||void 0===n?void 0:n.fontSize)});return(0,ye.createElement)("div",Ee.useBlockProps.save({className:y}),(0,ye.createElement)(Ee.RichText.Content,{tagName:"a",className:v,href:m,title:u,style:b,value:c,target:l,rel:i}))},deprecated:pt,merge:(e,t)=>{let{text:n=""}=t;return{...e,text:(e.text||"")+n}}};var Ct=(0,ye.createElement)(fe.SVG,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,ye.createElement)(fe.Path,{d:"M17 3H7c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm.5 6c0 .3-.2.5-.5.5H7c-.3 0-.5-.2-.5-.5V5c0-.3.2-.5.5-.5h10c.3 0 .5.2.5.5v4zm-8-1.2h5V6.2h-5v1.6zM17 13H7c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2v-4c0-1.1-.9-2-2-2zm.5 6c0 .3-.2.5-.5.5H7c-.3 0-.5-.2-.5-.5v-4c0-.3.2-.5.5-.5h10c.3 0 .5.2.5.5v4zm-8-1.2h5v-1.5h-5v1.5z"}));const xt=e=>{if(e.layout)return e;const{contentJustification:t,orientation:n,...o}=e;return(t||n)&&Object.assign(o,{layout:{type:"flex",...t&&{justifyContent:t},...n&&{orientation:n}}}),o},St=[{attributes:{contentJustification:{type:"string"},orientation:{type:"string",default:"horizontal"}},supports:{anchor:!0,align:["wide","full"],__experimentalExposeControlsToChildren:!0,spacing:{blockGap:!0,margin:["top","bottom"],__experimentalDefaultControls:{blockGap:!0}}},isEligible:e=>{let{contentJustification:t,orientation:n}=e;return!!t||!!n},migrate:xt,save(e){let{attributes:{contentJustification:t,orientation:n}}=e;return(0,ye.createElement)("div",Ee.useBlockProps.save({className:nt()({[`is-content-justification-${t}`]:t,"is-vertical":"vertical"===n})}),(0,ye.createElement)(Ee.InnerBlocks.Content,null))}},{supports:{align:["center","left","right"],anchor:!0},save:()=>(0,ye.createElement)("div",null,(0,ye.createElement)(Ee.InnerBlocks.Content,null)),isEligible(e){let{align:t}=e;return t&&["center","left","right"].includes(t)},migrate:e=>xt({...e,align:void 0,contentJustification:e.align})}];var Bt=St,Tt=window.wp.richText;const{name:Nt}={apiVersion:2,name:"core/buttons",title:"Buttons",category:"design",description:"Prompt visitors to take action with a group of button-style links.",keywords:["link"],textdomain:"default",supports:{anchor:!0,align:["wide","full"],__experimentalExposeControlsToChildren:!0,spacing:{blockGap:!0,margin:["top","bottom"],__experimentalDefaultControls:{blockGap:!0}},__experimentalLayout:{allowSwitching:!1,allowInheriting:!1,default:{type:"flex"}}},editorStyle:"wp-block-buttons-editor",style:"wp-block-buttons"},zt={from:[{type:"block",isMultiBlock:!0,blocks:["core/button"],transform:e=>(0,be.createBlock)(Nt,{},e.map((e=>(0,be.createBlock)("core/button",e))))},{type:"block",isMultiBlock:!0,blocks:["core/paragraph"],transform:e=>(0,be.createBlock)(Nt,{},e.map((e=>{const t=(0,Tt.__unstableCreateElement)(document,e.content),n=t.innerText||"",o=t.querySelector("a"),r=null==o?void 0:o.getAttribute("href");return(0,be.createBlock)("core/button",{text:n,url:r})}))),isMatch:e=>e.every((e=>{const t=(0,Tt.__unstableCreateElement)(document,e.content),n=t.innerText||"",o=t.querySelectorAll("a");return n.length<=30&&o.length<=1}))}]};var Pt=zt;const It=[wt];var Mt=function(e){let{attributes:{layout:t={}}}=e;const n=(0,Ee.useBlockProps)(),o=(0,Ie.useSelect)((e=>{var t;const n=e(Ee.store).getSettings().__experimentalPreferredStyleVariations;return null==n||null===(t=n.value)||void 0===t?void 0:t[wt]}),[]),r=(0,Ee.useInnerBlocksProps)(n,{allowedBlocks:It,template:[[wt,{className:o&&`is-style-${o}`}]],__experimentalLayout:t,templateInsertUpdatesSelection:!0});return(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)("div",r))};const Rt={apiVersion:2,name:"core/buttons",title:"Buttons",category:"design",description:"Prompt visitors to take action with a group of button-style links.",keywords:["link"],textdomain:"default",supports:{anchor:!0,align:["wide","full"],__experimentalExposeControlsToChildren:!0,spacing:{blockGap:!0,margin:["top","bottom"],__experimentalDefaultControls:{blockGap:!0}},__experimentalLayout:{allowSwitching:!1,allowInheriting:!1,default:{type:"flex"}}},editorStyle:"wp-block-buttons-editor",style:"wp-block-buttons"},{name:Lt}=Rt,Vt={icon:Ct,example:{innerBlocks:[{name:"core/button",attributes:{text:(0,we.__)("Find out more")}},{name:"core/button",attributes:{text:(0,we.__)("Contact us")}}]},deprecated:Bt,transforms:Pt,edit:Mt,save:function(){const e=Ee.useInnerBlocksProps.save(Ee.useBlockProps.save());return(0,ye.createElement)("div",e)}};var Ht=(0,ye.createElement)(fe.SVG,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,ye.createElement)(fe.Path,{d:"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm.5 16c0 .3-.2.5-.5.5H5c-.3 0-.5-.2-.5-.5V7h15v12zM9 10H7v2h2v-2zm0 4H7v2h2v-2zm4-4h-2v2h2v-2zm4 0h-2v2h2v-2zm-4 4h-2v2h2v-2zm4 0h-2v2h2v-2z"})),At=window.moment,Ft=n.n(At),Dt=window.wp.coreData;const Gt=Fe()((e=>{if(!e)return{};const t=Ft()(e);return{year:t.year(),month:t.month()+1}}));const Ut={apiVersion:2,name:"core/calendar",title:"Calendar",category:"widgets",description:"A calendar of your sites posts.",keywords:["posts","archive"],textdomain:"default",attributes:{month:{type:"integer"},year:{type:"integer"}},supports:{align:!0},style:"wp-block-calendar"},{name:Ot}=Ut,qt={icon:Ht,example:{},edit:function(e){let{attributes:t}=e;const n=(0,Ee.useBlockProps)(),{date:o,hasPosts:r,hasPostsResolved:a}=(0,Ie.useSelect)((e=>{const{getEntityRecords:t,hasFinishedResolution:n}=e(Dt.store),o={status:"publish",per_page:1},r=t("postType","post",o),a=n("getEntityRecords",["postType","post",o]);let l;const i=e("core/editor");if(i){"post"===i.getEditedPostAttribute("type")&&(l=i.getEditedPostAttribute("date"))}return{date:l,hasPostsResolved:a,hasPosts:a&&1===(null==r?void 0:r.length)}}),[]);return r?(0,ye.createElement)("div",n,(0,ye.createElement)(ke.Disabled,null,(0,ye.createElement)(xe(),{block:"core/calendar",attributes:{...t,...Gt(o)}}))):(0,ye.createElement)("div",n,(0,ye.createElement)(ke.Placeholder,{icon:Ht,label:(0,we.__)("Calendar")},a?(0,we.__)("No published posts found."):(0,ye.createElement)(ke.Spinner,null)))}};var $t=(0,ye.createElement)(fe.SVG,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,ye.createElement)(fe.Path,{d:"M6 5.5h3a.5.5 0 01.5.5v3a.5.5 0 01-.5.5H6a.5.5 0 01-.5-.5V6a.5.5 0 01.5-.5zM4 6a2 2 0 012-2h3a2 2 0 012 2v3a2 2 0 01-2 2H6a2 2 0 01-2-2V6zm11-.5h3a.5.5 0 01.5.5v3a.5.5 0 01-.5.5h-3a.5.5 0 01-.5-.5V6a.5.5 0 01.5-.5zM13 6a2 2 0 012-2h3a2 2 0 012 2v3a2 2 0 01-2 2h-3a2 2 0 01-2-2V6zm5 8.5h-3a.5.5 0 00-.5.5v3a.5.5 0 00.5.5h3a.5.5 0 00.5-.5v-3a.5.5 0 00-.5-.5zM15 13a2 2 0 00-2 2v3a2 2 0 002 2h3a2 2 0 002-2v-3a2 2 0 00-2-2h-3zm-9 1.5h3a.5.5 0 01.5.5v3a.5.5 0 01-.5.5H6a.5.5 0 01-.5-.5v-3a.5.5 0 01.5-.5zM4 15a2 2 0 012-2h3a2 2 0 012 2v3a2 2 0 01-2 2H6a2 2 0 01-2-2v-3z",fillRule:"evenodd",clipRule:"evenodd"}));var Wt=(0,ye.createElement)(fe.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"-2 -2 24 24"},(0,ye.createElement)(fe.Path,{d:"M10.44 3.02l1.82-1.82 6.36 6.35-1.83 1.82c-1.05-.68-2.48-.57-3.41.36l-.75.75c-.92.93-1.04 2.35-.35 3.41l-1.83 1.82-2.41-2.41-2.8 2.79c-.42.42-3.38 2.71-3.8 2.29s1.86-3.39 2.28-3.81l2.79-2.79L4.1 9.36l1.83-1.82c1.05.69 2.48.57 3.4-.36l.75-.75c.93-.92 1.05-2.35.36-3.41z"}));const jt={apiVersion:2,name:"core/categories",title:"Categories",category:"widgets",description:"Display a list of all categories.",textdomain:"default",attributes:{displayAsDropdown:{type:"boolean",default:!1},showHierarchy:{type:"boolean",default:!1},showPostCounts:{type:"boolean",default:!1},showOnlyTopLevel:{type:"boolean",default:!1}},supports:{align:!0,html:!1},editorStyle:"wp-block-categories-editor",style:"wp-block-categories"},{name:Zt}=jt,Kt={icon:$t,example:{},edit:function e(t){let{attributes:{displayAsDropdown:n,showHierarchy:o,showPostCounts:r,showOnlyTopLevel:a},setAttributes:l}=t;const i=(0,ot.useInstanceId)(e,"blocks-category-select"),{categories:s,isRequesting:c}=(0,Ie.useSelect)((e=>{const{getEntityRecords:t,isResolving:n}=e(Dt.store),o={per_page:-1,hide_empty:!0,context:"view"};return a&&(o.parent=0),{categories:t("taxonomy","category",o),isRequesting:n("getEntityRecords",["taxonomy","category",o])}}),[a]),u=e=>null!=s&&s.length?null===e?s:s.filter((t=>{let{parent:n}=t;return n===e})):[],m=e=>`wp-block-categories__list wp-block-categories__list-level-${e}`,d=e=>t=>l({[e]:t}),p=e=>e?(0,Le.unescape)(e).trim():(0,we.__)("(Untitled)"),g=(e,t)=>{const n=u(e.id),{id:a,link:l,count:i,name:s}=e;return(0,ye.createElement)("li",{key:a},(0,ye.createElement)("a",{href:l,target:"_blank",rel:"noreferrer noopener"},p(s)),r&&(0,ye.createElement)("span",{className:"wp-block-categories__post-count"},` (${i})`),o&&!!n.length&&(0,ye.createElement)("ul",{className:m(t+1)},n.map((e=>g(e,t+1)))))},h=(e,t)=>{const{id:n,count:a,name:l}=e,i=u(n);return[(0,ye.createElement)("option",{key:n},(0,Le.times)(3*t,(()=>" ")),p(l),r&&` (${a})`),o&&!!i.length&&i.map((e=>h(e,t+1)))]};return(0,ye.createElement)("div",(0,Ee.useBlockProps)(),(0,ye.createElement)(Ee.InspectorControls,null,(0,ye.createElement)(ke.PanelBody,{title:(0,we.__)("Categories settings")},(0,ye.createElement)(ke.ToggleControl,{label:(0,we.__)("Display as dropdown"),checked:n,onChange:d("displayAsDropdown")}),(0,ye.createElement)(ke.ToggleControl,{label:(0,we.__)("Show post counts"),checked:r,onChange:d("showPostCounts")}),(0,ye.createElement)(ke.ToggleControl,{label:(0,we.__)("Show only top level categories"),checked:a,onChange:d("showOnlyTopLevel")}),!a&&(0,ye.createElement)(ke.ToggleControl,{label:(0,we.__)("Show hierarchy"),checked:o,onChange:d("showHierarchy")}))),c&&(0,ye.createElement)(ke.Placeholder,{icon:Wt,label:(0,we.__)("Categories")},(0,ye.createElement)(ke.Spinner,null)),!c&&0===(null==s?void 0:s.length)&&(0,ye.createElement)("p",null,(0,we.__)("Your site does not have any posts, so there is nothing to display here at the moment.")),!c&&(null==s?void 0:s.length)>0&&(n?(()=>{const e=u(o?0:null);return(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)(ke.VisuallyHidden,{as:"label",htmlFor:i},(0,we.__)("Categories")),(0,ye.createElement)("select",{id:i,className:"wp-block-categories__dropdown"},e.map((e=>h(e,0)))))})():(()=>{const e=u(o?0:null);return(0,ye.createElement)("ul",{className:m(0)},e.map((e=>g(e,0))))})()))}};var Qt=(0,ye.createElement)(fe.SVG,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,ye.createElement)(fe.Path,{d:"M20 6H4c-1.1 0-2 .9-2 2v9c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm.5 11c0 .3-.2.5-.5.5H4c-.3 0-.5-.2-.5-.5V8c0-.3.2-.5.5-.5h16c.3 0 .5.2.5.5v9zM10 10H8v2h2v-2zm-5 2h2v-2H5v2zm8-2h-2v2h2v-2zm-5 6h8v-2H8v2zm6-4h2v-2h-2v2zm3 0h2v-2h-2v2zm0 4h2v-2h-2v2zM5 16h2v-2H5v2z"}));var Jt=e=>{let{clientId:t}=e;const{replaceBlocks:n}=(0,Ie.useDispatch)(Ee.store),o=(0,Ie.useSelect)((e=>e(Ee.store).getBlock(t)),[t]);return(0,ye.createElement)(ke.ToolbarButton,{onClick:()=>n(o.clientId,(0,be.rawHandler)({HTML:(0,be.serialize)(o)}))},(0,we.__)("Convert to blocks"))};const{wp:Yt}=window;const Xt={apiVersion:2,name:"core/freeform",title:"Classic",category:"text",description:"Use the classic WordPress editor.",textdomain:"default",attributes:{content:{type:"string",source:"html"}},supports:{className:!1,customClassName:!1,reusable:!1},editorStyle:"wp-block-freeform-editor"},{name:en}=Xt,tn={icon:Qt,edit:function(e){let{clientId:t,attributes:{content:n},setAttributes:o,onReplace:r}=e;const{getMultiSelectedBlockClientIds:a}=(0,Ie.useSelect)(Ee.store),l=(0,ye.useRef)(!1);return(0,ye.useEffect)((()=>{if(!l.current)return;const e=window.tinymce.get(`editor-${t}`);(null==e?void 0:e.getContent())!==n&&e.setContent(n||"")}),[n]),(0,ye.useEffect)((()=>{const{baseURL:e,suffix:i}=window.wpEditorL10n.tinymce;function s(e){let t;n&&e.on("loadContent",(()=>e.setContent(n))),e.on("blur",(()=>{var n;t=e.selection.getBookmark(2,!0);const r=document.querySelector(".interface-interface-skeleton__content"),l=r.scrollTop;return null!==(n=a())&&void 0!==n&&n.length||o({content:e.getContent()}),e.once("focus",(()=>{t&&(e.selection.moveToBookmark(t),r.scrollTop!==l&&(r.scrollTop=l))})),!1})),e.on("mousedown touchstart",(()=>{t=null}));const l=(0,Le.debounce)((()=>{const t=e.getContent();t!==e._lastChange&&(e._lastChange=t,o({content:t}))}),250);e.on("Paste Change input Undo Redo",l),e.on("remove",l.cancel),e.on("keydown",(t=>{ht.isKeyboardEvent.primary(t,"z")&&t.stopPropagation(),t.keyCode!==ht.BACKSPACE&&t.keyCode!==ht.DELETE||!function(e){const t=e.getBody();return!(t.childNodes.length>1)&&(0===t.childNodes.length||!(t.childNodes[0].childNodes.length>1)&&/^\n?$/.test(t.innerText||t.textContent))}(e)||(r([]),t.preventDefault(),t.stopImmediatePropagation());const{altKey:n}=t;n&&t.keyCode===ht.F10&&t.stopPropagation()})),e.on("init",(()=>{const t=e.getBody();t.ownerDocument.activeElement===t&&(t.blur(),e.focus())}))}function c(){const{settings:e}=window.wpEditorL10n.tinymce;Yt.oldEditor.initialize(`editor-${t}`,{tinymce:{...e,inline:!0,content_css:!1,fixed_toolbar_container:`#toolbar-${t}`,setup:s}})}function u(){"complete"===document.readyState&&c()}return l.current=!0,window.tinymce.EditorManager.overrideDefaults({base_url:e,suffix:i}),"complete"===document.readyState?c():document.addEventListener("readystatechange",u),()=>{document.removeEventListener("readystatechange",u),Yt.oldEditor.remove(`editor-${t}`)}}),[]),(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)(Ee.BlockControls,null,(0,ye.createElement)(ke.ToolbarGroup,null,(0,ye.createElement)(Jt,{clientId:t}))),(0,ye.createElement)("div",(0,Ee.useBlockProps)(),(0,ye.createElement)("div",{key:"toolbar",id:`toolbar-${t}`,className:"block-library-classic__toolbar",onClick:function(){const e=window.tinymce.get(`editor-${t}`);e&&e.focus()},"data-placeholder":(0,we.__)("Classic"),onKeyDown:function(e){e.stopPropagation(),e.nativeEvent.stopImmediatePropagation()}}),(0,ye.createElement)("div",{key:"editor",id:`editor-${t}`,className:"wp-block-freeform block-library-rich-text__tinymce"})))},save:function(e){let{attributes:t}=e;const{content:n}=t;return(0,ye.createElement)(ye.RawHTML,null,n)}};var nn=(0,ye.createElement)(fe.SVG,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,ye.createElement)(fe.Path,{d:"M20.8 10.7l-4.3-4.3-1.1 1.1 4.3 4.3c.1.1.1.3 0 .4l-4.3 4.3 1.1 1.1 4.3-4.3c.7-.8.7-1.9 0-2.6zM4.2 11.8l4.3-4.3-1-1-4.3 4.3c-.7.7-.7 1.8 0 2.5l4.3 4.3 1.1-1.1-4.3-4.3c-.2-.1-.2-.3-.1-.4z"}));function on(e){return e.replace(/\[/g,"&#91;")}function rn(e){return e.replace(/^(\s*https?:)\/\/([^\s<>"]+\s*)$/m,"$1&#47;&#47;$2")}var an={from:[{type:"enter",regExp:/^```$/,transform:()=>(0,be.createBlock)("core/code")},{type:"block",blocks:["core/html"],transform:e=>{let{content:t}=e;return(0,be.createBlock)("core/code",{content:t})}},{type:"raw",isMatch:e=>"PRE"===e.nodeName&&1===e.children.length&&"CODE"===e.firstChild.nodeName,schema:{pre:{children:{code:{children:{"#text":{}}}}}}}]};const ln={apiVersion:2,name:"core/code",title:"Code",category:"text",description:"Display code snippets that respect your spacing and tabs.",textdomain:"default",attributes:{content:{type:"string",source:"html",selector:"code"}},supports:{anchor:!0,__experimentalSelector:".wp-block-code > code",typography:{fontSize:!0,lineHeight:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0,__experimentalLetterSpacing:!0,__experimentalTextTransform:!0,__experimentalDefaultControls:{fontSize:!0}},spacing:{margin:["top","bottom"],padding:!0},__experimentalBorder:{radius:!0,color:!0,width:!0,style:!0},color:{text:!0,background:!0,gradients:!0}},style:"wp-block-code"},{name:sn}=ln,cn={icon:nn,example:{attributes:{content:(0,we.__)('// A "block" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );')}},transforms:an,edit:function(e){let{attributes:t,setAttributes:n,onRemove:o}=e;const r=(0,Ee.useBlockProps)();return(0,ye.createElement)("pre",r,(0,ye.createElement)(Ee.RichText,{tagName:"code",value:t.content,onChange:e=>n({content:e}),onRemove:o,placeholder:(0,we.__)("Write code…"),"aria-label":(0,we.__)("Code"),preserveWhiteSpace:!0,__unstablePastePlainText:!0}))},save:function(e){let{attributes:t}=e;return(0,ye.createElement)("pre",Ee.useBlockProps.save(),(0,ye.createElement)(Ee.RichText.Content,{tagName:"code",value:(n=t.content,(0,Le.flow)(on,rn)(n||""))}));var n}};var un=(0,ye.createElement)(fe.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,ye.createElement)(fe.Path,{d:"M19 6H6c-1.1 0-2 .9-2 2v9c0 1.1.9 2 2 2h13c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zM6 17.5c-.3 0-.5-.2-.5-.5V8c0-.3.2-.5.5-.5h3v10H6zm13.5-.5c0 .3-.2.5-.5.5h-3v-10h3c.3 0 .5.2.5.5v9z"}));const mn=[{attributes:{verticalAlignment:{type:"string"},width:{type:"number",min:0,max:100}},isEligible(e){let{width:t}=e;return isFinite(t)},migrate:e=>({...e,width:`${e.width}%`}),save(e){let{attributes:t}=e;const{verticalAlignment:n,width:o}=t,r=nt()({[`is-vertically-aligned-${n}`]:n}),a={flexBasis:o+"%"};return(0,ye.createElement)("div",{className:r,style:a},(0,ye.createElement)(Ee.InnerBlocks.Content,null))}}];var dn=mn;var pn=function(e){let{attributes:{verticalAlignment:t,width:n,templateLock:o=!1,allowedBlocks:r},setAttributes:a,clientId:l}=e;const i=nt()("block-core-columns",{[`is-vertically-aligned-${t}`]:t}),s=(0,ke.__experimentalUseCustomUnits)({availableUnits:(0,Ee.useSetting)("spacing.units")||["%","px","em","rem","vw"]}),{columnsIds:c,hasChildBlocks:u,rootClientId:m}=(0,Ie.useSelect)((e=>{const{getBlockOrder:t,getBlockRootClientId:n}=e(Ee.store),o=n(l);return{hasChildBlocks:t(l).length>0,rootClientId:o,columnsIds:t(o)}}),[l]),{updateBlockAttributes:d}=(0,Ie.useDispatch)(Ee.store),p=Number.isFinite(n)?n+"%":n,g=(0,Ee.useBlockProps)({className:i,style:p?{flexBasis:p}:void 0}),h=c.length,v=c.indexOf(l)+1,b=(0,we.sprintf)((0,we.__)("%1$s (%2$d of %3$d)"),g["aria-label"],v,h),y=(0,Ee.useInnerBlocksProps)({...g,"aria-label":b},{templateLock:o,allowedBlocks:r,renderAppender:u?void 0:Ee.InnerBlocks.ButtonBlockAppender});return(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)(Ee.BlockControls,null,(0,ye.createElement)(Ee.BlockVerticalAlignmentToolbar,{onChange:e=>{a({verticalAlignment:e}),d(m,{verticalAlignment:null})},value:t})),(0,ye.createElement)(Ee.InspectorControls,null,(0,ye.createElement)(ke.PanelBody,{title:(0,we.__)("Column settings")},(0,ye.createElement)(ke.__experimentalUnitControl,{label:(0,we.__)("Width"),labelPosition:"edge",__unstableInputWidth:"80px",value:n||"",onChange:e=>{e=0>parseFloat(e)?"0":e,a({width:e})},units:s}))),(0,ye.createElement)("div",y))};const gn={apiVersion:2,name:"core/column",title:"Column",category:"text",parent:["core/columns"],description:"A single column within a columns block.",textdomain:"default",attributes:{verticalAlignment:{type:"string"},width:{type:"string"},allowedBlocks:{type:"array"},templateLock:{type:["string","boolean"],enum:["all","insert",!1]}},supports:{anchor:!0,reusable:!1,html:!1,color:{gradients:!0,link:!0},spacing:{padding:!0,__experimentalDefaultControls:{padding:!0}}}},{name:hn}=gn,vn={icon:un,edit:pn,save:function(e){let{attributes:t}=e;const{verticalAlignment:n,width:o}=t,r=nt()({[`is-vertically-aligned-${n}`]:n});let a;if(o&&/\d/.test(o)){let e=Number.isFinite(o)?o+"%":o;if(!Number.isFinite(o)&&null!=o&&o.endsWith("%")){const t=1e12;e=Math.round(Number.parseFloat(o)*t)/t+"%"}a={flexBasis:e}}const l=Ee.useBlockProps.save({className:r,style:a}),i=Ee.useInnerBlocksProps.save(l);return(0,ye.createElement)("div",i)},deprecated:dn};var bn=(0,ye.createElement)(fe.SVG,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,ye.createElement)(fe.Path,{d:"M19 6H6c-1.1 0-2 .9-2 2v9c0 1.1.9 2 2 2h13c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-4.1 1.5v10H10v-10h4.9zM5.5 17V8c0-.3.2-.5.5-.5h2.5v10H6c-.3 0-.5-.2-.5-.5zm14 0c0 .3-.2.5-.5.5h-2.6v-10H19c.3 0 .5.2.5.5v9z"}));function yn(e){let t,{doc:n}=yn;n||(n=document.implementation.createHTMLDocument(""),yn.doc=n),n.body.innerHTML=e;for(const e of n.body.firstChild.classList)if(t=e.match(/^layout-column-(\d+)$/))return Number(t[1])-1}var fn=[{attributes:{verticalAlignment:{type:"string"},backgroundColor:{type:"string"},customBackgroundColor:{type:"string"},customTextColor:{type:"string"},textColor:{type:"string"}},migrate:e=>{if(!e.customTextColor&&!e.customBackgroundColor)return e;const t={color:{}};return e.customTextColor&&(t.color.text=e.customTextColor),e.customBackgroundColor&&(t.color.background=e.customBackgroundColor),{...(0,Le.omit)(e,["customTextColor","customBackgroundColor"]),style:t,isStackedOnMobile:!0}},save(e){let{attributes:t}=e;const{verticalAlignment:n,backgroundColor:o,customBackgroundColor:r,textColor:a,customTextColor:l}=t,i=(0,Ee.getColorClassName)("background-color",o),s=(0,Ee.getColorClassName)("color",a),c=nt()({"has-background":o||r,"has-text-color":a||l,[i]:i,[s]:s,[`are-vertically-aligned-${n}`]:n}),u={backgroundColor:i?void 0:r,color:s?void 0:l};return(0,ye.createElement)("div",{className:c||void 0,style:u},(0,ye.createElement)(Ee.InnerBlocks.Content,null))}},{attributes:{columns:{type:"number",default:2}},isEligible:(e,t)=>!!t.some((e=>/layout-column-\d+/.test(e.originalContent)))&&t.some((e=>void 0!==yn(e.originalContent))),migrate(e,t){const n=t.reduce(((e,t)=>{const{originalContent:n}=t;let o=yn(n);return void 0===o&&(o=0),e[o]||(e[o]=[]),e[o].push(t),e}),[]).map((e=>(0,be.createBlock)("core/column",{},e)));return[{...(0,Le.omit)(e,["columns"]),isStackedOnMobile:!0},n]},save(e){let{attributes:t}=e;const{columns:n}=t;return(0,ye.createElement)("div",{className:`has-${n}-columns`},(0,ye.createElement)(Ee.InnerBlocks.Content,null))}},{attributes:{columns:{type:"number",default:2}},migrate:(e,t)=>[e={...(0,Le.omit)(e,["columns"]),isStackedOnMobile:!0},t],save(e){let{attributes:t}=e;const{verticalAlignment:n,columns:o}=t,r=nt()(`has-${o}-columns`,{[`are-vertically-aligned-${n}`]:n});return(0,ye.createElement)("div",{className:r},(0,ye.createElement)(Ee.InnerBlocks.Content,null))}}];const _n=e=>{const t=parseFloat(e);return Number.isFinite(t)?parseFloat(t.toFixed(2)):void 0};function kn(e,t){const{width:n=100/t}=e.attributes;return _n(n)}function wn(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:e.length;return(0,Le.sumBy)(e,(e=>kn(e,t)))}function En(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:e.length;return e.reduce(((e,n)=>{const o=kn(n,t);return Object.assign(e,{[n.clientId]:o})}),{})}function Cn(e,t){let n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:e.length;const o=wn(e,n);return(0,Le.mapValues)(En(e,n),(e=>_n(t*e/o)))}function xn(e,t){return e.map((e=>(0,Le.merge)({},e,{attributes:{width:`${t[e.clientId]}%`}})))}const Sn=["core/column"];const Bn=(0,Ie.withDispatch)(((e,t,n)=>({updateAlignment(o){const{clientId:r,setAttributes:a}=t,{updateBlockAttributes:l}=e(Ee.store),{getBlockOrder:i}=n.select(Ee.store);a({verticalAlignment:o});i(r).forEach((e=>{l(e,{verticalAlignment:o})}))},updateColumns(o,r){const{clientId:a}=t,{replaceInnerBlocks:l}=e(Ee.store),{getBlocks:i}=n.select(Ee.store);let s=i(a);const c=s.every((e=>{var t;const n=e.attributes.width;return Number.isFinite(null!=n&&null!==(t=n.endsWith)&&void 0!==t&&t.call(n,"%")?parseFloat(n):n)}));const u=r>o;if(u&&c){const e=_n(100/r);s=[...xn(s,Cn(s,100-e)),...(0,Le.times)(r-o,(()=>(0,be.createBlock)("core/column",{width:`${e}%`})))]}else if(u)s=[...s,...(0,Le.times)(r-o,(()=>(0,be.createBlock)("core/column")))];else if(s=(0,Le.dropRight)(s,o-r),c){s=xn(s,Cn(s,100))}l(a,s)}})))((function(e){let{attributes:t,setAttributes:n,updateAlignment:o,updateColumns:r,clientId:a}=e;const{isStackedOnMobile:l,verticalAlignment:i}=t,{count:s}=(0,Ie.useSelect)((e=>({count:e(Ee.store).getBlockCount(a)})),[a]),c=nt()({[`are-vertically-aligned-${i}`]:i,"is-not-stacked-on-mobile":!l}),u=(0,Ee.useBlockProps)({className:c}),m=(0,Ee.useInnerBlocksProps)(u,{allowedBlocks:Sn,orientation:"horizontal",renderAppender:!1});return(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)(Ee.BlockControls,null,(0,ye.createElement)(Ee.BlockVerticalAlignmentToolbar,{onChange:o,value:i})),(0,ye.createElement)(Ee.InspectorControls,null,(0,ye.createElement)(ke.PanelBody,null,(0,ye.createElement)(ke.RangeControl,{label:(0,we.__)("Columns"),value:s,onChange:e=>r(s,e),min:1,max:Math.max(6,s)}),s>6&&(0,ye.createElement)(ke.Notice,{status:"warning",isDismissible:!1},(0,we.__)("This column count exceeds the recommended amount and may cause visual breakage.")),(0,ye.createElement)(ke.ToggleControl,{label:(0,we.__)("Stack on mobile"),checked:l,onChange:()=>n({isStackedOnMobile:!l})}))),(0,ye.createElement)("div",m))}));function Tn(e){let{clientId:t,name:n,setAttributes:o}=e;const{blockType:r,defaultVariation:a,variations:l}=(0,Ie.useSelect)((e=>{const{getBlockVariations:t,getBlockType:o,getDefaultBlockVariation:r}=e(be.store);return{blockType:o(n),defaultVariation:r(n,"block"),variations:t(n,"block")}}),[n]),{replaceInnerBlocks:i}=(0,Ie.useDispatch)(Ee.store),s=(0,Ee.useBlockProps)();return(0,ye.createElement)("div",s,(0,ye.createElement)(Ee.__experimentalBlockVariationPicker,{icon:(0,Le.get)(r,["icon","src"]),label:(0,Le.get)(r,["title"]),variations:l,onSelect:function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:a;e.attributes&&o(e.attributes),e.innerBlocks&&i(t,(0,be.createBlocksFromInnerBlocksTemplate)(e.innerBlocks),!0)},allowSkip:!0}))}var Nn=e=>{const{clientId:t}=e,n=(0,Ie.useSelect)((e=>e(Ee.store).getBlocks(t).length>0),[t])?Bn:Tn;return(0,ye.createElement)(n,e)};var zn=[{name:"one-column-full",title:(0,we.__)("100"),description:(0,we.__)("One column"),icon:(0,ye.createElement)(ke.SVG,{width:"48",height:"48",viewBox:"0 0 48 48",xmlns:"http://www.w3.org/2000/svg"},(0,ye.createElement)(ke.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"m39.0625 14h-30.0625v20.0938h30.0625zm-30.0625-2c-1.10457 0-2 .8954-2 2v20.0938c0 1.1045.89543 2 2 2h30.0625c1.1046 0 2-.8955 2-2v-20.0938c0-1.1046-.8954-2-2-2z"})),innerBlocks:[["core/column"]],scope:["block"]},{name:"two-columns-equal",title:(0,we.__)("50 / 50"),description:(0,we.__)("Two columns; equal split"),icon:(0,ye.createElement)(ke.SVG,{width:"48",height:"48",viewBox:"0 0 48 48",xmlns:"http://www.w3.org/2000/svg"},(0,ye.createElement)(ke.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M39 12C40.1046 12 41 12.8954 41 14V34C41 35.1046 40.1046 36 39 36H9C7.89543 36 7 35.1046 7 34V14C7 12.8954 7.89543 12 9 12H39ZM39 34V14H25V34H39ZM23 34H9V14H23V34Z"})),isDefault:!0,innerBlocks:[["core/column"],["core/column"]],scope:["block"]},{name:"two-columns-one-third-two-thirds",title:(0,we.__)("30 / 70"),description:(0,we.__)("Two columns; one-third, two-thirds split"),icon:(0,ye.createElement)(ke.SVG,{width:"48",height:"48",viewBox:"0 0 48 48",xmlns:"http://www.w3.org/2000/svg"},(0,ye.createElement)(ke.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M39 12C40.1046 12 41 12.8954 41 14V34C41 35.1046 40.1046 36 39 36H9C7.89543 36 7 35.1046 7 34V14C7 12.8954 7.89543 12 9 12H39ZM39 34V14H20V34H39ZM18 34H9V14H18V34Z"})),innerBlocks:[["core/column",{width:"33.33%"}],["core/column",{width:"66.66%"}]],scope:["block"]},{name:"two-columns-two-thirds-one-third",title:(0,we.__)("70 / 30"),description:(0,we.__)("Two columns; two-thirds, one-third split"),icon:(0,ye.createElement)(ke.SVG,{width:"48",height:"48",viewBox:"0 0 48 48",xmlns:"http://www.w3.org/2000/svg"},(0,ye.createElement)(ke.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M39 12C40.1046 12 41 12.8954 41 14V34C41 35.1046 40.1046 36 39 36H9C7.89543 36 7 35.1046 7 34V14C7 12.8954 7.89543 12 9 12H39ZM39 34V14H30V34H39ZM28 34H9V14H28V34Z"})),innerBlocks:[["core/column",{width:"66.66%"}],["core/column",{width:"33.33%"}]],scope:["block"]},{name:"three-columns-equal",title:(0,we.__)("33 / 33 / 33"),description:(0,we.__)("Three columns; equal split"),icon:(0,ye.createElement)(ke.SVG,{width:"48",height:"48",viewBox:"0 0 48 48",xmlns:"http://www.w3.org/2000/svg"},(0,ye.createElement)(ke.Path,{fillRule:"evenodd",d:"M41 14a2 2 0 0 0-2-2H9a2 2 0 0 0-2 2v20a2 2 0 0 0 2 2h30a2 2 0 0 0 2-2V14zM28.5 34h-9V14h9v20zm2 0V14H39v20h-8.5zm-13 0H9V14h8.5v20z"})),innerBlocks:[["core/column"],["core/column"],["core/column"]],scope:["block"]},{name:"three-columns-wider-center",title:(0,we.__)("25 / 50 / 25"),description:(0,we.__)("Three columns; wide center column"),icon:(0,ye.createElement)(ke.SVG,{width:"48",height:"48",viewBox:"0 0 48 48",xmlns:"http://www.w3.org/2000/svg"},(0,ye.createElement)(ke.Path,{fillRule:"evenodd",d:"M41 14a2 2 0 0 0-2-2H9a2 2 0 0 0-2 2v20a2 2 0 0 0 2 2h30a2 2 0 0 0 2-2V14zM31 34H17V14h14v20zm2 0V14h6v20h-6zm-18 0H9V14h6v20z"})),innerBlocks:[["core/column",{width:"25%"}],["core/column",{width:"50%"}],["core/column",{width:"25%"}]],scope:["block"]}];const Pn={from:[{type:"block",isMultiBlock:!0,blocks:["*"],__experimentalConvert:e=>{const t=+(100/e.length).toFixed(2),n=e.map((e=>{let{name:n,attributes:o,innerBlocks:r}=e;return["core/column",{width:`${t}%`},[[n,{...o},r]]]}));return(0,be.createBlock)("core/columns",{},(0,be.createBlocksFromInnerBlocksTemplate)(n))},isMatch:e=>{let{length:t}=e;return t&&t<=6}},{type:"block",blocks:["core/media-text"],priority:1,transform:(e,t)=>{const{align:n,backgroundColor:o,textColor:r,style:a,mediaAlt:l,mediaId:i,mediaPosition:s,mediaSizeSlug:c,mediaType:u,mediaUrl:m,mediaWidth:d,verticalAlignment:p}=e;let g;if("image"!==u&&u)g=["core/video",{id:i,src:m}];else{g=["core/image",{...{id:i,alt:l,url:m,sizeSlug:c},...{href:e.href,linkClass:e.linkClass,linkDestination:e.linkDestination,linkTarget:e.linkTarget,rel:e.rel}}]}const h=[["core/column",{width:`${d}%`},[g]],["core/column",{width:100-d+"%"},t]];return"right"===s&&h.reverse(),(0,be.createBlock)("core/columns",{align:n,backgroundColor:o,textColor:r,style:a,verticalAlignment:p},(0,be.createBlocksFromInnerBlocksTemplate)(h))}}]};var In=Pn;const Mn={apiVersion:2,name:"core/columns",title:"Columns",category:"design",description:"Display content in multiple columns, with blocks added to each column.",textdomain:"default",attributes:{verticalAlignment:{type:"string"},isStackedOnMobile:{type:"boolean",default:!0}},supports:{anchor:!0,align:["wide","full"],html:!1,color:{gradients:!0,link:!0},spacing:{margin:["top","bottom"],padding:!0,__experimentalDefaultControls:{padding:!0}}},editorStyle:"wp-block-columns-editor",style:"wp-block-columns"},{name:Rn}=Mn,Ln={icon:bn,variations:zn,example:{viewportWidth:600,innerBlocks:[{name:"core/column",innerBlocks:[{name:"core/paragraph",attributes:{content:(0,we.__)("Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent et eros eu felis.")}},{name:"core/image",attributes:{url:"https://s.w.org/images/core/5.3/Windbuchencom.jpg"}},{name:"core/paragraph",attributes:{content:(0,we.__)("Suspendisse commodo neque lacus, a dictum orci interdum et.")}}]},{name:"core/column",innerBlocks:[{name:"core/paragraph",attributes:{content:(0,we.__)("Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.")}},{name:"core/paragraph",attributes:{content:(0,we.__)("Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.")}}]}]},deprecated:fn,edit:Nn,save:function(e){let{attributes:t}=e;const{isStackedOnMobile:n,verticalAlignment:o}=t,r=nt()({[`are-vertically-aligned-${o}`]:o,"is-not-stacked-on-mobile":!n}),a=Ee.useBlockProps.save({className:r}),l=Ee.useInnerBlocksProps.save(a);return(0,ye.createElement)("div",l)},transforms:In};var Vn=(0,ye.createElement)(fe.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,ye.createElement)(fe.Path,{d:"M18.7 3H5.3C4 3 3 4 3 5.3v13.4C3 20 4 21 5.3 21h13.4c1.3 0 2.3-1 2.3-2.3V5.3C21 4 20 3 18.7 3zm.8 15.7c0 .4-.4.8-.8.8H5.3c-.4 0-.8-.4-.8-.8V5.3c0-.4.4-.8.8-.8h6.2v8.9l2.5-3.1 2.5 3.1V4.5h2.2c.4 0 .8.4.8.8v13.4z"}));const Hn={"top left":"is-position-top-left","top center":"is-position-top-center","top right":"is-position-top-right","center left":"is-position-center-left","center center":"is-position-center-center",center:"is-position-center-center","center right":"is-position-center-right","bottom left":"is-position-bottom-left","bottom center":"is-position-bottom-center","bottom right":"is-position-bottom-right"},An="image",Fn="video";function Dn(e){return e?{backgroundImage:`url(${e})`}:{}}const Gn=["image","video"];function Un(e){return 50===e||void 0===!e?null:"has-background-dim-"+10*Math.round(e/10)}function On(e){return!e||"center center"===e||"center"===e}function qn(e){return On(e)?"":Hn[e]}function $n(e){return 0!==e&&50!==e&&e?"has-background-dim-"+10*Math.round(e/10):null}function Wn(e){return{...e,dimRatio:e.url?e.dimRatio:100}}const jn={url:{type:"string"},id:{type:"number"},hasParallax:{type:"boolean",default:!1},dimRatio:{type:"number",default:50},overlayColor:{type:"string"},customOverlayColor:{type:"string"},backgroundType:{type:"string",default:"image"},focalPoint:{type:"object"}},Zn={attributes:{...jn,isRepeated:{type:"boolean",default:!1},minHeight:{type:"number"},minHeightUnit:{type:"string"},gradient:{type:"string"},customGradient:{type:"string"},contentPosition:{type:"string"},alt:{type:"string",source:"attribute",selector:"img",attribute:"alt",default:""}},supports:{anchor:!0,align:!0,html:!1,spacing:{padding:!0,__experimentalDefaultControls:{padding:!0}},color:{__experimentalDuotone:"> .wp-block-cover__image-background, > .wp-block-cover__video-background",text:!1,background:!1}},save(e){let{attributes:t}=e;const{backgroundType:n,gradient:o,contentPosition:r,customGradient:a,customOverlayColor:l,dimRatio:i,focalPoint:s,hasParallax:c,isRepeated:u,overlayColor:m,url:d,alt:p,id:g,minHeight:h,minHeightUnit:v}=t,b=(0,Ee.getColorClassName)("background-color",m),y=(0,Ee.__experimentalGetGradientClass)(o),f=v?`${h}${v}`:h,_=An===n,k=Fn===n,w=!(c||u),E={..._&&!w?Dn(d):{},backgroundColor:b?void 0:l,background:a&&!d?a:void 0,minHeight:f||void 0},C=s&&w?`${Math.round(100*s.x)}% ${Math.round(100*s.y)}%`:void 0,x=nt()($n(i),b,{"has-background-dim":0!==i,"has-parallax":c,"is-repeated":u,"has-background-gradient":o||a,[y]:!d&&y,"has-custom-content-position":!On(r)},qn(r));return(0,ye.createElement)("div",Ee.useBlockProps.save({className:x,style:E}),d&&(o||a)&&0!==i&&(0,ye.createElement)("span",{"aria-hidden":"true",className:nt()("wp-block-cover__gradient-background",y),style:a?{background:a}:void 0}),_&&w&&d&&(0,ye.createElement)("img",{className:nt()("wp-block-cover__image-background",g?`wp-image-${g}`:null),alt:p,src:d,style:{objectPosition:C},"data-object-fit":"cover","data-object-position":C}),k&&d&&(0,ye.createElement)("video",{className:nt()("wp-block-cover__video-background","intrinsic-ignore"),autoPlay:!0,muted:!0,loop:!0,playsInline:!0,src:d,style:{objectPosition:C},"data-object-fit":"cover","data-object-position":C}),(0,ye.createElement)("div",{className:"wp-block-cover__inner-container"},(0,ye.createElement)(Ee.InnerBlocks.Content,null)))},migrate:Wn},Kn={attributes:{...jn,isRepeated:{type:"boolean",default:!1},minHeight:{type:"number"},minHeightUnit:{type:"string"},gradient:{type:"string"},customGradient:{type:"string"},contentPosition:{type:"string"}},supports:{align:!0},save(e){let{attributes:t}=e;const{backgroundType:n,gradient:o,contentPosition:r,customGradient:a,customOverlayColor:l,dimRatio:i,focalPoint:s,hasParallax:c,isRepeated:u,overlayColor:m,url:d,minHeight:p,minHeightUnit:g}=t,h=(0,Ee.getColorClassName)("background-color",m),v=(0,Ee.__experimentalGetGradientClass)(o),b=g?`${p}${g}`:p,y=An===n,f=Fn===n,_=y?Dn(d):{},k={};let w;h||(_.backgroundColor=l),a&&!d&&(_.background=a),_.minHeight=b||void 0,s&&(w=`${Math.round(100*s.x)}% ${Math.round(100*s.y)}%`,y&&!c&&(_.backgroundPosition=w),f&&(k.objectPosition=w));const E=nt()($n(i),h,{"has-background-dim":0!==i,"has-parallax":c,"is-repeated":u,"has-background-gradient":o||a,[v]:!d&&v,"has-custom-content-position":!On(r)},qn(r));return(0,ye.createElement)("div",Ee.useBlockProps.save({className:E,style:_}),d&&(o||a)&&0!==i&&(0,ye.createElement)("span",{"aria-hidden":"true",className:nt()("wp-block-cover__gradient-background",v),style:a?{background:a}:void 0}),f&&d&&(0,ye.createElement)("video",{className:"wp-block-cover__video-background",autoPlay:!0,muted:!0,loop:!0,playsInline:!0,src:d,style:k}),(0,ye.createElement)("div",{className:"wp-block-cover__inner-container"},(0,ye.createElement)(Ee.InnerBlocks.Content,null)))},migrate:Wn},Qn={attributes:{...jn,minHeight:{type:"number"},gradient:{type:"string"},customGradient:{type:"string"}},supports:{align:!0},save(e){let{attributes:t}=e;const{backgroundType:n,gradient:o,customGradient:r,customOverlayColor:a,dimRatio:l,focalPoint:i,hasParallax:s,overlayColor:c,url:u,minHeight:m}=t,d=(0,Ee.getColorClassName)("background-color",c),p=(0,Ee.__experimentalGetGradientClass)(o),g=n===An?Dn(u):{};d||(g.backgroundColor=a),i&&!s&&(g.backgroundPosition=`${Math.round(100*i.x)}% ${Math.round(100*i.y)}%`),r&&!u&&(g.background=r),g.minHeight=m||void 0;const h=nt()($n(l),d,{"has-background-dim":0!==l,"has-parallax":s,"has-background-gradient":r,[p]:!u&&p});return(0,ye.createElement)("div",{className:h,style:g},u&&(o||r)&&0!==l&&(0,ye.createElement)("span",{"aria-hidden":"true",className:nt()("wp-block-cover__gradient-background",p),style:r?{background:r}:void 0}),Fn===n&&u&&(0,ye.createElement)("video",{className:"wp-block-cover__video-background",autoPlay:!0,muted:!0,loop:!0,src:u}),(0,ye.createElement)("div",{className:"wp-block-cover__inner-container"},(0,ye.createElement)(Ee.InnerBlocks.Content,null)))},migrate:Wn},Jn={attributes:{...jn,minHeight:{type:"number"},gradient:{type:"string"},customGradient:{type:"string"}},supports:{align:!0},save(e){let{attributes:t}=e;const{backgroundType:n,gradient:o,customGradient:r,customOverlayColor:a,dimRatio:l,focalPoint:i,hasParallax:s,overlayColor:c,url:u,minHeight:m}=t,d=(0,Ee.getColorClassName)("background-color",c),p=(0,Ee.__experimentalGetGradientClass)(o),g=n===An?Dn(u):{};d||(g.backgroundColor=a),i&&!s&&(g.backgroundPosition=`${100*i.x}% ${100*i.y}%`),r&&!u&&(g.background=r),g.minHeight=m||void 0;const h=nt()($n(l),d,{"has-background-dim":0!==l,"has-parallax":s,"has-background-gradient":r,[p]:!u&&p});return(0,ye.createElement)("div",{className:h,style:g},u&&(o||r)&&0!==l&&(0,ye.createElement)("span",{"aria-hidden":"true",className:nt()("wp-block-cover__gradient-background",p),style:r?{background:r}:void 0}),Fn===n&&u&&(0,ye.createElement)("video",{className:"wp-block-cover__video-background",autoPlay:!0,muted:!0,loop:!0,src:u}),(0,ye.createElement)("div",{className:"wp-block-cover__inner-container"},(0,ye.createElement)(Ee.InnerBlocks.Content,null)))},migrate:Wn},Yn={attributes:{...jn,title:{type:"string",source:"html",selector:"p"},contentAlign:{type:"string",default:"center"}},supports:{align:!0},save(e){let{attributes:t}=e;const{backgroundType:n,contentAlign:o,customOverlayColor:r,dimRatio:a,focalPoint:l,hasParallax:i,overlayColor:s,title:c,url:u}=t,m=(0,Ee.getColorClassName)("background-color",s),d=n===An?Dn(u):{};m||(d.backgroundColor=r),l&&!i&&(d.backgroundPosition=`${100*l.x}% ${100*l.y}%`);const p=nt()($n(a),m,{"has-background-dim":0!==a,"has-parallax":i,[`has-${o}-content`]:"center"!==o});return(0,ye.createElement)("div",{className:p,style:d},Fn===n&&u&&(0,ye.createElement)("video",{className:"wp-block-cover__video-background",autoPlay:!0,muted:!0,loop:!0,src:u}),!Ee.RichText.isEmpty(c)&&(0,ye.createElement)(Ee.RichText.Content,{tagName:"p",className:"wp-block-cover-text",value:c}))},migrate(e){const t={...e,dimRatio:e.url?e.dimRatio:100};return[(0,Le.omit)(t,["title","contentAlign"]),[(0,be.createBlock)("core/paragraph",{content:e.title,align:e.contentAlign,fontSize:"large",placeholder:(0,we.__)("Write title")})]]}},Xn={attributes:{...jn,title:{type:"string",source:"html",selector:"p"},contentAlign:{type:"string",default:"center"},align:{type:"string"}},supports:{className:!1},save(e){let{attributes:t}=e;const{url:n,title:o,hasParallax:r,dimRatio:a,align:l,contentAlign:i,overlayColor:s,customOverlayColor:c}=t,u=(0,Ee.getColorClassName)("background-color",s),m=Dn(n);u||(m.backgroundColor=c);const d=nt()("wp-block-cover-image",$n(a),u,{"has-background-dim":0!==a,"has-parallax":r,[`has-${i}-content`]:"center"!==i},l?`align${l}`:null);return(0,ye.createElement)("div",{className:d,style:m},!Ee.RichText.isEmpty(o)&&(0,ye.createElement)(Ee.RichText.Content,{tagName:"p",className:"wp-block-cover-image-text",value:o}))},migrate(e){const t={...e,dimRatio:e.url?e.dimRatio:100};return[(0,Le.omit)(t,["title","contentAlign","align"]),[(0,be.createBlock)("core/paragraph",{content:e.title,align:e.contentAlign,fontSize:"large",placeholder:(0,we.__)("Write title")})]]}},eo={attributes:{...jn,title:{type:"string",source:"html",selector:"h2"},align:{type:"string"},contentAlign:{type:"string",default:"center"}},supports:{className:!1},save(e){let{attributes:t}=e;const{url:n,title:o,hasParallax:r,dimRatio:a,align:l}=t,i=Dn(n),s=nt()("wp-block-cover-image",$n(a),{"has-background-dim":0!==a,"has-parallax":r},l?`align${l}`:null);return(0,ye.createElement)("section",{className:s,style:i},(0,ye.createElement)(Ee.RichText.Content,{tagName:"h2",value:o}))},migrate(e){const t={...e,dimRatio:e.url?e.dimRatio:100};return[(0,Le.omit)(t,["title","contentAlign","align"]),[(0,be.createBlock)("core/paragraph",{content:e.title,align:e.contentAlign,fontSize:"large",placeholder:(0,we.__)("Write title")})]]}};var to=[Zn,Kn,Qn,Jn,Yn,Xn,eo],no=n(5027),oo=n.n(no),ro={grad:.9,turn:360,rad:360/(2*Math.PI)},ao=function(e){return"string"==typeof e?e.length>0:"number"==typeof e},lo=function(e,t,n){return void 0===t&&(t=0),void 0===n&&(n=Math.pow(10,t)),Math.round(n*e)/n+0},io=function(e,t,n){return void 0===t&&(t=0),void 0===n&&(n=1),e>n?n:e>t?e:t},so=function(e){return(e=isFinite(e)?e%360:0)>0?e:e+360},co=function(e){return{r:io(e.r,0,255),g:io(e.g,0,255),b:io(e.b,0,255),a:io(e.a)}},uo=function(e){return{r:lo(e.r),g:lo(e.g),b:lo(e.b),a:lo(e.a,3)}},mo=/^#([0-9a-f]{3,8})$/i,po=function(e){var t=e.toString(16);return t.length<2?"0"+t:t},go=function(e){var t=e.r,n=e.g,o=e.b,r=e.a,a=Math.max(t,n,o),l=a-Math.min(t,n,o),i=l?a===t?(n-o)/l:a===n?2+(o-t)/l:4+(t-n)/l:0;return{h:60*(i<0?i+6:i),s:a?l/a*100:0,v:a/255*100,a:r}},ho=function(e){var t=e.h,n=e.s,o=e.v,r=e.a;t=t/360*6,n/=100,o/=100;var a=Math.floor(t),l=o*(1-n),i=o*(1-(t-a)*n),s=o*(1-(1-t+a)*n),c=a%6;return{r:255*[o,i,l,l,s,o][c],g:255*[s,o,o,i,l,l][c],b:255*[l,l,s,o,o,i][c],a:r}},vo=function(e){return{h:so(e.h),s:io(e.s,0,100),l:io(e.l,0,100),a:io(e.a)}},bo=function(e){return{h:lo(e.h),s:lo(e.s),l:lo(e.l),a:lo(e.a,3)}},yo=function(e){return ho((n=(t=e).s,{h:t.h,s:(n*=((o=t.l)<50?o:100-o)/100)>0?2*n/(o+n)*100:0,v:o+n,a:t.a}));var t,n,o},fo=function(e){return{h:(t=go(e)).h,s:(r=(200-(n=t.s))*(o=t.v)/100)>0&&r<200?n*o/100/(r<=100?r:200-r)*100:0,l:r/2,a:t.a};var t,n,o,r},_o=/^hsla?\(\s*([+-]?\d*\.?\d+)(deg|rad|grad|turn)?\s*,\s*([+-]?\d*\.?\d+)%\s*,\s*([+-]?\d*\.?\d+)%\s*(?:,\s*([+-]?\d*\.?\d+)(%)?\s*)?\)$/i,ko=/^hsla?\(\s*([+-]?\d*\.?\d+)(deg|rad|grad|turn)?\s+([+-]?\d*\.?\d+)%\s+([+-]?\d*\.?\d+)%\s*(?:\/\s*([+-]?\d*\.?\d+)(%)?\s*)?\)$/i,wo=/^rgba?\(\s*([+-]?\d*\.?\d+)(%)?\s*,\s*([+-]?\d*\.?\d+)(%)?\s*,\s*([+-]?\d*\.?\d+)(%)?\s*(?:,\s*([+-]?\d*\.?\d+)(%)?\s*)?\)$/i,Eo=/^rgba?\(\s*([+-]?\d*\.?\d+)(%)?\s+([+-]?\d*\.?\d+)(%)?\s+([+-]?\d*\.?\d+)(%)?\s*(?:\/\s*([+-]?\d*\.?\d+)(%)?\s*)?\)$/i,Co={string:[[function(e){var t=mo.exec(e);return t?(e=t[1]).length<=4?{r:parseInt(e[0]+e[0],16),g:parseInt(e[1]+e[1],16),b:parseInt(e[2]+e[2],16),a:4===e.length?lo(parseInt(e[3]+e[3],16)/255,2):1}:6===e.length||8===e.length?{r:parseInt(e.substr(0,2),16),g:parseInt(e.substr(2,2),16),b:parseInt(e.substr(4,2),16),a:8===e.length?lo(parseInt(e.substr(6,2),16)/255,2):1}:null:null},"hex"],[function(e){var t=wo.exec(e)||Eo.exec(e);return t?t[2]!==t[4]||t[4]!==t[6]?null:co({r:Number(t[1])/(t[2]?100/255:1),g:Number(t[3])/(t[4]?100/255:1),b:Number(t[5])/(t[6]?100/255:1),a:void 0===t[7]?1:Number(t[7])/(t[8]?100:1)}):null},"rgb"],[function(e){var t=_o.exec(e)||ko.exec(e);if(!t)return null;var n,o,r=vo({h:(n=t[1],o=t[2],void 0===o&&(o="deg"),Number(n)*(ro[o]||1)),s:Number(t[3]),l:Number(t[4]),a:void 0===t[5]?1:Number(t[5])/(t[6]?100:1)});return yo(r)},"hsl"]],object:[[function(e){var t=e.r,n=e.g,o=e.b,r=e.a,a=void 0===r?1:r;return ao(t)&&ao(n)&&ao(o)?co({r:Number(t),g:Number(n),b:Number(o),a:Number(a)}):null},"rgb"],[function(e){var t=e.h,n=e.s,o=e.l,r=e.a,a=void 0===r?1:r;if(!ao(t)||!ao(n)||!ao(o))return null;var l=vo({h:Number(t),s:Number(n),l:Number(o),a:Number(a)});return yo(l)},"hsl"],[function(e){var t=e.h,n=e.s,o=e.v,r=e.a,a=void 0===r?1:r;if(!ao(t)||!ao(n)||!ao(o))return null;var l=function(e){return{h:so(e.h),s:io(e.s,0,100),v:io(e.v,0,100),a:io(e.a)}}({h:Number(t),s:Number(n),v:Number(o),a:Number(a)});return ho(l)},"hsv"]]},xo=function(e,t){for(var n=0;n<t.length;n++){var o=t[n][0](e);if(o)return[o,t[n][1]]}return[null,void 0]},So=function(e){return"string"==typeof e?xo(e.trim(),Co.string):"object"==typeof e&&null!==e?xo(e,Co.object):[null,void 0]},Bo=function(e,t){var n=fo(e);return{h:n.h,s:io(n.s+100*t,0,100),l:n.l,a:n.a}},To=function(e){return(299*e.r+587*e.g+114*e.b)/1e3/255},No=function(e,t){var n=fo(e);return{h:n.h,s:n.s,l:io(n.l+100*t,0,100),a:n.a}},zo=function(){function e(e){this.parsed=So(e)[0],this.rgba=this.parsed||{r:0,g:0,b:0,a:1}}return e.prototype.isValid=function(){return null!==this.parsed},e.prototype.brightness=function(){return lo(To(this.rgba),2)},e.prototype.isDark=function(){return To(this.rgba)<.5},e.prototype.isLight=function(){return To(this.rgba)>=.5},e.prototype.toHex=function(){return t=(e=uo(this.rgba)).r,n=e.g,o=e.b,a=(r=e.a)<1?po(lo(255*r)):"","#"+po(t)+po(n)+po(o)+a;var e,t,n,o,r,a},e.prototype.toRgb=function(){return uo(this.rgba)},e.prototype.toRgbString=function(){return t=(e=uo(this.rgba)).r,n=e.g,o=e.b,(r=e.a)<1?"rgba("+t+", "+n+", "+o+", "+r+")":"rgb("+t+", "+n+", "+o+")";var e,t,n,o,r},e.prototype.toHsl=function(){return bo(fo(this.rgba))},e.prototype.toHslString=function(){return t=(e=bo(fo(this.rgba))).h,n=e.s,o=e.l,(r=e.a)<1?"hsla("+t+", "+n+"%, "+o+"%, "+r+")":"hsl("+t+", "+n+"%, "+o+"%)";var e,t,n,o,r},e.prototype.toHsv=function(){return e=go(this.rgba),{h:lo(e.h),s:lo(e.s),v:lo(e.v),a:lo(e.a,3)};var e},e.prototype.invert=function(){return Po({r:255-(e=this.rgba).r,g:255-e.g,b:255-e.b,a:e.a});var e},e.prototype.saturate=function(e){return void 0===e&&(e=.1),Po(Bo(this.rgba,e))},e.prototype.desaturate=function(e){return void 0===e&&(e=.1),Po(Bo(this.rgba,-e))},e.prototype.grayscale=function(){return Po(Bo(this.rgba,-1))},e.prototype.lighten=function(e){return void 0===e&&(e=.1),Po(No(this.rgba,e))},e.prototype.darken=function(e){return void 0===e&&(e=.1),Po(No(this.rgba,-e))},e.prototype.rotate=function(e){return void 0===e&&(e=15),this.hue(this.hue()+e)},e.prototype.alpha=function(e){return"number"==typeof e?Po({r:(t=this.rgba).r,g:t.g,b:t.b,a:e}):lo(this.rgba.a,3);var t},e.prototype.hue=function(e){var t=fo(this.rgba);return"number"==typeof e?Po({h:e,s:t.s,l:t.l,a:t.a}):lo(t.h)},e.prototype.isEqual=function(e){return this.toHex()===Po(e).toHex()},e}(),Po=function(e){return e instanceof zo?e:new zo(e)},Io=[];!function(e){e.forEach((function(e){Io.indexOf(e)<0&&(e(zo,Co),Io.push(e))}))}([function(e,t){var n={white:"#ffffff",bisque:"#ffe4c4",blue:"#0000ff",cadetblue:"#5f9ea0",chartreuse:"#7fff00",chocolate:"#d2691e",coral:"#ff7f50",antiquewhite:"#faebd7",aqua:"#00ffff",azure:"#f0ffff",whitesmoke:"#f5f5f5",papayawhip:"#ffefd5",plum:"#dda0dd",blanchedalmond:"#ffebcd",black:"#000000",gold:"#ffd700",goldenrod:"#daa520",gainsboro:"#dcdcdc",cornsilk:"#fff8dc",cornflowerblue:"#6495ed",burlywood:"#deb887",aquamarine:"#7fffd4",beige:"#f5f5dc",crimson:"#dc143c",cyan:"#00ffff",darkblue:"#00008b",darkcyan:"#008b8b",darkgoldenrod:"#b8860b",darkkhaki:"#bdb76b",darkgray:"#a9a9a9",darkgreen:"#006400",darkgrey:"#a9a9a9",peachpuff:"#ffdab9",darkmagenta:"#8b008b",darkred:"#8b0000",darkorchid:"#9932cc",darkorange:"#ff8c00",darkslateblue:"#483d8b",gray:"#808080",darkslategray:"#2f4f4f",darkslategrey:"#2f4f4f",deeppink:"#ff1493",deepskyblue:"#00bfff",wheat:"#f5deb3",firebrick:"#b22222",floralwhite:"#fffaf0",ghostwhite:"#f8f8ff",darkviolet:"#9400d3",magenta:"#ff00ff",green:"#008000",dodgerblue:"#1e90ff",grey:"#808080",honeydew:"#f0fff0",hotpink:"#ff69b4",blueviolet:"#8a2be2",forestgreen:"#228b22",lawngreen:"#7cfc00",indianred:"#cd5c5c",indigo:"#4b0082",fuchsia:"#ff00ff",brown:"#a52a2a",maroon:"#800000",mediumblue:"#0000cd",lightcoral:"#f08080",darkturquoise:"#00ced1",lightcyan:"#e0ffff",ivory:"#fffff0",lightyellow:"#ffffe0",lightsalmon:"#ffa07a",lightseagreen:"#20b2aa",linen:"#faf0e6",mediumaquamarine:"#66cdaa",lemonchiffon:"#fffacd",lime:"#00ff00",khaki:"#f0e68c",mediumseagreen:"#3cb371",limegreen:"#32cd32",mediumspringgreen:"#00fa9a",lightskyblue:"#87cefa",lightblue:"#add8e6",midnightblue:"#191970",lightpink:"#ffb6c1",mistyrose:"#ffe4e1",moccasin:"#ffe4b5",mintcream:"#f5fffa",lightslategray:"#778899",lightslategrey:"#778899",navajowhite:"#ffdead",navy:"#000080",mediumvioletred:"#c71585",powderblue:"#b0e0e6",palegoldenrod:"#eee8aa",oldlace:"#fdf5e6",paleturquoise:"#afeeee",mediumturquoise:"#48d1cc",mediumorchid:"#ba55d3",rebeccapurple:"#663399",lightsteelblue:"#b0c4de",mediumslateblue:"#7b68ee",thistle:"#d8bfd8",tan:"#d2b48c",orchid:"#da70d6",mediumpurple:"#9370db",purple:"#800080",pink:"#ffc0cb",skyblue:"#87ceeb",springgreen:"#00ff7f",palegreen:"#98fb98",red:"#ff0000",yellow:"#ffff00",slateblue:"#6a5acd",lavenderblush:"#fff0f5",peru:"#cd853f",palevioletred:"#db7093",violet:"#ee82ee",teal:"#008080",slategray:"#708090",slategrey:"#708090",aliceblue:"#f0f8ff",darkseagreen:"#8fbc8f",darkolivegreen:"#556b2f",greenyellow:"#adff2f",seagreen:"#2e8b57",seashell:"#fff5ee",tomato:"#ff6347",silver:"#c0c0c0",sienna:"#a0522d",lavender:"#e6e6fa",lightgreen:"#90ee90",orange:"#ffa500",orangered:"#ff4500",steelblue:"#4682b4",royalblue:"#4169e1",turquoise:"#40e0d0",yellowgreen:"#9acd32",salmon:"#fa8072",saddlebrown:"#8b4513",sandybrown:"#f4a460",rosybrown:"#bc8f8f",darksalmon:"#e9967a",lightgoldenrodyellow:"#fafad2",snow:"#fffafa",lightgrey:"#d3d3d3",lightgray:"#d3d3d3",dimgray:"#696969",dimgrey:"#696969",olivedrab:"#6b8e23",olive:"#808000"},o={};for(var r in n)o[n[r]]=r;var a={};e.prototype.toName=function(t){if(!(this.rgba.a||this.rgba.r||this.rgba.g||this.rgba.b))return"transparent";var r,l,i=o[this.toHex()];if(i)return i;if(null==t?void 0:t.closest){var s=this.toRgb(),c=1/0,u="black";if(!a.length)for(var m in n)a[m]=new e(n[m]).toRgb();for(var d in n){var p=(r=s,l=a[d],Math.pow(r.r-l.r,2)+Math.pow(r.g-l.g,2)+Math.pow(r.b-l.b,2));p<c&&(c=p,u=d)}return u}},t.string.push([function(t){var o=t.toLowerCase(),r="transparent"===o?"#0000":n[o];return r?new e(r).toRgb():null},"name"])}]);const{__Visualizer:Mo}=ke.__experimentalBoxControl;function Ro(){return Ro.fastAverageColor||(Ro.fastAverageColor=new(oo())),Ro.fastAverageColor}function Lo(e){let{onChange:t,onUnitChange:n,unit:o="px",value:r=""}=e;const[a,l]=(0,ye.useState)(null),i=`block-cover-height-input-${(0,ot.useInstanceId)(Ee.__experimentalUnitControl)}`,s="px"===o,c=(0,ke.__experimentalUseCustomUnits)({availableUnits:(0,Ee.useSetting)("spacing.units")||["px","em","rem","vw","vh"],defaultValues:{px:"430",em:"20",rem:"20",vw:"20",vh:"50"}}),u=null!==a?a:r,m=s?50:0;return(0,ye.createElement)(ke.BaseControl,{label:(0,we.__)("Minimum height of cover"),id:i},(0,ye.createElement)(Ee.__experimentalUnitControl,{id:i,isResetValueOnUnitChange:!0,min:m,onBlur:()=>{null!==a&&l(null)},onChange:e=>{const o=""!==e?parseFloat(e):void 0;isNaN(o)&&void 0!==o?l(e):(l(null),t(o),void 0===o&&n())},onUnitChange:n,style:{maxWidth:80},unit:o,units:c,value:u}))}const Vo={top:!1,right:!1,bottom:!0,left:!1,topRight:!1,bottomRight:!1,bottomLeft:!1,topLeft:!1};function Ho(e){let{className:t,onResizeStart:n,onResize:o,onResizeStop:r,...a}=e;const[l,i]=(0,ye.useState)(!1);return(0,ye.createElement)(ke.ResizableBox,gt({className:nt()(t,{"is-resizing":l}),enable:Vo,onResizeStart:(e,t,r)=>{n(r.clientHeight),o(r.clientHeight)},onResize:(e,t,n)=>{o(n.clientHeight),l||i(!0)},onResizeStop:(e,t,n)=>{r(n.clientHeight),i(!1)}},a))}function Ao(e){let{x:t,y:n}=e;return`${Math.round(100*t)}% ${Math.round(100*n)}%`}function Fo(e){let{disableMediaButtons:t=!1,children:n,noticeUI:o,noticeOperations:r,onSelectMedia:a,style:l}=e;const{removeAllNotices:i,createErrorNotice:s}=r;return(0,ye.createElement)(Ee.MediaPlaceholder,{icon:(0,ye.createElement)(Ee.BlockIcon,{icon:Vn}),labels:{title:(0,we.__)("Cover"),instructions:(0,we.__)("Drag and drop onto this block, upload, or select existing media from your library.")},onSelect:a,accept:"image/*,video/*",allowedTypes:Gn,notices:o,disableMediaButtons:t,onError:e=>{i(),s(e)},style:l},n)}var Do=(0,ot.compose)([(0,Ie.withDispatch)((e=>{const{toggleSelection:t,__unstableMarkNextChangeAsNotPersistent:n}=e(Ee.store);return{toggleSelection:t,markNextChangeAsNotPersistent:n}})),(0,Ee.withColors)({overlayColor:"background-color"}),ke.withNotices,ot.withInstanceId])((function(e){var t,n,o;let{attributes:r,clientId:a,isSelected:l,noticeUI:i,noticeOperations:s,overlayColor:c,setAttributes:u,setOverlayColor:m,toggleSelection:d,markNextChangeAsNotPersistent:p}=e;const{contentPosition:g,id:h,backgroundType:v,dimRatio:b,focalPoint:y,hasParallax:f,isDark:_,isRepeated:k,minHeight:w,minHeightUnit:E,style:C,url:x,alt:S,allowedBlocks:B,templateLock:T}=r,{gradientClass:N,gradientValue:z,setGradient:P}=(0,Ee.__experimentalUseGradient)(),I=function(e,t){return n=>{if(!n||!n.url)return void e({url:void 0,id:void 0});let o;if((0,Pe.isBlobURL)(n.url)&&(n.type=(0,Pe.getBlobTypeByURL)(n.url)),n.media_type)o=n.media_type===An?An:Fn;else{if(n.type!==An&&n.type!==Fn)return;o=n.type}e({dimRatio:100===t?50:t,url:n.url,id:n.id,alt:null==n?void 0:n.alt,backgroundType:o,...o===Fn?{focalPoint:void 0,hasParallax:void 0}:{}})}}(u,b),M=((e,t)=>!e&&(0,Pe.isBlobURL)(t))(h,x),[R,L]=(0,ye.useState)(w),[V,H]=(0,ye.useState)(E),A="vh"===E&&100===w,F=(0,ye.useRef)(),D=function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:50,n=arguments.length>2?arguments[2]:void 0,o=arguments.length>3?arguments[3]:void 0;const[r,a]=(0,ye.useState)(!1);return(0,ye.useEffect)((()=>{e&&t<=50&&o.current&&Ro().getColorAsync(o.current,(e=>{a(e.isDark)}))}),[e,e&&t<=50&&o.current,a]),(0,ye.useEffect)((()=>{if(t>50||!e){if(!n)return void a(!0);a(Po(n).isDark())}}),[n,t>50||!e,a]),(0,ye.useEffect)((()=>{e||n||a(!1)}),[!e&&!n,a]),r}(x,b,c.color,F);(0,ye.useEffect)((()=>{p(),u({isDark:D})}),[D]);const G=An===v,U=Fn===v,[O,q]=(0,ye.useState)(null),$=E?`${w}${E}`:w,W=!(f||k),j={...G&&!W?Dn(x):void 0,minHeight:O||$||void 0},Z={backgroundColor:c.color},K={objectPosition:y&&W?Ao(y):void 0},Q=!!(x||c.color||z),J=U||G&&(!f||k),Y=e=>{const[t,n]=F.current?[F.current.style,"objectPosition"]:[te.current.style,"backgroundPosition"];t[n]=Ao(e)},X=(0,Ie.useSelect)((e=>e(Ee.store).getBlock(a).innerBlocks.length>0),[a]),ee=(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)(Ee.BlockControls,{group:"block"},(0,ye.createElement)(Ee.__experimentalBlockAlignmentMatrixControl,{label:(0,we.__)("Change content position"),value:g,onChange:e=>u({contentPosition:e}),isDisabled:!X}),(0,ye.createElement)(Ee.__experimentalBlockFullHeightAligmentControl,{isActive:A,onToggle:()=>A?u("vh"===V&&100===R?{minHeight:void 0,minHeightUnit:void 0}:{minHeight:R,minHeightUnit:V}):(L(w),H(E),u({minHeight:100,minHeightUnit:"vh"})),isDisabled:!X})),(0,ye.createElement)(Ee.BlockControls,{group:"other"},(0,ye.createElement)(Ee.MediaReplaceFlow,{mediaId:h,mediaURL:x,allowedTypes:Gn,accept:"image/*,video/*",onSelect:I,name:x?(0,we.__)("Replace"):(0,we.__)("Add Media")})),(0,ye.createElement)(Ee.InspectorControls,null,!!x&&(0,ye.createElement)(ke.PanelBody,{title:(0,we.__)("Media settings")},G&&(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)(ke.ToggleControl,{label:(0,we.__)("Fixed background"),checked:f,onChange:()=>{u({hasParallax:!f,...f?{}:{focalPoint:void 0}})}}),(0,ye.createElement)(ke.ToggleControl,{label:(0,we.__)("Repeated background"),checked:k,onChange:()=>{u({isRepeated:!k})}})),J&&(0,ye.createElement)(ke.FocalPointPicker,{label:(0,we.__)("Focal point picker"),url:x,value:y,onDragStart:Y,onDrag:Y,onChange:e=>u({focalPoint:e})}),x&&G&&W&&(0,ye.createElement)(ke.TextareaControl,{label:(0,we.__)("Alt text (alternative text)"),value:S,onChange:e=>u({alt:e}),help:(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)(ke.ExternalLink,{href:"https://www.w3.org/WAI/tutorials/images/decision-tree"},(0,we.__)("Describe the purpose of the image")),(0,we.__)("Leave empty if the image is purely decorative."))}),(0,ye.createElement)(ke.PanelRow,null,(0,ye.createElement)(ke.Button,{variant:"secondary",isSmall:!0,className:"block-library-cover__reset-button",onClick:()=>u({url:void 0,id:void 0,backgroundType:void 0,focalPoint:void 0,hasParallax:void 0,isRepeated:void 0})},(0,we.__)("Clear Media")))),(0,ye.createElement)(Ee.__experimentalPanelColorGradientSettings,{__experimentalHasMultipleOrigins:!0,__experimentalIsRenderedInSidebar:!0,title:(0,we.__)("Overlay"),initialOpen:!0,settings:[{colorValue:c.color,gradientValue:z,onColorChange:m,onGradientChange:P,label:(0,we.__)("Color")}]},(0,ye.createElement)(ke.RangeControl,{label:(0,we.__)("Opacity"),value:b,onChange:e=>u({dimRatio:e}),min:0,max:100,step:10,required:!0}))),(0,ye.createElement)(Ee.InspectorControls,{__experimentalGroup:"dimensions"},(0,ye.createElement)(ke.__experimentalToolsPanelItem,{hasValue:()=>!!w,label:(0,we.__)("Minimum height"),onDeselect:()=>u({minHeight:void 0,minHeightUnit:void 0}),resetAllFilter:()=>({minHeight:void 0,minHeightUnit:void 0}),isShownByDefault:!0,panelId:a},(0,ye.createElement)(Lo,{value:O||w,unit:E,onChange:e=>u({minHeight:e}),onUnitChange:e=>u({minHeightUnit:e})})))),te=(0,ye.useRef)(),ne=(0,Ee.useBlockProps)({ref:te}),oe=function(e){return[["core/paragraph",{align:"center",placeholder:(0,we.__)("Write title"),...e}]]}({fontSize:!(null===(t=(0,Ee.useSetting)("typography.fontSizes"))||void 0===t||!t.length)?"large":void 0}),re=(0,Ee.useInnerBlocksProps)({className:"wp-block-cover__inner-container"},{template:oe,templateInsertUpdatesSelection:!0,allowedBlocks:B,templateLock:T});if(!X&&!Q)return(0,ye.createElement)(ye.Fragment,null,ee,(0,ye.createElement)("div",gt({},ne,{className:nt()("is-placeholder",ne.className)}),(0,ye.createElement)(Fo,{noticeUI:i,onSelectMedia:I,noticeOperations:s,style:{minHeight:O||$||void 0}},(0,ye.createElement)("div",{className:"wp-block-cover__placeholder-background-options"},(0,ye.createElement)(Ee.ColorPalette,{disableCustomColors:!0,value:c.color,onChange:m,clearable:!1}))),(0,ye.createElement)(Ho,{className:"block-library-cover__resize-container",onResizeStart:()=>{u({minHeightUnit:"px"}),d(!1)},onResize:q,onResizeStop:e=>{d(!0),u({minHeight:e}),q(null)},showHandle:l})));const ae=nt()({"is-dark-theme":_,"is-light":!_,"is-transient":M,"has-parallax":f,"is-repeated":k,"has-custom-content-position":!On(g)},qn(g));return(0,ye.createElement)(ye.Fragment,null,ee,(0,ye.createElement)("div",gt({},ne,{className:nt()(ae,ne.className),style:{...j,...ne.style},"data-url":x}),(0,ye.createElement)(Mo,{values:null==C||null===(n=C.spacing)||void 0===n?void 0:n.padding,showValues:null==C||null===(o=C.visualizers)||void 0===o?void 0:o.padding}),(0,ye.createElement)(Ho,{className:"block-library-cover__resize-container",onResizeStart:()=>{u({minHeightUnit:"px"}),d(!1)},onResize:q,onResizeStop:e=>{d(!0),u({minHeight:e}),q(null)},showHandle:l}),(0,ye.createElement)("span",{"aria-hidden":"true",className:nt()(Un(b),{[c.class]:c.class},"wp-block-cover__gradient-background",N,{"has-background-dim":void 0!==b,"has-background-gradient":z,[N]:!x&&N}),style:{backgroundImage:z,...Z}}),x&&G&&W&&(0,ye.createElement)("img",{ref:F,className:"wp-block-cover__image-background",alt:S,src:x,style:K}),x&&U&&(0,ye.createElement)("video",{ref:F,className:"wp-block-cover__video-background",autoPlay:!0,muted:!0,loop:!0,src:x,style:K}),M&&(0,ye.createElement)(ke.Spinner,null),(0,ye.createElement)(Fo,{disableMediaButtons:!0,noticeUI:i,onSelectMedia:I,noticeOperations:s}),(0,ye.createElement)("div",re)))}));var Go={from:[{type:"block",blocks:["core/image"],transform:e=>{var t;let{caption:n,url:o,alt:r,align:a,id:l,anchor:i,style:s}=e;return(0,be.createBlock)("core/cover",{dimRatio:50,url:o,alt:r,align:a,id:l,anchor:i,style:{color:{duotone:null==s||null===(t=s.color)||void 0===t?void 0:t.duotone}}},[(0,be.createBlock)("core/paragraph",{content:n,fontSize:"large"})])}},{type:"block",blocks:["core/video"],transform:e=>{let{caption:t,src:n,align:o,id:r,anchor:a}=e;return(0,be.createBlock)("core/cover",{dimRatio:50,url:n,align:o,id:r,backgroundType:Fn,anchor:a},[(0,be.createBlock)("core/paragraph",{content:t,fontSize:"large"})])}},{type:"block",blocks:["core/group"],isMatch:e=>{var t,n;let{backgroundColor:o,gradient:r,style:a}=e;return o||(null==a||null===(t=a.color)||void 0===t?void 0:t.background)||(null==a||null===(n=a.color)||void 0===n?void 0:n.gradient)||r},transform:(e,t)=>{var n,o;let{align:r,anchor:a,backgroundColor:l,gradient:i,style:s}=e;return(0,be.createBlock)("core/cover",{align:r,anchor:a,overlayColor:l,customOverlayColor:null==s||null===(n=s.color)||void 0===n?void 0:n.background,gradient:i,customGradient:null==s||null===(o=s.color)||void 0===o?void 0:o.gradient},t)}}],to:[{type:"block",blocks:["core/image"],isMatch:e=>{let{backgroundType:t,url:n,overlayColor:o,customOverlayColor:r,gradient:a,customGradient:l}=e;return n?t===An:!(o||r||a||l)},transform:e=>{var t;let{title:n,url:o,alt:r,align:a,id:l,anchor:i,style:s}=e;return(0,be.createBlock)("core/image",{caption:n,url:o,alt:r,align:a,id:l,anchor:i,style:{color:{duotone:null==s||null===(t=s.color)||void 0===t?void 0:t.duotone}}})}},{type:"block",blocks:["core/video"],isMatch:e=>{let{backgroundType:t,url:n,overlayColor:o,customOverlayColor:r,gradient:a,customGradient:l}=e;return n?t===Fn:!(o||r||a||l)},transform:e=>{let{title:t,url:n,align:o,id:r,anchor:a}=e;return(0,be.createBlock)("core/video",{caption:t,src:n,id:r,align:o,anchor:a})}}]};const Uo={apiVersion:2,name:"core/cover",title:"Cover",category:"media",description:"Add an image or video with a text overlay great for headers.",textdomain:"default",attributes:{url:{type:"string"},id:{type:"number"},alt:{type:"string",source:"attribute",selector:"img",attribute:"alt",default:""},hasParallax:{type:"boolean",default:!1},isRepeated:{type:"boolean",default:!1},dimRatio:{type:"number",default:100},overlayColor:{type:"string"},customOverlayColor:{type:"string"},backgroundType:{type:"string",default:"image"},focalPoint:{type:"object"},minHeight:{type:"number"},minHeightUnit:{type:"string"},gradient:{type:"string"},customGradient:{type:"string"},contentPosition:{type:"string"},isDark:{type:"boolean",default:!0},allowedBlocks:{type:"array"},templateLock:{type:["string","boolean"],enum:["all","insert",!1]}},supports:{anchor:!0,align:!0,html:!1,spacing:{padding:!0,__experimentalDefaultControls:{padding:!0}},color:{__experimentalDuotone:"> .wp-block-cover__image-background, > .wp-block-cover__video-background",text:!1,background:!1}},editorStyle:"wp-block-cover-editor",style:"wp-block-cover"},{name:Oo}=Uo,qo={icon:Vn,example:{attributes:{customOverlayColor:"#065174",dimRatio:40,url:"https://s.w.org/images/core/5.3/Windbuchencom.jpg"},innerBlocks:[{name:"core/paragraph",attributes:{customFontSize:48,content:(0,we.__)("<strong>Snow Patrol</strong>"),align:"center"}}]},transforms:Go,save:function(e){let{attributes:t}=e;const{backgroundType:n,gradient:o,contentPosition:r,customGradient:a,customOverlayColor:l,dimRatio:i,focalPoint:s,hasParallax:c,isDark:u,isRepeated:m,overlayColor:d,url:p,alt:g,id:h,minHeight:v,minHeightUnit:b}=t,y=(0,Ee.getColorClassName)("background-color",d),f=(0,Ee.__experimentalGetGradientClass)(o),_=b?`${v}${b}`:v,k=An===n,w=Fn===n,E=!(c||m),C={...k&&!E?Dn(p):{},minHeight:_||void 0},x={backgroundColor:y?void 0:l,background:a||void 0},S=s&&E?`${Math.round(100*s.x)}% ${Math.round(100*s.y)}%`:void 0,B=nt()({"is-light":!u,"has-parallax":c,"is-repeated":m,"has-custom-content-position":!On(r)},qn(r));return(0,ye.createElement)("div",Ee.useBlockProps.save({className:B,style:C}),(0,ye.createElement)("span",{"aria-hidden":"true",className:nt()(y,Un(i),"wp-block-cover__gradient-background",f,{"has-background-dim":void 0!==i,"has-background-gradient":o||a,[f]:!p&&f}),style:x}),k&&E&&p&&(0,ye.createElement)("img",{className:nt()("wp-block-cover__image-background",h?`wp-image-${h}`:null),alt:g,src:p,style:{objectPosition:S},"data-object-fit":"cover","data-object-position":S}),w&&p&&(0,ye.createElement)("video",{className:nt()("wp-block-cover__video-background","intrinsic-ignore"),autoPlay:!0,muted:!0,loop:!0,playsInline:!0,src:p,style:{objectPosition:S},"data-object-fit":"cover","data-object-position":S}),(0,ye.createElement)("div",Ee.useInnerBlocksProps.save({className:"wp-block-cover__inner-container"})))},edit:Do,deprecated:to};var $o=(0,ye.createElement)(fe.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,ye.createElement)(fe.Path,{d:"M20.1 5.1L16.9 2 6.2 12.7l-1.3 4.4 4.5-1.3L20.1 5.1zM4 20.8h8v-1.5H4v1.5z"}));function Wo(e){return e?(0,we.__)("This embed will preserve its aspect ratio when the browser is resized."):(0,we.__)("This embed may not preserve its aspect ratio when the browser is resized.")}var jo=e=>{let{blockSupportsResponsive:t,showEditButton:n,themeSupportsResponsive:o,allowResponsive:r,toggleResponsive:a,switchBackToURLInput:l}=e;return(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)(Ee.BlockControls,null,(0,ye.createElement)(ke.ToolbarGroup,null,n&&(0,ye.createElement)(ke.ToolbarButton,{className:"components-toolbar__control",label:(0,we.__)("Edit URL"),icon:$o,onClick:l}))),o&&t&&(0,ye.createElement)(Ee.InspectorControls,null,(0,ye.createElement)(ke.PanelBody,{title:(0,we.__)("Media settings"),className:"blocks-responsive"},(0,ye.createElement)(ke.ToggleControl,{label:(0,we.__)("Resize for smaller devices"),checked:r,help:Wo,onChange:a}))))};const Zo=(0,ye.createElement)(ke.SVG,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,ye.createElement)(ke.Path,{d:"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm.5 16c0 .3-.2.5-.5.5H5c-.3 0-.5-.2-.5-.5V9.8l4.7-5.3H19c.3 0 .5.2.5.5v14zm-6-9.5L16 12l-2.5 2.8 1.1 1L18 12l-3.5-3.5-1 1zm-3 0l-1-1L6 12l3.5 3.8 1.1-1L8 12l2.5-2.5z"})),Ko=(0,ye.createElement)(ke.SVG,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,ye.createElement)(ke.Path,{d:"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm.5 16c0 .3-.2.5-.5.5H5c-.3 0-.5-.2-.5-.5V9.8l4.7-5.3H19c.3 0 .5.2.5.5v14zM13.2 7.7c-.4.4-.7 1.1-.7 1.9v3.7c-.4-.3-.8-.4-1.3-.4-1.2 0-2.2 1-2.2 2.2 0 1.2 1 2.2 2.2 2.2.5 0 1-.2 1.4-.5.9-.6 1.4-1.6 1.4-2.6V9.6c0-.4.1-.6.2-.8.3-.3 1-.3 1.6-.3h.2V7h-.2c-.7 0-1.8 0-2.6.7z"})),Qo=(0,ye.createElement)(ke.SVG,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,ye.createElement)(ke.Path,{d:"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9.2 4.5H19c.3 0 .5.2.5.5v8.4l-3-2.9c-.3-.3-.8-.3-1 0L11.9 14 9 12c-.3-.2-.6-.2-.8 0l-3.6 2.6V9.8l4.6-5.3zm9.8 15H5c-.3 0-.5-.2-.5-.5v-2.4l4.1-3 3 1.9c.3.2.7.2.9-.1L16 12l3.5 3.4V19c0 .3-.2.5-.5.5z"})),Jo=(0,ye.createElement)(ke.SVG,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,ye.createElement)(ke.Path,{d:"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm.5 16c0 .3-.2.5-.5.5H5c-.3 0-.5-.2-.5-.5V9.8l4.7-5.3H19c.3 0 .5.2.5.5v14zM10 15l5-3-5-3v6z"})),Yo={foreground:"#1da1f2",src:(0,ye.createElement)(ke.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,ye.createElement)(ke.G,null,(0,ye.createElement)(ke.Path,{d:"M22.23 5.924c-.736.326-1.527.547-2.357.646.847-.508 1.498-1.312 1.804-2.27-.793.47-1.67.812-2.606.996C18.325 4.498 17.258 4 16.078 4c-2.266 0-4.103 1.837-4.103 4.103 0 .322.036.635.106.935-3.41-.17-6.433-1.804-8.457-4.287-.353.607-.556 1.312-.556 2.064 0 1.424.724 2.68 1.825 3.415-.673-.022-1.305-.207-1.86-.514v.052c0 1.988 1.415 3.647 3.293 4.023-.344.095-.707.145-1.08.145-.265 0-.522-.026-.773-.074.522 1.63 2.038 2.817 3.833 2.85-1.404 1.1-3.174 1.757-5.096 1.757-.332 0-.66-.02-.98-.057 1.816 1.164 3.973 1.843 6.29 1.843 7.547 0 11.675-6.252 11.675-11.675 0-.178-.004-.355-.012-.53.802-.578 1.497-1.3 2.047-2.124z"})))},Xo={foreground:"#ff0000",src:(0,ye.createElement)(ke.SVG,{viewBox:"0 0 24 24"},(0,ye.createElement)(ke.Path,{d:"M21.8 8s-.195-1.377-.795-1.984c-.76-.797-1.613-.8-2.004-.847-2.798-.203-6.996-.203-6.996-.203h-.01s-4.197 0-6.996.202c-.39.046-1.242.05-2.003.846C2.395 6.623 2.2 8 2.2 8S2 9.62 2 11.24v1.517c0 1.618.2 3.237.2 3.237s.195 1.378.795 1.985c.76.797 1.76.77 2.205.855 1.6.153 6.8.2 6.8.2s4.203-.005 7-.208c.392-.047 1.244-.05 2.005-.847.6-.607.795-1.985.795-1.985s.2-1.618.2-3.237v-1.517C22 9.62 21.8 8 21.8 8zM9.935 14.595v-5.62l5.403 2.82-5.403 2.8z"}))},er={foreground:"#3b5998",src:(0,ye.createElement)(ke.SVG,{viewBox:"0 0 24 24"},(0,ye.createElement)(ke.Path,{d:"M20 3H4c-.6 0-1 .4-1 1v16c0 .5.4 1 1 1h8.6v-7h-2.3v-2.7h2.3v-2c0-2.3 1.4-3.6 3.5-3.6 1 0 1.8.1 2.1.1v2.4h-1.4c-1.1 0-1.3.5-1.3 1.3v1.7h2.7l-.4 2.8h-2.3v7H20c.5 0 1-.4 1-1V4c0-.6-.4-1-1-1z"}))},tr=(0,ye.createElement)(ke.SVG,{viewBox:"0 0 24 24"},(0,ye.createElement)(ke.G,null,(0,ye.createElement)(ke.Path,{d:"M12 4.622c2.403 0 2.688.01 3.637.052.877.04 1.354.187 1.67.31.42.163.72.358 1.036.673.315.315.51.615.673 1.035.123.317.27.794.31 1.67.043.95.052 1.235.052 3.638s-.01 2.688-.052 3.637c-.04.877-.187 1.354-.31 1.67-.163.42-.358.72-.673 1.036-.315.315-.615.51-1.035.673-.317.123-.794.27-1.67.31-.95.043-1.234.052-3.638.052s-2.688-.01-3.637-.052c-.877-.04-1.354-.187-1.67-.31-.42-.163-.72-.358-1.036-.673-.315-.315-.51-.615-.673-1.035-.123-.317-.27-.794-.31-1.67-.043-.95-.052-1.235-.052-3.638s.01-2.688.052-3.637c.04-.877.187-1.354.31-1.67.163-.42.358-.72.673-1.036.315-.315.615-.51 1.035-.673.317-.123.794-.27 1.67-.31.95-.043 1.235-.052 3.638-.052M12 3c-2.444 0-2.75.01-3.71.054s-1.613.196-2.185.418c-.592.23-1.094.538-1.594 1.04-.5.5-.807 1-1.037 1.593-.223.572-.375 1.226-.42 2.184C3.01 9.25 3 9.555 3 12s.01 2.75.054 3.71.196 1.613.418 2.186c.23.592.538 1.094 1.038 1.594s1.002.808 1.594 1.038c.572.222 1.227.375 2.185.418.96.044 1.266.054 3.71.054s2.75-.01 3.71-.054 1.613-.196 2.186-.418c.592-.23 1.094-.538 1.594-1.038s.808-1.002 1.038-1.594c.222-.572.375-1.227.418-2.185.044-.96.054-1.266.054-3.71s-.01-2.75-.054-3.71-.196-1.613-.418-2.186c-.23-.592-.538-1.094-1.038-1.594s-1.002-.808-1.594-1.038c-.572-.222-1.227-.375-2.185-.418C14.75 3.01 14.445 3 12 3zm0 4.378c-2.552 0-4.622 2.07-4.622 4.622s2.07 4.622 4.622 4.622 4.622-2.07 4.622-4.622S14.552 7.378 12 7.378zM12 15c-1.657 0-3-1.343-3-3s1.343-3 3-3 3 1.343 3 3-1.343 3-3 3zm4.804-8.884c-.596 0-1.08.484-1.08 1.08s.484 1.08 1.08 1.08c.596 0 1.08-.484 1.08-1.08s-.483-1.08-1.08-1.08z"}))),nr={foreground:"#0073AA",src:(0,ye.createElement)(ke.SVG,{viewBox:"0 0 24 24"},(0,ye.createElement)(ke.G,null,(0,ye.createElement)(ke.Path,{d:"M12.158 12.786l-2.698 7.84c.806.236 1.657.365 2.54.365 1.047 0 2.05-.18 2.986-.51-.024-.037-.046-.078-.065-.123l-2.762-7.57zM3.008 12c0 3.56 2.07 6.634 5.068 8.092L3.788 8.342c-.5 1.117-.78 2.354-.78 3.658zm15.06-.454c0-1.112-.398-1.88-.74-2.48-.456-.74-.883-1.368-.883-2.11 0-.825.627-1.595 1.51-1.595.04 0 .078.006.116.008-1.598-1.464-3.73-2.36-6.07-2.36-3.14 0-5.904 1.613-7.512 4.053.21.008.41.012.58.012.94 0 2.395-.114 2.395-.114.484-.028.54.684.057.74 0 0-.487.058-1.03.086l3.275 9.74 1.968-5.902-1.4-3.838c-.485-.028-.944-.085-.944-.085-.486-.03-.43-.77.056-.742 0 0 1.484.114 2.368.114.94 0 2.397-.114 2.397-.114.486-.028.543.684.058.74 0 0-.488.058-1.03.086l3.25 9.665.897-2.997c.456-1.17.684-2.137.684-2.907zm1.82-3.86c.04.286.06.593.06.924 0 .912-.17 1.938-.683 3.22l-2.746 7.94c2.672-1.558 4.47-4.454 4.47-7.77 0-1.564-.4-3.033-1.1-4.314zM12 22C6.486 22 2 17.514 2 12S6.486 2 12 2s10 4.486 10 10-4.486 10-10 10z"})))},or={foreground:"#1db954",src:(0,ye.createElement)(ke.SVG,{viewBox:"0 0 24 24"},(0,ye.createElement)(ke.Path,{d:"M12 2C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10S17.523 2 12 2m4.586 14.424c-.18.295-.563.387-.857.207-2.35-1.434-5.305-1.76-8.786-.963-.335.077-.67-.133-.746-.47-.077-.334.132-.67.47-.745 3.808-.87 7.076-.496 9.712 1.115.293.18.386.563.206.857M17.81 13.7c-.226.367-.706.482-1.072.257-2.687-1.652-6.785-2.13-9.965-1.166-.413.127-.848-.106-.973-.517-.125-.413.108-.848.52-.973 3.632-1.102 8.147-.568 11.234 1.328.366.226.48.707.256 1.072m.105-2.835C14.692 8.95 9.375 8.775 6.297 9.71c-.493.15-1.016-.13-1.166-.624-.148-.495.13-1.017.625-1.167 3.532-1.073 9.404-.866 13.115 1.337.445.264.59.838.327 1.282-.264.443-.838.59-1.282.325"}))},rr=(0,ye.createElement)(ke.SVG,{viewBox:"0 0 24 24"},(0,ye.createElement)(ke.Path,{d:"m6.5 7c-2.75 0-5 2.25-5 5s2.25 5 5 5 5-2.25 5-5-2.25-5-5-5zm11 0c-2.75 0-5 2.25-5 5s2.25 5 5 5 5-2.25 5-5-2.25-5-5-5z"})),ar={foreground:"#1ab7ea",src:(0,ye.createElement)(ke.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,ye.createElement)(ke.G,null,(0,ye.createElement)(ke.Path,{d:"M22.396 7.164c-.093 2.026-1.507 4.8-4.245 8.32C15.323 19.16 12.93 21 10.97 21c-1.214 0-2.24-1.12-3.08-3.36-.56-2.052-1.118-4.105-1.68-6.158-.622-2.24-1.29-3.36-2.004-3.36-.156 0-.7.328-1.634.98l-.978-1.26c1.027-.903 2.04-1.806 3.037-2.71C6 3.95 7.03 3.328 7.716 3.265c1.62-.156 2.616.95 2.99 3.32.404 2.558.685 4.148.84 4.77.468 2.12.982 3.18 1.543 3.18.435 0 1.09-.687 1.963-2.064.872-1.376 1.34-2.422 1.402-3.142.125-1.187-.343-1.782-1.4-1.782-.5 0-1.013.115-1.542.34 1.023-3.35 2.977-4.976 5.862-4.883 2.14.063 3.148 1.45 3.024 4.16z"})))},lr=(0,ye.createElement)(ke.SVG,{viewBox:"0 0 24 24"},(0,ye.createElement)(ke.Path,{d:"M22 11.816c0-1.256-1.02-2.277-2.277-2.277-.593 0-1.122.24-1.526.613-1.48-.965-3.455-1.594-5.647-1.69l1.17-3.702 3.18.75c.01 1.027.847 1.86 1.877 1.86 1.035 0 1.877-.84 1.877-1.877 0-1.035-.842-1.877-1.877-1.877-.77 0-1.43.466-1.72 1.13L13.55 3.92c-.204-.047-.4.067-.46.26l-1.35 4.27c-2.317.037-4.412.67-5.97 1.67-.402-.355-.917-.58-1.493-.58C3.02 9.54 2 10.56 2 11.815c0 .814.433 1.523 1.078 1.925-.037.222-.06.445-.06.673 0 3.292 4.01 5.97 8.94 5.97s8.94-2.678 8.94-5.97c0-.214-.02-.424-.052-.632.687-.39 1.154-1.12 1.154-1.964zm-3.224-7.422c.606 0 1.1.493 1.1 1.1s-.493 1.1-1.1 1.1-1.1-.494-1.1-1.1.493-1.1 1.1-1.1zm-16 7.422c0-.827.673-1.5 1.5-1.5.313 0 .598.103.838.27-.85.675-1.477 1.478-1.812 2.36-.32-.274-.525-.676-.525-1.13zm9.183 7.79c-4.502 0-8.165-2.33-8.165-5.193S7.457 9.22 11.96 9.22s8.163 2.33 8.163 5.193-3.663 5.193-8.164 5.193zM20.635 13c-.326-.89-.948-1.7-1.797-2.383.247-.186.55-.3.882-.3.827 0 1.5.672 1.5 1.5 0 .482-.23.91-.586 1.184zm-11.64 1.704c-.76 0-1.397-.616-1.397-1.376 0-.76.636-1.397 1.396-1.397.76 0 1.376.638 1.376 1.398 0 .76-.616 1.376-1.376 1.376zm7.405-1.376c0 .76-.615 1.376-1.375 1.376s-1.4-.616-1.4-1.376c0-.76.64-1.397 1.4-1.397.76 0 1.376.638 1.376 1.398zm-1.17 3.38c.15.152.15.398 0 .55-.675.674-1.728 1.002-3.22 1.002l-.01-.002-.012.002c-1.492 0-2.544-.328-3.218-1.002-.152-.152-.152-.398 0-.55.152-.152.4-.15.55 0 .52.52 1.394.775 2.67.775l.01.002.01-.002c1.276 0 2.15-.253 2.67-.775.15-.152.398-.152.55 0z"})),ir={foreground:"#35465c",src:(0,ye.createElement)(ke.SVG,{viewBox:"0 0 24 24"},(0,ye.createElement)(ke.Path,{d:"M19 3H5a2 2 0 00-2 2v14c0 1.1.9 2 2 2h14a2 2 0 002-2V5a2 2 0 00-2-2zm-5.69 14.66c-2.72 0-3.1-1.9-3.1-3.16v-3.56H8.49V8.99c1.7-.62 2.54-1.99 2.64-2.87 0-.06.06-.41.06-.58h1.9v3.1h2.17v2.3h-2.18v3.1c0 .47.13 1.3 1.2 1.26h1.1v2.36c-1.01.02-2.07 0-2.07 0z"}))},sr=(0,ye.createElement)(ke.SVG,{viewBox:"0 0 24 24"},(0,ye.createElement)(ke.Path,{d:"M18.42 14.58c-.51-.66-1.05-1.23-1.05-2.5V7.87c0-1.8.15-3.45-1.2-4.68-1.05-1.02-2.79-1.35-4.14-1.35-2.6 0-5.52.96-6.12 4.14-.06.36.18.54.4.57l2.66.3c.24-.03.42-.27.48-.5.24-1.12 1.17-1.63 2.2-1.63.56 0 1.22.21 1.55.7.4.56.33 1.31.33 1.97v.36c-1.59.18-3.66.27-5.16.93a4.63 4.63 0 0 0-2.93 4.44c0 2.82 1.8 4.23 4.1 4.23 1.95 0 3.03-.45 4.53-1.98.51.72.66 1.08 1.59 1.83.18.09.45.09.63-.1v.04l2.1-1.8c.24-.21.2-.48.03-.75zm-5.4-1.2c-.45.75-1.14 1.23-1.92 1.23-1.05 0-1.65-.81-1.65-1.98 0-2.31 2.1-2.73 4.08-2.73v.6c0 1.05.03 1.92-.5 2.88z"}),(0,ye.createElement)(ke.Path,{d:"M21.69 19.2a17.62 17.62 0 0 1-21.6-1.57c-.23-.2 0-.5.28-.33a23.88 23.88 0 0 0 20.93 1.3c.45-.19.84.3.39.6z"}),(0,ye.createElement)(ke.Path,{d:"M22.8 17.96c-.36-.45-2.22-.2-3.1-.12-.23.03-.3-.18-.05-.36 1.5-1.05 3.96-.75 4.26-.39.3.36-.1 2.82-1.5 4.02-.21.18-.42.1-.3-.15.3-.8 1.02-2.58.69-3z"})),cr=(0,ye.createElement)(ke.SVG,{viewBox:"0 0 24 24"},(0,ye.createElement)(ke.Path,{d:"m.0206909 21 19.8160091-13.07806 3.5831 6.20826z",fill:"#4bc7ee"}),(0,ye.createElement)(ke.Path,{d:"m23.7254 19.0205-10.1074-17.18468c-.6421-1.114428-1.7087-1.114428-2.3249 0l-11.2931 19.16418h22.5655c1.279 0 1.8019-.8905 1.1599-1.9795z",fill:"#d4cdcb"}),(0,ye.createElement)(ke.Path,{d:"m.0206909 21 15.2439091-16.38571 4.3029 7.32271z",fill:"#c3d82e"}),(0,ye.createElement)(ke.Path,{d:"m13.618 1.83582c-.6421-1.114428-1.7087-1.114428-2.3249 0l-11.2931 19.16418 15.2646-16.38573z",fill:"#e4ecb0"}),(0,ye.createElement)(ke.Path,{d:"m.0206909 21 19.5468091-9.063 1.6621 2.8344z",fill:"#209dbd"}),(0,ye.createElement)(ke.Path,{d:"m.0206909 21 17.9209091-11.82623 1.6259 2.76323z",fill:"#7cb3c9"})),ur=(0,ye.createElement)(ke.SVG,{viewBox:"0 0 24 24"},(0,ye.createElement)(ke.Path,{d:"m12.1479 18.5957c-2.4949 0-4.28131-1.7558-4.28131-4.0658 0-2.2176 1.78641-4.0965 4.09651-4.0965 2.2793 0 4.0349 1.7864 4.0349 4.1581 0 2.2794-1.7556 4.0042-3.8501 4.0042zm8.3521-18.5957-4.5329 1v7c-1.1088-1.41691-2.8028-1.8787-4.8049-1.8787-2.09443 0-3.97329.76993-5.5133 2.27917-1.72483 1.66323-2.6489 3.78863-2.6489 6.16033 0 2.5873.98562 4.8049 2.89526 6.499 1.44763 1.2936 3.17251 1.9402 5.17454 1.9402 1.9713 0 3.4498-.5236 4.8973-1.9402v1.9402h4.5329c0-7.6359 0-15.3641 0-23z",fill:"#333436"})),mr=(0,ye.createElement)(ke.SVG,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1"},(0,ye.createElement)(ke.Path,{d:"M12.289,2C6.617,2,3.606,5.648,3.606,9.622c0,1.846,1.025,4.146,2.666,4.878c0.25,0.111,0.381,0.063,0.439-0.169 c0.044-0.175,0.267-1.029,0.365-1.428c0.032-0.128,0.017-0.237-0.091-0.362C6.445,11.911,6.01,10.75,6.01,9.668 c0-2.777,2.194-5.464,5.933-5.464c3.23,0,5.49,2.108,5.49,5.122c0,3.407-1.794,5.768-4.13,5.768c-1.291,0-2.257-1.021-1.948-2.277 c0.372-1.495,1.089-3.112,1.089-4.191c0-0.967-0.542-1.775-1.663-1.775c-1.319,0-2.379,1.309-2.379,3.059 c0,1.115,0.394,1.869,0.394,1.869s-1.302,5.279-1.54,6.261c-0.405,1.666,0.053,4.368,0.094,4.604 c0.021,0.126,0.167,0.169,0.25,0.063c0.129-0.165,1.699-2.419,2.142-4.051c0.158-0.59,0.817-2.995,0.817-2.995 c0.43,0.784,1.681,1.446,3.013,1.446c3.963,0,6.822-3.494,6.822-7.833C20.394,5.112,16.849,2,12.289,2"})),dr=(0,ye.createElement)(ke.SVG,{viewBox:"0 0 44 44"},(0,ye.createElement)(ke.Path,{d:"M32.59521,22.001l4.31885-4.84473-6.34131-1.38379.646-6.459-5.94336,2.61035L22,6.31934l-3.27344,5.60351L12.78418,9.3125l.645,6.458L7.08643,17.15234,11.40479,21.999,7.08594,26.84375l6.34131,1.38379-.64551,6.458,5.94287-2.60938L22,37.68066l3.27344-5.60351,5.94287,2.61035-.64551-6.458,6.34277-1.38183Zm.44385,2.75244L30.772,23.97827l-1.59558-2.07391,1.97888.735Zm-8.82147,6.1579L22.75,33.424V30.88977l1.52228-2.22168ZM18.56226,13.48816,19.819,15.09534l-2.49219-.88642L15.94037,12.337Zm6.87719.00116,2.62043-1.15027-1.38654,1.86981L24.183,15.0946Zm3.59357,2.6029-1.22546,1.7381.07525-2.73486,1.44507-1.94867ZM22,29.33008l-2.16406-3.15686L22,23.23688l2.16406,2.93634Zm-4.25458-9.582-.10528-3.836,3.60986,1.284v3.73242Zm5.00458-2.552,3.60986-1.284-.10528,3.836L22.75,20.92853Zm-7.78174-1.10559-.29352-2.94263,1.44245,1.94739.07519,2.73321Zm2.30982,5.08319,3.50817,1.18164-2.16247,2.9342-3.678-1.08447Zm2.4486,7.49285L21.25,30.88977v2.53485L19.78052,30.91Zm3.48707-6.31121,3.50817-1.18164,2.33228,3.03137-3.678,1.08447Zm10.87219-4.28113-2.714,3.04529L28.16418,19.928l1.92176-2.72565ZM24.06036,12.81769l-2.06012,2.6322-2.059-2.63318L22,9.292ZM9.91455,18.07227l4.00079-.87195,1.921,2.72735-3.20794,1.19019Zm2.93024,4.565,1.9801-.73462L13.228,23.97827l-2.26838.77429Zm-1.55591,3.58819L13.701,25.4021l2.64935.78058-2.14447.67853Zm3.64868,1.977L18.19,27.17334l.08313,3.46332L14.52979,32.2793Zm10.7876,2.43549.08447-3.464,3.25165,1.03052.407,4.07684Zm4.06824-3.77478-2.14545-.68,2.65063-.781,2.41266.825Z"}));var pr=()=>(0,ye.createElement)("div",{className:"wp-block-embed is-loading"},(0,ye.createElement)(ke.Spinner,null),(0,ye.createElement)("p",null,(0,we.__)("Embedding")));var gr=e=>{let{icon:t,label:n,value:o,onSubmit:r,onChange:a,cannotEmbed:l,fallback:i,tryAgain:s}=e;return(0,ye.createElement)(ke.Placeholder,{icon:(0,ye.createElement)(Ee.BlockIcon,{icon:t,showColors:!0}),label:n,className:"wp-block-embed",instructions:(0,we.__)("Paste a link to the content you want to display on your site.")},(0,ye.createElement)("form",{onSubmit:r},(0,ye.createElement)("input",{type:"url",value:o||"",className:"components-placeholder__input","aria-label":n,placeholder:(0,we.__)("Enter URL to embed here"),onChange:a}),(0,ye.createElement)(ke.Button,{variant:"primary",type:"submit"},(0,we._x)("Embed","button label"))),(0,ye.createElement)("div",{className:"components-placeholder__learn-more"},(0,ye.createElement)(ke.ExternalLink,{href:(0,we.__)("https://wordpress.org/support/article/embeds/")},(0,we.__)("Learn more about embeds"))),l&&(0,ye.createElement)("div",{className:"components-placeholder__error"},(0,ye.createElement)("div",{className:"components-placeholder__instructions"},(0,we.__)("Sorry, this content could not be embedded.")),(0,ye.createElement)(ke.Button,{variant:"secondary",onClick:s},(0,we._x)("Try again","button label"))," ",(0,ye.createElement)(ke.Button,{variant:"secondary",onClick:i},(0,we._x)("Convert to link","button label"))))};const hr={class:"className",frameborder:"frameBorder",marginheight:"marginHeight",marginwidth:"marginWidth"};function vr(e){let{html:t}=e;const n=(0,ye.useRef)(),o=(0,ye.useMemo)((()=>{const e=(new window.DOMParser).parseFromString(t,"text/html").querySelector("iframe"),n={};return e?(Array.from(e.attributes).forEach((e=>{let{name:t,value:o}=e;"style"!==t&&(n[hr[t]||t]=o)})),n):n}),[t]);return(0,ye.useEffect)((()=>{const{ownerDocument:e}=n.current,{defaultView:t}=e;function r(e){let{data:{secret:t,message:r,value:a}={}}=e;"height"===r&&t===o["data-secret"]&&(n.current.height=a)}return t.addEventListener("message",r),()=>{t.removeEventListener("message",r)}}),[]),(0,ye.createElement)("div",{className:"wp-block-embed__wrapper"},(0,ye.createElement)("iframe",gt({ref:(0,ot.useMergeRefs)([n,(0,ot.useFocusableIframe)()]),title:o.title},o)))}class br extends ye.Component{constructor(){super(...arguments),this.hideOverlay=this.hideOverlay.bind(this),this.state={interactive:!1}}static getDerivedStateFromProps(e,t){return!e.isSelected&&t.interactive?{interactive:!1}:null}hideOverlay(){this.setState({interactive:!0})}render(){const{preview:e,previewable:t,url:n,type:o,caption:r,onCaptionChange:a,isSelected:l,className:i,icon:s,label:c,insertBlocksAfter:u}=this.props,{scripts:m}=e,{interactive:d}=this.state,p="photo"===o?(e=>{const t=e.thumbnail_url||e.url,n=(0,ye.createElement)("p",null,(0,ye.createElement)("img",{src:t,alt:e.title,width:"100%"}));return(0,ye.renderToString)(n)})(e):e.html,g=new URL(n).host.split("."),h=g.splice(g.length-2,g.length-1).join("."),v=(0,we.sprintf)((0,we.__)("Embedded content from %s"),h),b=He()(o,i,"wp-block-embed__wrapper"),y="wp-embed"===o?(0,ye.createElement)(vr,{html:p}):(0,ye.createElement)("div",{className:"wp-block-embed__wrapper"},(0,ye.createElement)(ke.SandBox,{html:p,scripts:m,title:v,type:b,onFocus:this.hideOverlay}),!d&&(0,ye.createElement)("div",{className:"block-library-embed__interactive-overlay",onMouseUp:this.hideOverlay}));return(0,ye.createElement)("figure",{className:He()(i,"wp-block-embed",{"is-type-video":"video"===o})},t?y:(0,ye.createElement)(ke.Placeholder,{icon:(0,ye.createElement)(Ee.BlockIcon,{icon:s,showColors:!0}),label:c},(0,ye.createElement)("p",{className:"components-placeholder__error"},(0,ye.createElement)("a",{href:n},n)),(0,ye.createElement)("p",{className:"components-placeholder__error"},(0,we.sprintf)((0,we.__)("Embedded content from %s can't be previewed in the editor."),h))),(!Ee.RichText.isEmpty(r)||l)&&(0,ye.createElement)(Ee.RichText,{tagName:"figcaption",placeholder:(0,we.__)("Add caption"),value:r,onChange:a,inlineToolbar:!0,__unstableOnSplitAtEnd:()=>u((0,be.createBlock)("core/paragraph"))}))}}var yr=br;var fr=e=>{const{attributes:{providerNameSlug:t,previewable:n,responsive:o,url:r},attributes:a,isSelected:l,onReplace:i,setAttributes:s,insertBlocksAfter:c,onFocus:u}=e,m={title:(0,we._x)("Embed","block title"),icon:Zo},{icon:d,title:p}=(g=t,(null===(h=(0,be.getBlockVariations)(De))||void 0===h?void 0:h.find((e=>{let{name:t}=e;return t===g})))||m);var g,h;const[v,b]=(0,ye.useState)(r),[y,f]=(0,ye.useState)(!1),{invalidateResolution:_}=(0,Ie.useDispatch)(Dt.store),{preview:k,fetching:w,themeSupportsResponsive:E,cannotEmbed:C}=(0,Ie.useSelect)((e=>{var t;const{getEmbedPreview:n,isPreviewEmbedFallback:o,isRequestingEmbedPreview:a,getThemeSupports:l}=e(Dt.store);if(!r)return{fetching:!1,cannotEmbed:!1};const i=n(r),s=o(r),c=!1===(null==i?void 0:i.html)&&void 0===(null==i?void 0:i.type),u=404===(null==i||null===(t=i.data)||void 0===t?void 0:t.status),m=!!i&&!c&&!u;return{preview:m?i:void 0,fetching:a(r),themeSupportsResponsive:l()["responsive-embeds"],cannotEmbed:!m||s}}),[r]),x=()=>{const{allowResponsive:e,className:t}=a;return{...a,...We(k,p,t,o,e)}};(0,ye.useEffect)((()=>{if(null==k||!k.html||!C||w)return;const e=r.replace(/\/$/,"");b(e),f(!1),s({url:e})}),[null==k?void 0:k.html,r]),(0,ye.useEffect)((()=>{if(k&&!y&&(s(x()),i)){const t=Oe(e,x());t&&i(t)}}),[k,y]);const S=(0,Ee.useBlockProps)();if(w)return(0,ye.createElement)(fe.View,S,(0,ye.createElement)(pr,null));const B=(0,we.sprintf)((0,we.__)("%s URL"),p);if(!k||C||y)return(0,ye.createElement)(fe.View,S,(0,ye.createElement)(gr,{icon:d,label:B,onFocus:u,onSubmit:e=>{e&&e.preventDefault(),f(!1),s({url:v})},value:v,cannotEmbed:C,onChange:e=>b(e.target.value),fallback:()=>function(e,t){const n=(0,ye.createElement)("a",{href:e},e);t((0,be.createBlock)("core/paragraph",{content:(0,ye.renderToString)(n)}))}(v,i),tryAgain:()=>{_("getEmbedPreview",[v])}}));const{caption:T,type:N,allowResponsive:z,className:P}=x(),I=nt()(P,e.className);return(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)(jo,{showEditButton:k&&!C,themeSupportsResponsive:E,blockSupportsResponsive:o,allowResponsive:z,toggleResponsive:()=>{const{allowResponsive:e,className:t}=a,{html:n}=k,r=!e;s({allowResponsive:r,className:$e(n,t,o&&r)})},switchBackToURLInput:()=>f(!0)}),(0,ye.createElement)(fe.View,S,(0,ye.createElement)(yr,{preview:k,previewable:n,className:I,url:v,type:N,caption:T,onCaptionChange:e=>s({caption:e}),isSelected:l,icon:d,label:B,insertBlocksAfter:c})))};const{name:_r}={apiVersion:2,name:"core/embed",title:"Embed",category:"embed",description:"Add a block that displays content pulled from other sites, like Twitter or YouTube.",textdomain:"default",attributes:{url:{type:"string"},caption:{type:"string",source:"html",selector:"figcaption"},type:{type:"string"},providerNameSlug:{type:"string"},allowResponsive:{type:"boolean",default:!0},responsive:{type:"boolean",default:!1},previewable:{type:"boolean",default:!0}},supports:{align:!0},editorStyle:"wp-block-embed-editor",style:"wp-block-embed"};var kr={from:[{type:"raw",isMatch:e=>{var t,n;return"P"===e.nodeName&&/^\s*(https?:\/\/\S+)\s*$/i.test(e.textContent)&&1===(null===(t=e.textContent)||void 0===t||null===(n=t.match(/https/gi))||void 0===n?void 0:n.length)},transform:e=>(0,be.createBlock)(_r,{url:e.textContent.trim()})}],to:[{type:"block",blocks:["core/paragraph"],isMatch:e=>{let{url:t}=e;return!!t},transform:e=>{let{url:t,caption:n}=e,o=`<a href="${t}">${t}</a>`;return null!=n&&n.trim()&&(o+=`<br />${n}`),(0,be.createBlock)("core/paragraph",{content:o})}}]};const wr=[{name:"twitter",title:"Twitter",icon:Yo,keywords:["tweet",(0,we.__)("social")],description:(0,we.__)("Embed a tweet."),patterns:[/^https?:\/\/(www\.)?twitter\.com\/.+/i],attributes:{providerNameSlug:"twitter",responsive:!0}},{name:"youtube",title:"YouTube",icon:Xo,keywords:[(0,we.__)("music"),(0,we.__)("video")],description:(0,we.__)("Embed a YouTube video."),patterns:[/^https?:\/\/((m|www)\.)?youtube\.com\/.+/i,/^https?:\/\/youtu\.be\/.+/i],attributes:{providerNameSlug:"youtube",responsive:!0}},{name:"facebook",title:"Facebook",icon:er,keywords:[(0,we.__)("social")],description:(0,we.__)("Embed a Facebook post."),scope:["block"],patterns:[],attributes:{providerNameSlug:"facebook",previewable:!1,responsive:!0}},{name:"instagram",title:"Instagram",icon:tr,keywords:[(0,we.__)("image"),(0,we.__)("social")],description:(0,we.__)("Embed an Instagram post."),scope:["block"],patterns:[],attributes:{providerNameSlug:"instagram",responsive:!0}},{name:"wordpress",title:"WordPress",icon:nr,keywords:[(0,we.__)("post"),(0,we.__)("blog")],description:(0,we.__)("Embed a WordPress post."),attributes:{providerNameSlug:"wordpress"}},{name:"soundcloud",title:"SoundCloud",icon:Ko,keywords:[(0,we.__)("music"),(0,we.__)("audio")],description:(0,we.__)("Embed SoundCloud content."),patterns:[/^https?:\/\/(www\.)?soundcloud\.com\/.+/i],attributes:{providerNameSlug:"soundcloud",responsive:!0}},{name:"spotify",title:"Spotify",icon:or,keywords:[(0,we.__)("music"),(0,we.__)("audio")],description:(0,we.__)("Embed Spotify content."),patterns:[/^https?:\/\/(open|play)\.spotify\.com\/.+/i],attributes:{providerNameSlug:"spotify",responsive:!0}},{name:"flickr",title:"Flickr",icon:rr,keywords:[(0,we.__)("image")],description:(0,we.__)("Embed Flickr content."),patterns:[/^https?:\/\/(www\.)?flickr\.com\/.+/i,/^https?:\/\/flic\.kr\/.+/i],attributes:{providerNameSlug:"flickr",responsive:!0}},{name:"vimeo",title:"Vimeo",icon:ar,keywords:[(0,we.__)("video")],description:(0,we.__)("Embed a Vimeo video."),patterns:[/^https?:\/\/(www\.)?vimeo\.com\/.+/i],attributes:{providerNameSlug:"vimeo",responsive:!0}},{name:"animoto",title:"Animoto",icon:cr,description:(0,we.__)("Embed an Animoto video."),patterns:[/^https?:\/\/(www\.)?(animoto|video214)\.com\/.+/i],attributes:{providerNameSlug:"animoto",responsive:!0}},{name:"cloudup",title:"Cloudup",icon:Zo,description:(0,we.__)("Embed Cloudup content."),patterns:[/^https?:\/\/cloudup\.com\/.+/i],attributes:{providerNameSlug:"cloudup",responsive:!0}},{name:"collegehumor",title:"CollegeHumor",icon:Jo,description:(0,we.__)("Embed CollegeHumor content."),scope:["block"],patterns:[],attributes:{providerNameSlug:"collegehumor",responsive:!0}},{name:"crowdsignal",title:"Crowdsignal",icon:Zo,keywords:["polldaddy",(0,we.__)("survey")],description:(0,we.__)("Embed Crowdsignal (formerly Polldaddy) content."),patterns:[/^https?:\/\/((.+\.)?polldaddy\.com|poll\.fm|.+\.survey\.fm)\/.+/i],attributes:{providerNameSlug:"crowdsignal",responsive:!0}},{name:"dailymotion",title:"Dailymotion",icon:ur,keywords:[(0,we.__)("video")],description:(0,we.__)("Embed a Dailymotion video."),patterns:[/^https?:\/\/(www\.)?dailymotion\.com\/.+/i],attributes:{providerNameSlug:"dailymotion",responsive:!0}},{name:"imgur",title:"Imgur",icon:Qo,description:(0,we.__)("Embed Imgur content."),patterns:[/^https?:\/\/(.+\.)?imgur\.com\/.+/i],attributes:{providerNameSlug:"imgur",responsive:!0}},{name:"issuu",title:"Issuu",icon:Zo,description:(0,we.__)("Embed Issuu content."),patterns:[/^https?:\/\/(www\.)?issuu\.com\/.+/i],attributes:{providerNameSlug:"issuu",responsive:!0}},{name:"kickstarter",title:"Kickstarter",icon:Zo,description:(0,we.__)("Embed Kickstarter content."),patterns:[/^https?:\/\/(www\.)?kickstarter\.com\/.+/i,/^https?:\/\/kck\.st\/.+/i],attributes:{providerNameSlug:"kickstarter",responsive:!0}},{name:"mixcloud",title:"Mixcloud",icon:Ko,keywords:[(0,we.__)("music"),(0,we.__)("audio")],description:(0,we.__)("Embed Mixcloud content."),patterns:[/^https?:\/\/(www\.)?mixcloud\.com\/.+/i],attributes:{providerNameSlug:"mixcloud",responsive:!0}},{name:"reddit",title:"Reddit",icon:lr,description:(0,we.__)("Embed a Reddit thread."),patterns:[/^https?:\/\/(www\.)?reddit\.com\/.+/i],attributes:{providerNameSlug:"reddit",responsive:!0}},{name:"reverbnation",title:"ReverbNation",icon:Ko,description:(0,we.__)("Embed ReverbNation content."),patterns:[/^https?:\/\/(www\.)?reverbnation\.com\/.+/i],attributes:{providerNameSlug:"reverbnation",responsive:!0}},{name:"screencast",title:"Screencast",icon:Jo,description:(0,we.__)("Embed Screencast content."),patterns:[/^https?:\/\/(www\.)?screencast\.com\/.+/i],attributes:{providerNameSlug:"screencast",responsive:!0}},{name:"scribd",title:"Scribd",icon:Zo,description:(0,we.__)("Embed Scribd content."),patterns:[/^https?:\/\/(www\.)?scribd\.com\/.+/i],attributes:{providerNameSlug:"scribd",responsive:!0}},{name:"slideshare",title:"Slideshare",icon:Zo,description:(0,we.__)("Embed Slideshare content."),patterns:[/^https?:\/\/(.+?\.)?slideshare\.net\/.+/i],attributes:{providerNameSlug:"slideshare",responsive:!0}},{name:"smugmug",title:"SmugMug",icon:Qo,description:(0,we.__)("Embed SmugMug content."),patterns:[/^https?:\/\/(.+\.)?smugmug\.com\/.*/i],attributes:{providerNameSlug:"smugmug",previewable:!1,responsive:!0}},{name:"speaker-deck",title:"Speaker Deck",icon:Zo,description:(0,we.__)("Embed Speaker Deck content."),patterns:[/^https?:\/\/(www\.)?speakerdeck\.com\/.+/i],attributes:{providerNameSlug:"speaker-deck",responsive:!0}},{name:"tiktok",title:"TikTok",icon:Jo,keywords:[(0,we.__)("video")],description:(0,we.__)("Embed a TikTok video."),patterns:[/^https?:\/\/(www\.)?tiktok\.com\/.+/i],attributes:{providerNameSlug:"tiktok",responsive:!0}},{name:"ted",title:"TED",icon:Jo,description:(0,we.__)("Embed a TED video."),patterns:[/^https?:\/\/(www\.|embed\.)?ted\.com\/.+/i],attributes:{providerNameSlug:"ted",responsive:!0}},{name:"tumblr",title:"Tumblr",icon:ir,keywords:[(0,we.__)("social")],description:(0,we.__)("Embed a Tumblr post."),patterns:[/^https?:\/\/(www\.)?tumblr\.com\/.+/i],attributes:{providerNameSlug:"tumblr",responsive:!0}},{name:"videopress",title:"VideoPress",icon:Jo,keywords:[(0,we.__)("video")],description:(0,we.__)("Embed a VideoPress video."),patterns:[/^https?:\/\/videopress\.com\/.+/i],attributes:{providerNameSlug:"videopress",responsive:!0}},{name:"wordpress-tv",title:"WordPress.tv",icon:Jo,description:(0,we.__)("Embed a WordPress.tv video."),patterns:[/^https?:\/\/wordpress\.tv\/.+/i],attributes:{providerNameSlug:"wordpress-tv",responsive:!0}},{name:"amazon-kindle",title:"Amazon Kindle",icon:sr,keywords:[(0,we.__)("ebook")],description:(0,we.__)("Embed Amazon Kindle content."),patterns:[/^https?:\/\/([a-z0-9-]+\.)?(amazon|amzn)(\.[a-z]{2,4})+\/.+/i,/^https?:\/\/(www\.)?(a\.co|z\.cn)\/.+/i],attributes:{providerNameSlug:"amazon-kindle"}},{name:"pinterest",title:"Pinterest",icon:mr,keywords:[(0,we.__)("social"),(0,we.__)("bookmark")],description:(0,we.__)("Embed Pinterest pins, boards, and profiles."),patterns:[/^https?:\/\/([a-z]{2}|www)\.pinterest\.com(\.(au|mx))?\/.*/i],attributes:{providerNameSlug:"pinterest"}},{name:"wolfram-cloud",title:"Wolfram Cloud",icon:dr,description:(0,we.__)("Embed Wolfram Cloud notebook content."),patterns:[/^https?:\/\/(www\.)?wolframcloud\.com\/obj\/.+/i],attributes:{providerNameSlug:"wolfram-cloud",responsive:!0}}];wr.forEach((e=>{e.isActive||(e.isActive=(e,t)=>e.providerNameSlug===t.providerNameSlug)}));var Er=wr;const{attributes:Cr}={apiVersion:2,name:"core/embed",title:"Embed",category:"embed",description:"Add a block that displays content pulled from other sites, like Twitter or YouTube.",textdomain:"default",attributes:{url:{type:"string"},caption:{type:"string",source:"html",selector:"figcaption"},type:{type:"string"},providerNameSlug:{type:"string"},allowResponsive:{type:"boolean",default:!0},responsive:{type:"boolean",default:!1},previewable:{type:"boolean",default:!0}},supports:{align:!0},editorStyle:"wp-block-embed-editor",style:"wp-block-embed"};var xr=[{attributes:Cr,save(e){let{attributes:{url:t,caption:n,type:o,providerNameSlug:r}}=e;if(!t)return null;const a=nt()("wp-block-embed",{[`is-type-${o}`]:o,[`is-provider-${r}`]:r});return(0,ye.createElement)("figure",{className:a},`\n${t}\n`,!Ee.RichText.isEmpty(n)&&(0,ye.createElement)(Ee.RichText.Content,{tagName:"figcaption",value:n}))}}];const Sr={apiVersion:2,name:"core/embed",title:"Embed",category:"embed",description:"Add a block that displays content pulled from other sites, like Twitter or YouTube.",textdomain:"default",attributes:{url:{type:"string"},caption:{type:"string",source:"html",selector:"figcaption"},type:{type:"string"},providerNameSlug:{type:"string"},allowResponsive:{type:"boolean",default:!0},responsive:{type:"boolean",default:!1},previewable:{type:"boolean",default:!0}},supports:{align:!0},editorStyle:"wp-block-embed-editor",style:"wp-block-embed"},{name:Br}=Sr,Tr={icon:Zo,edit:fr,save:function(e){let{attributes:t}=e;const{url:n,caption:o,type:r,providerNameSlug:a}=t;if(!n)return null;const l=He()("wp-block-embed",{[`is-type-${r}`]:r,[`is-provider-${a}`]:a,[`wp-block-embed-${a}`]:a});return(0,ye.createElement)("figure",Ee.useBlockProps.save({className:l}),(0,ye.createElement)("div",{className:"wp-block-embed__wrapper"},`\n${n}\n`),!Ee.RichText.isEmpty(o)&&(0,ye.createElement)(Ee.RichText.Content,{tagName:"figcaption",value:o}))},transforms:kr,variations:Er,deprecated:xr};var Nr=(0,ye.createElement)(fe.SVG,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,ye.createElement)(fe.Path,{d:"M19 6.2h-5.9l-.6-1.1c-.3-.7-1-1.1-1.8-1.1H5c-1.1 0-2 .9-2 2v11.8c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V8.2c0-1.1-.9-2-2-2zm.5 11.6c0 .3-.2.5-.5.5H5c-.3 0-.5-.2-.5-.5V6c0-.3.2-.5.5-.5h5.8c.2 0 .4.1.4.3l1 2H19c.3 0 .5.2.5.5v9.5z"}));const zr=[{attributes:{id:{type:"number"},href:{type:"string"},fileName:{type:"string",source:"html",selector:"a:not([download])"},textLinkHref:{type:"string",source:"attribute",selector:"a:not([download])",attribute:"href"},textLinkTarget:{type:"string",source:"attribute",selector:"a:not([download])",attribute:"target"},showDownloadButton:{type:"boolean",default:!0},downloadButtonText:{type:"string",source:"html",selector:"a[download]"},displayPreview:{type:"boolean"},previewHeight:{type:"number",default:600}},supports:{anchor:!0,align:!0},save(e){let{attributes:t}=e;const{href:n,fileName:o,textLinkHref:r,textLinkTarget:a,showDownloadButton:l,downloadButtonText:i,displayPreview:s,previewHeight:c}=t,u=Ee.RichText.isEmpty(o)?(0,we.__)("PDF embed"):(0,we.sprintf)((0,we.__)("Embed of %s."),o);return n&&(0,ye.createElement)("div",Ee.useBlockProps.save(),s&&(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)("object",{className:"wp-block-file__embed",data:n,type:"application/pdf",style:{width:"100%",height:`${c}px`},"aria-label":u})),!Ee.RichText.isEmpty(o)&&(0,ye.createElement)("a",{href:r,target:a,rel:a?"noreferrer noopener":void 0},(0,ye.createElement)(Ee.RichText.Content,{value:o})),l&&(0,ye.createElement)("a",{href:n,className:"wp-block-file__button",download:!0},(0,ye.createElement)(Ee.RichText.Content,{value:i})))}}];var Pr=zr,Ir=window.wp.notices;function Mr(e){let{hrefs:t,openInNewWindow:n,showDownloadButton:o,changeLinkDestinationOption:r,changeOpenInNewWindow:a,changeShowDownloadButton:l,displayPreview:i,changeDisplayPreview:s,previewHeight:c,changePreviewHeight:u}=e;const{href:m,textLinkHref:d,attachmentPage:p}=t;let g=[{value:m,label:(0,we.__)("URL")}];return p&&(g=[{value:m,label:(0,we.__)("Media file")},{value:p,label:(0,we.__)("Attachment page")}]),(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)(Ee.InspectorControls,null,m.endsWith(".pdf")&&(0,ye.createElement)(ke.PanelBody,{title:(0,we.__)("PDF settings")},(0,ye.createElement)(ke.ToggleControl,{label:(0,we.__)("Show inline embed"),help:i?(0,we.__)("Note: Most phone and tablet browsers won't display embedded PDFs."):null,checked:!!i,onChange:s}),i&&(0,ye.createElement)(ke.RangeControl,{label:(0,we.__)("Height in pixels"),min:Vr,max:Math.max(Hr,c),value:c,onChange:u})),(0,ye.createElement)(ke.PanelBody,{title:(0,we.__)("Text link settings")},(0,ye.createElement)(ke.SelectControl,{label:(0,we.__)("Link to"),value:d,options:g,onChange:r}),(0,ye.createElement)(ke.ToggleControl,{label:(0,we.__)("Open in new tab"),checked:n,onChange:a})),(0,ye.createElement)(ke.PanelBody,{title:(0,we.__)("Download button settings")},(0,ye.createElement)(ke.ToggleControl,{label:(0,we.__)("Show download button"),checked:o,onChange:l}))))}const Rr=()=>!(window.navigator.userAgent.indexOf("Mobi")>-1)&&(!(window.navigator.userAgent.indexOf("Android")>-1)&&(!(window.navigator.userAgent.indexOf("Macintosh")>-1&&window.navigator.maxTouchPoints&&window.navigator.maxTouchPoints>2)&&!((window.ActiveXObject||"ActiveXObject"in window)&&!Lr("AcroPDF.PDF")&&!Lr("PDF.PdfCtrl")))),Lr=e=>{let t;try{t=new window.ActiveXObject(e)}catch(e){t=void 0}return t},Vr=200,Hr=2e3;function Ar(e){let{text:t,disabled:n}=e;const{createNotice:o}=(0,Ie.useDispatch)(Ir.store),r=(0,ot.useCopyToClipboard)(t,(()=>{o("info",(0,we.__)("Copied URL to clipboard."),{isDismissible:!0,type:"snackbar"})}));return(0,ye.createElement)(ke.ToolbarButton,{className:"components-clipboard-toolbar-button",ref:r,disabled:n},(0,we.__)("Copy URL"))}var Fr=(0,ke.withNotices)((function(e){let{attributes:t,isSelected:n,setAttributes:o,noticeUI:r,noticeOperations:a,clientId:l}=e;const{id:i,fileName:s,href:c,textLinkHref:u,textLinkTarget:m,showDownloadButton:d,downloadButtonText:p,displayPreview:g,previewHeight:h}=t,[v,b]=(0,ye.useState)(!1),{media:y,mediaUpload:f}=(0,Ie.useSelect)((e=>({media:void 0===i?void 0:e(Dt.store).getMedia(i),mediaUpload:e(Ee.store).getSettings().mediaUpload})),[i]),{toggleSelection:_}=(0,Ie.useDispatch)(Ee.store);function k(e){if(e&&e.url){b(!1);const t=e.url.endsWith(".pdf");o({href:e.url,fileName:e.title,textLinkHref:e.url,id:e.id,displayPreview:!!t||void 0,previewHeight:t?600:void 0})}}function w(e){b(!0),a.removeAllNotices(),a.createErrorNotice(e)}function E(e){o({downloadButtonText:e.replace(/<\/?a[^>]*>/g,"")})}(0,ye.useEffect)((()=>{if((0,Pe.isBlobURL)(c)){const e=(0,Pe.getBlobByURL)(c);f({filesList:[e],onFileChange:e=>{let[t]=e;return k(t)},onError:e=>{b(!0),a.createErrorNotice(e)}}),(0,Pe.revokeBlobURL)(c)}void 0===p&&E((0,we._x)("Download","button label"))}),[]),(0,ye.useEffect)((()=>{o({fileId:`wp-block-file--media-${l}`})}),[l]);const C=y&&y.link,x=(0,Ee.useBlockProps)({className:nt()((0,Pe.isBlobURL)(c)&&(0,ke.__unstableGetAnimateClassName)({type:"loading"}),{"is-transient":(0,Pe.isBlobURL)(c)})}),S=Rr()&&g;return!c||v?(0,ye.createElement)("div",x,(0,ye.createElement)(Ee.MediaPlaceholder,{icon:(0,ye.createElement)(Ee.BlockIcon,{icon:Nr}),labels:{title:(0,we.__)("File"),instructions:(0,we.__)("Upload a file or pick one from your media library.")},onSelect:k,notices:r,onError:w,accept:"*"})):(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)(Mr,{hrefs:{href:c,textLinkHref:u,attachmentPage:C},openInNewWindow:!!m,showDownloadButton:d,changeLinkDestinationOption:function(e){o({textLinkHref:e})},changeOpenInNewWindow:function(e){o({textLinkTarget:!!e&&"_blank"})},changeShowDownloadButton:function(e){o({showDownloadButton:e})},displayPreview:g,changeDisplayPreview:function(e){o({displayPreview:e})},previewHeight:h,changePreviewHeight:function(e){const t=Math.max(parseInt(e,10),Vr);o({previewHeight:t})}}),(0,ye.createElement)(Ee.BlockControls,{group:"other"},(0,ye.createElement)(Ee.MediaReplaceFlow,{mediaId:i,mediaURL:c,accept:"*",onSelect:k,onError:w}),(0,ye.createElement)(Ar,{text:c,disabled:(0,Pe.isBlobURL)(c)})),(0,ye.createElement)("div",x,S&&(0,ye.createElement)(ke.ResizableBox,{size:{height:h},minHeight:Vr,maxHeight:Hr,minWidth:"100%",grid:[10,10],enable:{top:!1,right:!1,bottom:!0,left:!1,topRight:!1,bottomRight:!1,bottomLeft:!1,topLeft:!1},onResizeStart:()=>_(!1),onResizeStop:function(e,t,n,r){_(!0);const a=parseInt(h+r.height,10);o({previewHeight:a})},showHandle:n},(0,ye.createElement)("object",{className:"wp-block-file__preview",data:c,type:"application/pdf","aria-label":(0,we.__)("Embed of the selected PDF file.")}),!n&&(0,ye.createElement)("div",{className:"wp-block-file__preview-overlay"})),(0,ye.createElement)("div",{className:"wp-block-file__content-wrapper"},(0,ye.createElement)(Ee.RichText,{tagName:"a",value:s,placeholder:(0,we.__)("Write file name"),withoutInteractiveFormatting:!0,onChange:e=>o({fileName:e}),href:u}),d&&(0,ye.createElement)("div",{className:"wp-block-file__button-richtext-wrapper"},(0,ye.createElement)(Ee.RichText,{tagName:"div","aria-label":(0,we.__)("Download button text"),className:"wp-block-file__button",value:p,withoutInteractiveFormatting:!0,placeholder:(0,we.__)("Add text"),onChange:e=>E(e)})))))}));var Dr=window.wp.url;const Gr={from:[{type:"files",isMatch:e=>e.length>0,priority:15,transform:e=>{const t=[];return e.forEach((e=>{const n=(0,Pe.createBlobURL)(e);t.push((0,be.createBlock)("core/file",{href:n,fileName:e.name,textLinkHref:n}))})),t}},{type:"block",blocks:["core/audio"],transform:e=>(0,be.createBlock)("core/file",{href:e.src,fileName:e.caption,textLinkHref:e.src,id:e.id,anchor:e.anchor})},{type:"block",blocks:["core/video"],transform:e=>(0,be.createBlock)("core/file",{href:e.src,fileName:e.caption,textLinkHref:e.src,id:e.id,anchor:e.anchor})},{type:"block",blocks:["core/image"],transform:e=>(0,be.createBlock)("core/file",{href:e.url,fileName:e.caption||(0,Dr.getFilename)(e.url),textLinkHref:e.url,id:e.id,anchor:e.anchor})}],to:[{type:"block",blocks:["core/audio"],isMatch:e=>{let{id:t}=e;if(!t)return!1;const{getMedia:n}=(0,Ie.select)(Dt.store),o=n(t);return!!o&&(0,Le.includes)(o.mime_type,"audio")},transform:e=>(0,be.createBlock)("core/audio",{src:e.href,caption:e.fileName,id:e.id,anchor:e.anchor})},{type:"block",blocks:["core/video"],isMatch:e=>{let{id:t}=e;if(!t)return!1;const{getMedia:n}=(0,Ie.select)(Dt.store),o=n(t);return!!o&&(0,Le.includes)(o.mime_type,"video")},transform:e=>(0,be.createBlock)("core/video",{src:e.href,caption:e.fileName,id:e.id,anchor:e.anchor})},{type:"block",blocks:["core/image"],isMatch:e=>{let{id:t}=e;if(!t)return!1;const{getMedia:n}=(0,Ie.select)(Dt.store),o=n(t);return!!o&&(0,Le.includes)(o.mime_type,"image")},transform:e=>(0,be.createBlock)("core/image",{url:e.href,caption:e.fileName,id:e.id,anchor:e.anchor})}]};var Ur=Gr;const Or={apiVersion:2,name:"core/file",title:"File",category:"media",description:"Add a link to a downloadable file.",keywords:["document","pdf","download"],textdomain:"default",attributes:{id:{type:"number"},href:{type:"string"},fileId:{type:"string",source:"attribute",selector:"a:not([download])",attribute:"id"},fileName:{type:"string",source:"html",selector:"a:not([download])"},textLinkHref:{type:"string",source:"attribute",selector:"a:not([download])",attribute:"href"},textLinkTarget:{type:"string",source:"attribute",selector:"a:not([download])",attribute:"target"},showDownloadButton:{type:"boolean",default:!0},downloadButtonText:{type:"string",source:"html",selector:"a[download]"},displayPreview:{type:"boolean"},previewHeight:{type:"number",default:600}},supports:{anchor:!0,align:!0},viewScript:"file:./view.min.js",editorStyle:"wp-block-file-editor",style:"wp-block-file"},{name:qr}=Or,$r={icon:Nr,example:{attributes:{href:"https://upload.wikimedia.org/wikipedia/commons/d/dd/Armstrong_Small_Step.ogg",fileName:(0,we._x)("Armstrong_Small_Step","Name of the file")}},transforms:Ur,deprecated:Pr,edit:Fr,save:function(e){let{attributes:t}=e;const{href:n,fileId:o,fileName:r,textLinkHref:a,textLinkTarget:l,showDownloadButton:i,downloadButtonText:s,displayPreview:c,previewHeight:u}=t,m=Ee.RichText.isEmpty(r)?(0,we.__)("PDF embed"):(0,we.sprintf)((0,we.__)("Embed of %s."),r);return n&&(0,ye.createElement)("div",Ee.useBlockProps.save(),c&&(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)("object",{className:"wp-block-file__embed",data:n,type:"application/pdf",style:{width:"100%",height:`${u}px`},"aria-label":m})),!Ee.RichText.isEmpty(r)&&(0,ye.createElement)("a",{id:o,href:a,target:l,rel:l?"noreferrer noopener":void 0},(0,ye.createElement)(Ee.RichText.Content,{value:r})),i&&(0,ye.createElement)("a",{href:n,className:"wp-block-file__button",download:!0,"aria-describedby":o},(0,ye.createElement)(Ee.RichText.Content,{value:s})))}};var Wr=(0,ye.createElement)(fe.SVG,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,ye.createElement)(fe.Path,{d:"M20.2 8v11c0 .7-.6 1.2-1.2 1.2H6v1.5h13c1.5 0 2.7-1.2 2.7-2.8V8h-1.5zM18 16.4V4.6c0-.9-.7-1.6-1.6-1.6H4.6C3.7 3 3 3.7 3 4.6v11.8c0 .9.7 1.6 1.6 1.6h11.8c.9 0 1.6-.7 1.6-1.6zM4.5 4.6c0-.1.1-.1.1-.1h11.8c.1 0 .1.1.1.1V12l-2.3-1.7c-.3-.2-.6-.2-.9 0l-2.9 2.1L8 11.3c-.2-.1-.5-.1-.7 0l-2.9 1.5V4.6zm0 11.8v-1.8l3.2-1.7 2.4 1.2c.2.1.5.1.8-.1l2.8-2 2.8 2v2.5c0 .1-.1.1-.1.1H4.6c0-.1-.1-.2-.1-.2z"}));const jr="none",Zr="media",Kr="attachment";const Qr=function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"large";const n=(0,Le.pick)(e,["alt","id","link","caption"]);n.url=(0,Le.get)(e,["sizes",t,"url"])||(0,Le.get)(e,["media_details","sizes",t,"source_url"])||e.url;const o=(0,Le.get)(e,["sizes","full","url"])||(0,Le.get)(e,["media_details","sizes","full","source_url"]);return o&&(n.fullUrl=o),n};const Jr="file",Yr="post";function Xr(e){var t;return Math.min(3,null==e||null===(t=e.images)||void 0===t?void 0:t.length)}function ea(e,t){switch(t){case Jr:return{href:(null==e?void 0:e.source_url)||(null==e?void 0:e.url),linkDestination:Zr};case Yr:return{href:null==e?void 0:e.link,linkDestination:Kr};case Zr:return{href:(null==e?void 0:e.source_url)||(null==e?void 0:e.url),linkDestination:Zr};case Kr:return{href:null==e?void 0:e.link,linkDestination:Kr};case jr:return{href:void 0,linkDestination:jr}}return{}}function ta(e){let t=e.linkTo?e.linkTo:"none";"post"===t?t="attachment":"file"===t&&(t="media");const n=e.images.map((n=>function(e,t,n){return(0,be.createBlock)("core/image",{...e.id&&{id:parseInt(e.id)},url:e.url,alt:e.alt,caption:e.caption,sizeSlug:t,...ea(e,n)})}(n,e.sizeSlug,t)));return[{...(0,Le.omit)(e,["images","ids"]),linkTo:t,allowResize:!1},n]}const na={attributes:{images:{type:"array",default:[],source:"query",selector:".blocks-gallery-item",query:{url:{type:"string",source:"attribute",selector:"img",attribute:"src"},fullUrl:{type:"string",source:"attribute",selector:"img",attribute:"data-full-url"},link:{type:"string",source:"attribute",selector:"img",attribute:"data-link"},alt:{type:"string",source:"attribute",selector:"img",attribute:"alt",default:""},id:{type:"string",source:"attribute",selector:"img",attribute:"data-id"},caption:{type:"string",source:"html",selector:".blocks-gallery-item__caption"}}},ids:{type:"array",items:{type:"number"},default:[]},columns:{type:"number",minimum:1,maximum:8},caption:{type:"string",source:"html",selector:".blocks-gallery-caption"},imageCrop:{type:"boolean",default:!0},linkTo:{type:"string"},sizeSlug:{type:"string",default:"large"}},supports:{anchor:!0,align:!0},save(e){let{attributes:t}=e;const{images:n,columns:o=Xr(t),imageCrop:r,caption:a,linkTo:l}=t,i=`columns-${o} ${r?"is-cropped":""}`;return(0,ye.createElement)("figure",Ee.useBlockProps.save({className:i}),(0,ye.createElement)("ul",{className:"blocks-gallery-grid"},n.map((e=>{let t;switch(l){case Jr:t=e.fullUrl||e.url;break;case Yr:t=e.link}const n=(0,ye.createElement)("img",{src:e.url,alt:e.alt,"data-id":e.id,"data-full-url":e.fullUrl,"data-link":e.link,className:e.id?`wp-image-${e.id}`:null});return(0,ye.createElement)("li",{key:e.id||e.url,className:"blocks-gallery-item"},(0,ye.createElement)("figure",null,t?(0,ye.createElement)("a",{href:t},n):n,!Ee.RichText.isEmpty(e.caption)&&(0,ye.createElement)(Ee.RichText.Content,{tagName:"figcaption",className:"blocks-gallery-item__caption",value:e.caption})))}))),!Ee.RichText.isEmpty(a)&&(0,ye.createElement)(Ee.RichText.Content,{tagName:"figcaption",className:"blocks-gallery-caption",value:a}))},migrate:e=>ta(e)},oa={attributes:{images:{type:"array",default:[],source:"query",selector:".blocks-gallery-item",query:{url:{type:"string",source:"attribute",selector:"img",attribute:"src"},fullUrl:{type:"string",source:"attribute",selector:"img",attribute:"data-full-url"},link:{type:"string",source:"attribute",selector:"img",attribute:"data-link"},alt:{type:"string",source:"attribute",selector:"img",attribute:"alt",default:""},id:{type:"string",source:"attribute",selector:"img",attribute:"data-id"},caption:{type:"string",source:"html",selector:".blocks-gallery-item__caption"}}},ids:{type:"array",items:{type:"number"},default:[]},columns:{type:"number",minimum:1,maximum:8},caption:{type:"string",source:"html",selector:".blocks-gallery-caption"},imageCrop:{type:"boolean",default:!0},linkTo:{type:"string",default:"none"},sizeSlug:{type:"string",default:"large"}},supports:{align:!0},isEligible(e){let{linkTo:t}=e;return!t||"attachment"===t||"media"===t},migrate:e=>ta(e),save(e){let{attributes:t}=e;const{images:n,columns:o=Xr(t),imageCrop:r,caption:a,linkTo:l}=t;return(0,ye.createElement)("figure",{className:`columns-${o} ${r?"is-cropped":""}`},(0,ye.createElement)("ul",{className:"blocks-gallery-grid"},n.map((e=>{let t;switch(l){case"media":t=e.fullUrl||e.url;break;case"attachment":t=e.link}const n=(0,ye.createElement)("img",{src:e.url,alt:e.alt,"data-id":e.id,"data-full-url":e.fullUrl,"data-link":e.link,className:e.id?`wp-image-${e.id}`:null});return(0,ye.createElement)("li",{key:e.id||e.url,className:"blocks-gallery-item"},(0,ye.createElement)("figure",null,t?(0,ye.createElement)("a",{href:t},n):n,!Ee.RichText.isEmpty(e.caption)&&(0,ye.createElement)(Ee.RichText.Content,{tagName:"figcaption",className:"blocks-gallery-item__caption",value:e.caption})))}))),!Ee.RichText.isEmpty(a)&&(0,ye.createElement)(Ee.RichText.Content,{tagName:"figcaption",className:"blocks-gallery-caption",value:a}))}},ra={attributes:{images:{type:"array",default:[],source:"query",selector:".blocks-gallery-item",query:{url:{source:"attribute",selector:"img",attribute:"src"},fullUrl:{source:"attribute",selector:"img",attribute:"data-full-url"},link:{source:"attribute",selector:"img",attribute:"data-link"},alt:{source:"attribute",selector:"img",attribute:"alt",default:""},id:{source:"attribute",selector:"img",attribute:"data-id"},caption:{type:"string",source:"html",selector:".blocks-gallery-item__caption"}}},ids:{type:"array",default:[]},columns:{type:"number"},caption:{type:"string",source:"html",selector:".blocks-gallery-caption"},imageCrop:{type:"boolean",default:!0},linkTo:{type:"string",default:"none"}},supports:{align:!0},isEligible(e){let{ids:t}=e;return t&&t.some((e=>"string"==typeof e))},migrate:e=>ta(e),save(e){let{attributes:t}=e;const{images:n,columns:o=Xr(t),imageCrop:r,caption:a,linkTo:l}=t;return(0,ye.createElement)("figure",{className:`columns-${o} ${r?"is-cropped":""}`},(0,ye.createElement)("ul",{className:"blocks-gallery-grid"},n.map((e=>{let t;switch(l){case"media":t=e.fullUrl||e.url;break;case"attachment":t=e.link}const n=(0,ye.createElement)("img",{src:e.url,alt:e.alt,"data-id":e.id,"data-full-url":e.fullUrl,"data-link":e.link,className:e.id?`wp-image-${e.id}`:null});return(0,ye.createElement)("li",{key:e.id||e.url,className:"blocks-gallery-item"},(0,ye.createElement)("figure",null,t?(0,ye.createElement)("a",{href:t},n):n,!Ee.RichText.isEmpty(e.caption)&&(0,ye.createElement)(Ee.RichText.Content,{tagName:"figcaption",className:"blocks-gallery-item__caption",value:e.caption})))}))),!Ee.RichText.isEmpty(a)&&(0,ye.createElement)(Ee.RichText.Content,{tagName:"figcaption",className:"blocks-gallery-caption",value:a}))}},aa={attributes:{images:{type:"array",default:[],source:"query",selector:"ul.wp-block-gallery .blocks-gallery-item",query:{url:{source:"attribute",selector:"img",attribute:"src"},fullUrl:{source:"attribute",selector:"img",attribute:"data-full-url"},alt:{source:"attribute",selector:"img",attribute:"alt",default:""},id:{source:"attribute",selector:"img",attribute:"data-id"},link:{source:"attribute",selector:"img",attribute:"data-link"},caption:{type:"array",source:"children",selector:"figcaption"}}},ids:{type:"array",default:[]},columns:{type:"number"},imageCrop:{type:"boolean",default:!0},linkTo:{type:"string",default:"none"}},supports:{align:!0},save(e){let{attributes:t}=e;const{images:n,columns:o=Xr(t),imageCrop:r,linkTo:a}=t;return(0,ye.createElement)("ul",{className:`columns-${o} ${r?"is-cropped":""}`},n.map((e=>{let t;switch(a){case"media":t=e.fullUrl||e.url;break;case"attachment":t=e.link}const n=(0,ye.createElement)("img",{src:e.url,alt:e.alt,"data-id":e.id,"data-full-url":e.fullUrl,"data-link":e.link,className:e.id?`wp-image-${e.id}`:null});return(0,ye.createElement)("li",{key:e.id||e.url,className:"blocks-gallery-item"},(0,ye.createElement)("figure",null,t?(0,ye.createElement)("a",{href:t},n):n,e.caption&&e.caption.length>0&&(0,ye.createElement)(Ee.RichText.Content,{tagName:"figcaption",value:e.caption})))})))},migrate:e=>ta(e)},la={attributes:{images:{type:"array",default:[],source:"query",selector:"ul.wp-block-gallery .blocks-gallery-item",query:{url:{source:"attribute",selector:"img",attribute:"src"},alt:{source:"attribute",selector:"img",attribute:"alt",default:""},id:{source:"attribute",selector:"img",attribute:"data-id"},link:{source:"attribute",selector:"img",attribute:"data-link"},caption:{type:"array",source:"children",selector:"figcaption"}}},columns:{type:"number"},imageCrop:{type:"boolean",default:!0},linkTo:{type:"string",default:"none"}},isEligible(e){let{images:t,ids:n}=e;return t&&t.length>0&&(!n&&t||n&&t&&n.length!==t.length||(0,Le.some)(t,((e,t)=>!e&&null!==n[t]||parseInt(e,10)!==n[t])))},migrate:e=>ta(e),supports:{align:!0},save(e){let{attributes:t}=e;const{images:n,columns:o=Xr(t),imageCrop:r,linkTo:a}=t;return(0,ye.createElement)("ul",{className:`columns-${o} ${r?"is-cropped":""}`},n.map((e=>{let t;switch(a){case"media":t=e.url;break;case"attachment":t=e.link}const n=(0,ye.createElement)("img",{src:e.url,alt:e.alt,"data-id":e.id,"data-link":e.link,className:e.id?`wp-image-${e.id}`:null});return(0,ye.createElement)("li",{key:e.id||e.url,className:"blocks-gallery-item"},(0,ye.createElement)("figure",null,t?(0,ye.createElement)("a",{href:t},n):n,e.caption&&e.caption.length>0&&(0,ye.createElement)(Ee.RichText.Content,{tagName:"figcaption",value:e.caption})))})))}},ia={attributes:{images:{type:"array",default:[],source:"query",selector:"div.wp-block-gallery figure.blocks-gallery-image img",query:{url:{source:"attribute",attribute:"src"},alt:{source:"attribute",attribute:"alt",default:""},id:{source:"attribute",attribute:"data-id"}}},columns:{type:"number"},imageCrop:{type:"boolean",default:!0},linkTo:{type:"string",default:"none"},align:{type:"string",default:"none"}},supports:{align:!0},save(e){let{attributes:t}=e;const{images:n,columns:o=Xr(t),align:r,imageCrop:a,linkTo:l}=t,i=nt()(`columns-${o}`,{alignnone:"none"===r,"is-cropped":a});return(0,ye.createElement)("div",{className:i},n.map((e=>{let t;switch(l){case"media":t=e.url;break;case"attachment":t=e.link}const n=(0,ye.createElement)("img",{src:e.url,alt:e.alt,"data-id":e.id});return(0,ye.createElement)("figure",{key:e.id||e.url,className:"blocks-gallery-image"},t?(0,ye.createElement)("a",{href:t},n):n)})))},migrate:e=>ta(e)};var sa=[na,oa,ra,aa,la,ia],ca=window.wp.viewport;const ua=(0,ye.createElement)(Ee.BlockIcon,{icon:Wr}),ma=20,da="none",pa="media",ga="attachment",ha="custom",va=["noreferrer","noopener"],ba=["image"];function ya(e,t){switch(t){case"file":case Zr:return{href:(null==e?void 0:e.source_url)||(null==e?void 0:e.url),linkDestination:pa};case"post":case Kr:return{href:null==e?void 0:e.link,linkDestination:ga};case jr:return{href:void 0,linkDestination:da}}return{}}function fa(e,t){let{rel:n}=t;const o=e?"_blank":void 0;let r;return r=o||n?function(e){let t=e;return void 0===e||(0,Le.isEmpty)(t)||(0,Le.isEmpty)(t)||((0,Le.each)(va,(e=>{const n=new RegExp("\\b"+e+"\\b","gi");t=t.replace(n,"")})),t!==e&&(t=t.trim()),(0,Le.isEmpty)(t)&&(t=void 0)),t}(n):void 0,{linkTarget:o,rel:r}}const _a=["core/image"];function ka(e){let{isHidden:t,captionFocused:n,onFocusCaption:o,className:r,value:a,placeholder:l,tagName:i,captionRef:s,...c}=e;return t?(0,ye.createElement)(ke.VisuallyHidden,gt({as:Ee.RichText},c)):(0,ye.createElement)(Ee.RichText,gt({ref:s,value:a,placeholder:l,className:r,tagName:i,isSelected:n,onClick:o},c))}var wa=e=>{const{attributes:t,isSelected:n,setAttributes:o,mediaPlaceholder:r,insertBlocksAfter:a,blockProps:l}=e,{align:i,columns:s,caption:c,imageCrop:u}=t,{children:m,...d}=(0,Ee.useInnerBlocksProps)(l,{allowedBlocks:_a,orientation:"horizontal",renderAppender:!1,__experimentalLayout:{type:"default",alignments:[]}}),[p,g]=(0,ye.useState)(!1);return(0,ye.useEffect)((()=>{n||g(!1)}),[n]),(0,ye.createElement)("figure",gt({},d,{className:nt()(l.className,"blocks-gallery-grid",{[`align${i}`]:i,[`columns-${s}`]:void 0!==s,"columns-default":void 0===s,"is-cropped":u})}),m,(0,ye.createElement)(fe.View,{className:"blocks-gallery-media-placeholder-wrapper",onClick:function(){p&&g(!1)}},r),(0,ye.createElement)(ka,{isHidden:!n&&Ee.RichText.isEmpty(c),captionFocused:p,onFocusCaption:function(){p||g(!0)},tagName:"figcaption",className:"blocks-gallery-caption","aria-label":(0,we.__)("Gallery caption text"),placeholder:(0,we.__)("Write gallery caption"),value:c,onChange:e=>o({caption:e}),inlineToolbar:!0,__unstableOnSplitAtEnd:()=>a((0,be.createBlock)("core/paragraph"))}))};function Ea(e,t,n){return(0,ye.useMemo)((()=>function(){if(!e||0===e.length)return;const{imageSizes:o}=n();let r={};t&&(r=e.reduce(((e,t)=>{if(!t.id)return e;const n=o.reduce(((e,n)=>{const o=(0,Le.get)(t,["sizes",n.slug,"url"]),r=(0,Le.get)(t,["media_details","sizes",n.slug,"source_url"]);return{...e,[n.slug]:o||r}}),{});return{...e,[parseInt(t.id,10)]:n}}),{}));return o.filter((e=>{let{slug:t}=e;return(0,Le.some)(r,(e=>e[t]))})).map((e=>{let{name:t,slug:n}=e;return{value:n,label:t}}))}()),[e,t])}function Ca(e,t){const[n,o]=(0,ye.useState)([]);return(0,ye.useMemo)((()=>function(){let r=!1;const a=n.filter((t=>e.find((e=>t.clientId===e.clientId))));a.length<n.length&&(r=!0);e.forEach((e=>{e.fromSavedContent&&!a.find((t=>t.id===e.id))&&(r=!0,a.push(e))}));const l=e.filter((e=>!a.find((t=>e.clientId&&t.clientId===e.clientId))&&(null==t?void 0:t.find((t=>t.id===e.id)))&&!e.fromSavedConent));(r||(null==l?void 0:l.length)>0)&&o([...a,...l]);return l.length>0?l:null}()),[e,t])}const xa=[{value:Kr,label:(0,we.__)("Attachment Page")},{value:Zr,label:(0,we.__)("Media File")},{value:jr,label:(0,we._x)("None","Media item link option")}],Sa=["image"],Ba=ye.Platform.isNative?(0,we.__)("ADD MEDIA"):(0,we.__)("Drag images, upload new ones or select files from your library."),Ta=ye.Platform.isNative?{type:"stepper"}:{};var Na=(0,ot.compose)([ke.withNotices,(0,ca.withViewportMatch)({isNarrow:"< small"})])((function(e){const{setAttributes:t,attributes:n,className:o,clientId:r,noticeOperations:a,isSelected:l,noticeUI:i,insertBlocksAfter:s}=e,{columns:c,imageCrop:u,linkTarget:m,linkTo:d,shortCodeTransforms:p,sizeSlug:g}=n,{__unstableMarkNextChangeAsNotPersistent:h,replaceInnerBlocks:v,updateBlockAttributes:b}=(0,Ie.useDispatch)(Ee.store),{createSuccessNotice:y}=(0,Ie.useDispatch)(Ir.store),{getBlock:f,getSettings:_,preferredStyle:k}=(0,Ie.useSelect)((e=>{var t;const n=e(Ee.store).getSettings().__experimentalPreferredStyleVariations;return{getBlock:e(Ee.store).getBlock,getSettings:e(Ee.store).getSettings,preferredStyle:null==n||null===(t=n.value)||void 0===t?void 0:t["core/image"]}}),[]),w=(0,Ie.useSelect)((e=>{var t;return null===(t=e(Ee.store).getBlock(r))||void 0===t?void 0:t.innerBlocks}),[r]),E=(0,ye.useMemo)((()=>null==w?void 0:w.map((e=>({clientId:e.clientId,id:e.attributes.id,url:e.attributes.url,attributes:e.attributes,fromSavedContent:Boolean(e.originalContent)})))),[w]),C=function(e){const[t,n]=(0,ye.useState)([]),o=(0,Ie.useSelect)((n=>{if(null==e||!e.length)return t;const o=e.map((e=>e.attributes.id)).filter((e=>void 0!==e));return 0===o.length?t:n(Dt.store).getMediaItems({include:o.join(","),per_page:-1})}),[e]);return(null==o?void 0:o.length)!==(null==t?void 0:t.length)||null!=o&&o.some((e=>!t.find((t=>t.id===e.id))))?(n(o),o):t}(w),x=Ca(E,C);(0,ye.useEffect)((()=>{null==x||x.forEach((e=>{b(e.clientId,{...T(e.attributes),id:e.id,align:void 0})}))}),[x]);const S=function(e){const t=(0,Ie.useSelect)((t=>{if(!e||0===e.length)return;const n=t(Dt.store).getMedia;return e.map((e=>{const t=n(e.id);if(t)return{id:t.id,type:"image",url:t.source_url,mime:t.mime_type,alt:t.alt_text,link:t.link}}))}),[e]);if(t)return(0,Le.every)(t,(e=>e&&e.url))?t:void 0}(p);(0,ye.useEffect)((()=>{p&&S&&(z(S),t({shortCodeTransforms:void 0}))}),[p,S]);const B=Ea(C,l,_);function T(e){const t=e.id?(0,Le.find)(C,{id:e.id}):null;let o;return o=e.className&&""!==e.className?e.className:k?`is-style-${k}`:void 0,{...Qr(e,g),...ya(t,d),...fa(m,n),className:o,sizeSlug:g}}function N(e){var t;return Sa.some((t=>{var n;return 0===(null===(n=e.type)||void 0===n?void 0:n.indexOf(t))}))||0===(null===(t=e.url)||void 0===t?void 0:t.indexOf("blob:"))}function z(e){const t="[object FileList]"===Object.prototype.toString.call(e),n=t?Array.from(e).map((e=>e.url?e:Qr({url:(0,Pe.createBlobURL)(e)}))):e;n.every(N)||(a.removeAllNotices(),a.createErrorNotice((0,we.__)("If uploading to a gallery all files need to be image formats"),{id:"gallery-upload-invalid-file"}));const o=n.filter((e=>e.url||N(e))).map((e=>e.url?e:Qr({url:(0,Pe.createBlobURL)(e)}))),l=o.reduce(((e,t,n)=>(e[t.id]=n,e)),{}),i=t?w:w.filter((e=>o.find((t=>t.id===e.attributes.id)))),s=o.filter((e=>!i.find((t=>e.id===t.attributes.id)))).map((e=>(0,be.createBlock)("core/image",{id:e.id,url:e.url,caption:e.caption,alt:e.alt})));v(r,(0,Le.concat)(i,s).sort(((e,t)=>l[e.attributes.id]-l[t.attributes.id])))}(0,ye.useEffect)((()=>{var e,n,o,r,a,l;d||(h(),t({linkTo:(null===(e=window)||void 0===e||null===(n=e.wp)||void 0===n||null===(o=n.media)||void 0===o||null===(r=o.view)||void 0===r||null===(a=r.settings)||void 0===a||null===(l=a.defaultProps)||void 0===l?void 0:l.link)||jr}))}),[d]);const P=!!E.length,I=P&&E.some((e=>!!e.id)),M=E.some((e=>{var t;return!e.id&&0===(null===(t=e.url)||void 0===t?void 0:t.indexOf("blob:"))})),R=(0,ye.createElement)(Ee.MediaPlaceholder,{addToGallery:I,handleUpload:!1,isAppender:P,disableMediaButtons:P&&!l||M,icon:!P&&ua,labels:{title:!P&&(0,we.__)("Gallery"),instructions:!P&&Ba},onSelect:z,accept:"image/*",allowedTypes:Sa,multiple:!0,value:I?E:{},onError:function(e){a.removeAllNotices(),a.createErrorNotice(e)},notices:P?void 0:i}),L=(0,Ee.useBlockProps)({className:nt()(o,"has-nested-images")});if(!P)return(0,ye.createElement)(fe.View,L,R);const V=d&&"none"!==d;return(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)(Ee.InspectorControls,null,(0,ye.createElement)(ke.PanelBody,{title:(0,we.__)("Gallery settings")},E.length>1&&(0,ye.createElement)(ke.RangeControl,gt({label:(0,we.__)("Columns"),value:c||(H=E.length,H?Math.min(3,H):3),onChange:function(e){t({columns:e})},min:1,max:Math.min(8,E.length)},Ta,{required:!0})),(0,ye.createElement)(ke.ToggleControl,{label:(0,we.__)("Crop images"),checked:!!u,onChange:function(){t({imageCrop:!u})},help:function(e){return e?(0,we.__)("Thumbnails are cropped to align."):(0,we.__)("Thumbnails are not cropped.")}}),(0,ye.createElement)(ke.SelectControl,{label:(0,we.__)("Link to"),value:d,onChange:function(e){t({linkTo:e});const n={},o=[];f(r).innerBlocks.forEach((t=>{o.push(t.clientId);const r=t.attributes.id?(0,Le.find)(C,{id:t.attributes.id}):null;n[t.clientId]=ya(r,e)})),b(o,n,!0);const a=[...xa].find((t=>t.value===e));y((0,we.sprintf)((0,we.__)("All gallery image links updated to: %s"),a.label),{id:"gallery-attributes-linkTo",type:"snackbar"})},options:xa,hideCancelButton:!0}),V&&(0,ye.createElement)(ke.ToggleControl,{label:(0,we.__)("Open in new tab"),checked:"_blank"===m,onChange:function(e){const n=e?"_blank":void 0;t({linkTarget:n});const o={},a=[];f(r).innerBlocks.forEach((e=>{a.push(e.clientId),o[e.clientId]=fa(n,e.attributes)})),b(a,o,!0);const l=e?(0,we.__)("All gallery images updated to open in new tab"):(0,we.__)("All gallery images updated to not open in new tab");y(l,{id:"gallery-attributes-openInNewTab",type:"snackbar"})}}),(null==B?void 0:B.length)>0&&(0,ye.createElement)(ke.SelectControl,{label:(0,we.__)("Image size"),value:g,options:B,onChange:function(e){t({sizeSlug:e});const n={},o=[];f(r).innerBlocks.forEach((t=>{o.push(t.clientId);const r=t.attributes.id?(0,Le.find)(C,{id:t.attributes.id}):null;n[t.clientId]=function(e,t){const n=(0,Le.get)(e,["media_details","sizes",t,"source_url"]);return n?{url:n,width:void 0,height:void 0,sizeSlug:t}:{}}(r,e)})),b(o,n,!0);const a=B.find((t=>t.value===e));y((0,we.sprintf)((0,we.__)("All gallery image sizes updated to: %s"),a.label),{id:"gallery-attributes-sizeSlug",type:"snackbar"})},hideCancelButton:!0}),ye.Platform.isWeb&&!B&&I&&(0,ye.createElement)(ke.BaseControl,{className:"gallery-image-sizes"},(0,ye.createElement)(ke.BaseControl.VisualLabel,null,(0,we.__)("Image size")),(0,ye.createElement)(fe.View,{className:"gallery-image-sizes__loading"},(0,ye.createElement)(ke.Spinner,null),(0,we.__)("Loading options"))))),i,(0,ye.createElement)(wa,gt({},e,{images:E,mediaPlaceholder:R,blockProps:L,insertBlocksAfter:s})));var H}));const za=function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"large";const n=(0,Le.pick)(e,["alt","id","link","caption"]);n.url=(0,Le.get)(e,["sizes",t,"url"])||(0,Le.get)(e,["media_details","sizes",t,"source_url"])||e.url;const o=(0,Le.get)(e,["sizes","full","url"])||(0,Le.get)(e,["media_details","sizes","full","source_url"]);return o&&(n.fullUrl=o),n};var Pa=(0,ye.createElement)(fe.SVG,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,ye.createElement)(fe.Path,{d:"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM5 4.5h14c.3 0 .5.2.5.5v8.4l-3-2.9c-.3-.3-.8-.3-1 0L11.9 14 9 12c-.3-.2-.6-.2-.8 0l-3.6 2.6V5c-.1-.3.1-.5.4-.5zm14 15H5c-.3 0-.5-.2-.5-.5v-2.4l4.1-3 3 1.9c.3.2.7.2.9-.1L16 12l3.5 3.4V19c0 .3-.2.5-.5.5z"}));var Ia=(0,ye.createElement)(fe.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,ye.createElement)(fe.Path,{d:"M14.6 7l-1.2-1L8 12l5.4 6 1.2-1-4.6-5z"}));var Ma=(0,ye.createElement)(fe.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,ye.createElement)(fe.Path,{d:"M10.6 6L9.4 7l4.6 5-4.6 5 1.2 1 5.4-6z"}));var Ra=(0,ye.createElement)(fe.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,ye.createElement)(fe.Path,{d:"M12 13.06l3.712 3.713 1.061-1.06L13.061 12l3.712-3.712-1.06-1.06L12 10.938 8.288 7.227l-1.061 1.06L10.939 12l-3.712 3.712 1.06 1.061L12 13.061z"}));const La="none",Va="file",Ha="post";class Aa extends ye.Component{constructor(){super(...arguments),this.onSelectImage=this.onSelectImage.bind(this),this.onRemoveImage=this.onRemoveImage.bind(this),this.bindContainer=this.bindContainer.bind(this),this.onEdit=this.onEdit.bind(this),this.onSelectImageFromLibrary=this.onSelectImageFromLibrary.bind(this),this.onSelectCustomURL=this.onSelectCustomURL.bind(this),this.state={isEditing:!1}}bindContainer(e){this.container=e}onSelectImage(){this.props.isSelected||this.props.onSelect()}onRemoveImage(e){this.container===this.container.ownerDocument.activeElement&&this.props.isSelected&&-1!==[ht.BACKSPACE,ht.DELETE].indexOf(e.keyCode)&&(e.preventDefault(),this.props.onRemove())}onEdit(){this.setState({isEditing:!0})}componentDidUpdate(){const{image:e,url:t,__unstableMarkNextChangeAsNotPersistent:n}=this.props;e&&!t&&(n(),this.props.setAttributes({url:e.source_url,alt:e.alt_text}))}deselectOnBlur(){this.props.onDeselect()}onSelectImageFromLibrary(e){const{setAttributes:t,id:n,url:o,alt:r,caption:a,sizeSlug:l}=this.props;if(!e||!e.url)return;let i=za(e,l);((e,t)=>!e&&(0,Pe.isBlobURL)(t))(n,o)&&r&&(i=(0,Le.omit)(i,["alt"])),a&&!(0,Le.get)(i,["caption"])&&(i=(0,Le.omit)(i,["caption"])),t(i),this.setState({isEditing:!1})}onSelectCustomURL(e){const{setAttributes:t,url:n}=this.props;e!==n&&(t({url:e,id:void 0}),this.setState({isEditing:!1}))}render(){const{url:e,alt:t,id:n,linkTo:o,link:r,isFirstItem:a,isLastItem:l,isSelected:i,caption:s,onRemove:c,onMoveForward:u,onMoveBackward:m,setAttributes:d,"aria-label":p}=this.props,{isEditing:g}=this.state;let h;switch(o){case Va:h=e;break;case Ha:h=r}const v=(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)("img",{src:e,alt:t,"data-id":n,onKeyDown:this.onRemoveImage,tabIndex:"0","aria-label":p,ref:this.bindContainer}),(0,Pe.isBlobURL)(e)&&(0,ye.createElement)(ke.Spinner,null)),b=nt()({"is-selected":i,"is-transient":(0,Pe.isBlobURL)(e)});return(0,ye.createElement)("figure",{className:b,onClick:this.onSelectImage,onFocus:this.onSelectImage},!g&&(h?(0,ye.createElement)("a",{href:h},v):v),g&&(0,ye.createElement)(Ee.MediaPlaceholder,{labels:{title:(0,we.__)("Edit gallery image")},icon:Pa,onSelect:this.onSelectImageFromLibrary,onSelectURL:this.onSelectCustomURL,accept:"image/*",allowedTypes:["image"],value:{id:n,src:e}}),(0,ye.createElement)(ke.ButtonGroup,{className:"block-library-gallery-item__inline-menu is-left"},(0,ye.createElement)(ke.Button,{icon:Ia,onClick:a?void 0:m,label:(0,we.__)("Move image backward"),"aria-disabled":a,disabled:!i}),(0,ye.createElement)(ke.Button,{icon:Ma,onClick:l?void 0:u,label:(0,we.__)("Move image forward"),"aria-disabled":l,disabled:!i})),(0,ye.createElement)(ke.ButtonGroup,{className:"block-library-gallery-item__inline-menu is-right"},(0,ye.createElement)(ke.Button,{icon:$o,onClick:this.onEdit,label:(0,we.__)("Replace image"),disabled:!i}),(0,ye.createElement)(ke.Button,{icon:Ra,onClick:c,label:(0,we.__)("Remove image"),disabled:!i})),!g&&(i||s)&&(0,ye.createElement)(Ee.RichText,{tagName:"figcaption","aria-label":(0,we.__)("Image caption text"),placeholder:i?(0,we.__)("Add caption"):null,value:s,onChange:e=>d({caption:e}),inlineToolbar:!0}))}}var Fa=(0,ot.compose)([(0,Ie.withSelect)(((e,t)=>{const{getMedia:n}=e(Dt.store),{id:o}=t;return{image:o?n(parseInt(o,10)):null}})),(0,Ie.withDispatch)((e=>{const{__unstableMarkNextChangeAsNotPersistent:t}=e(Ee.store);return{__unstableMarkNextChangeAsNotPersistent:t}}))])(Aa);function Da(e){let{isHidden:t,...n}=e;return t?(0,ye.createElement)(ke.VisuallyHidden,gt({as:Ee.RichText},n)):(0,ye.createElement)(Ee.RichText,n)}var Ga=e=>{const{attributes:t,isSelected:n,setAttributes:o,selectedImage:r,mediaPlaceholder:a,onMoveBackward:l,onMoveForward:i,onRemoveImage:s,onSelectImage:c,onDeselectImage:u,onSetImageAttributes:m,insertBlocksAfter:d,blockProps:p}=e,{align:g,columns:h=Xr(t),caption:v,imageCrop:b,images:y}=t;return(0,ye.createElement)("figure",gt({},p,{className:nt()(p.className,{[`align${g}`]:g,[`columns-${h}`]:h,"is-cropped":b})}),(0,ye.createElement)("ul",{className:"blocks-gallery-grid"},y.map(((e,o)=>{const a=(0,we.sprintf)((0,we.__)("image %1$d of %2$d in gallery"),o+1,y.length);return(0,ye.createElement)("li",{className:"blocks-gallery-item",key:e.id?`${e.id}-${o}`:e.url},(0,ye.createElement)(Fa,{url:e.url,alt:e.alt,id:e.id,isFirstItem:0===o,isLastItem:o+1===y.length,isSelected:n&&r===o,onMoveBackward:l(o),onMoveForward:i(o),onRemove:s(o),onSelect:c(o),onDeselect:u(o),setAttributes:e=>m(o,e),caption:e.caption,"aria-label":a,sizeSlug:t.sizeSlug}))}))),a,(0,ye.createElement)(Da,{isHidden:!n&&Ee.RichText.isEmpty(v),tagName:"figcaption",className:"blocks-gallery-caption","aria-label":(0,we.__)("Gallery caption text"),placeholder:(0,we.__)("Write gallery caption"),value:v,onChange:e=>o({caption:e}),inlineToolbar:!0,__unstableOnSplitAtEnd:()=>d((0,be.createBlock)("core/paragraph"))}))};const Ua=[{value:Ha,label:(0,we.__)("Attachment Page")},{value:Va,label:(0,we.__)("Media File")},{value:La,label:(0,we.__)("None")}],Oa=["image"],qa=ye.Platform.select({web:(0,we.__)("Drag images, upload new ones or select files from your library."),native:(0,we.__)("ADD MEDIA")}),$a=ye.Platform.select({web:{},native:{type:"stepper"}});(0,ot.compose)([ke.withNotices,(0,ca.withViewportMatch)({isNarrow:"< small"})])((function(e){const{attributes:t,clientId:n,isSelected:o,noticeUI:r,noticeOperations:a,onFocus:l}=e,{columns:i=Xr(t),imageCrop:s,images:c,linkTo:u,sizeSlug:m}=t,[d,p]=(0,ye.useState)(),[g,h]=(0,ye.useState)(),{__unstableMarkNextChangeAsNotPersistent:v}=(0,Ie.useDispatch)(Ee.store),{imageSizes:b,mediaUpload:y,getMedia:f,wasBlockJustInserted:_}=(0,Ie.useSelect)((e=>{const t=e(Ee.store).getSettings();return{imageSizes:t.imageSizes,mediaUpload:t.mediaUpload,getMedia:e(Dt.store).getMedia,wasBlockJustInserted:e(Ee.store).wasBlockJustInserted(n,"inserter_menu")}})),k=(0,ye.useMemo)((()=>o?(0,Le.reduce)(t.ids,((e,t)=>{if(!t)return e;const n=f(t),o=(0,Le.reduce)(b,((e,t)=>{const o=(0,Le.get)(n,["sizes",t.slug,"url"]),r=(0,Le.get)(n,["media_details","sizes",t.slug,"source_url"]);return{...e,[t.slug]:o||r}}),{});return{...e,[parseInt(t,10)]:o}}),{}):{}),[o,t.ids,b]);function w(t){if(t.ids)throw new Error('The "ids" attribute should not be changed directly. It is managed automatically when "images" attribute changes');t.images&&(t={...t,ids:(0,Le.map)(t.images,(e=>{let{id:t}=e;return parseInt(t,10)}))}),e.setAttributes(t)}function E(e,t){const n=[...c];n.splice(t,1,c[e]),n.splice(e,1,c[t]),p(t),w({images:n})}function C(e){const t=(0,Le.toString)(e.id),n=(0,Le.find)(c,{id:t}),o=n?n.caption:e.caption;if(!g)return o;const r=(0,Le.find)(g,{id:t});return r&&r.caption!==e.caption?e.caption:o}function x(e){h(e.map((e=>({id:(0,Le.toString)(e.id),caption:e.caption})))),w({images:e.map((e=>({...za(e,m),caption:C(e),id:(0,Le.toString)(e.id)}))),columns:t.columns?Math.min(e.length,t.columns):t.columns})}(0,ye.useEffect)((()=>{if("web"===ye.Platform.OS&&c&&c.length>0&&(0,Le.every)(c,(e=>{let{url:t}=e;return(0,Pe.isBlobURL)(t)}))){const e=(0,Le.map)(c,(e=>{let{url:t}=e;return(0,Pe.getBlobByURL)(t)}));(0,Le.forEach)(c,(e=>{let{url:t}=e;return(0,Pe.revokeBlobURL)(t)})),y({filesList:e,onFileChange:x,allowedTypes:["image"]})}}),[]),(0,ye.useEffect)((()=>{o||p()}),[o]),(0,ye.useEffect)((()=>{var e,t,n,o,r,a;u||(v(),w({linkTo:(null===(e=window)||void 0===e||null===(t=e.wp)||void 0===t||null===(n=t.media)||void 0===n||null===(o=n.view)||void 0===o||null===(r=o.settings)||void 0===r||null===(a=r.defaultProps)||void 0===a?void 0:a.link)||La}))}),[u]);const S=!!c.length,B=S&&c.some((e=>!!e.id)),T=(0,ye.createElement)(Ee.MediaPlaceholder,{addToGallery:B,isAppender:S,disableMediaButtons:S&&!o,icon:!S&&ua,labels:{title:!S&&(0,we.__)("Gallery"),instructions:!S&&qa},onSelect:x,accept:"image/*",allowedTypes:Oa,multiple:!0,value:B?c:{},onError:function(e){a.removeAllNotices(),a.createErrorNotice(e)},notices:S?void 0:r,onFocus:l,autoOpenMediaUpload:!S&&o&&_}),N=(0,Ee.useBlockProps)();if(!S)return(0,ye.createElement)(fe.View,N,T);const z=(0,Le.map)((0,Le.filter)(b,(e=>{let{slug:t}=e;return(0,Le.some)(k,(e=>e[t]))})),(e=>{let{name:t,slug:n}=e;return{value:n,label:t}})),P=S&&!(0,Le.isEmpty)(z);return(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)(Ee.InspectorControls,null,(0,ye.createElement)(ke.PanelBody,{title:(0,we.__)("Gallery settings")},c.length>1&&(0,ye.createElement)(ke.RangeControl,gt({label:(0,we.__)("Columns"),value:i,onChange:function(e){w({columns:e})},min:1,max:Math.min(8,c.length)},$a,{required:!0})),(0,ye.createElement)(ke.ToggleControl,{label:(0,we.__)("Crop images"),checked:!!s,onChange:function(){w({imageCrop:!s})},help:function(e){return e?(0,we.__)("Thumbnails are cropped to align."):(0,we.__)("Thumbnails are not cropped.")}}),(0,ye.createElement)(ke.SelectControl,{label:(0,we.__)("Link to"),value:u,onChange:function(e){w({linkTo:e})},options:Ua,hideCancelButton:!0}),P&&(0,ye.createElement)(ke.SelectControl,{label:(0,we.__)("Image size"),value:m,options:z,onChange:function(e){w({images:(0,Le.map)(c,(t=>{if(!t.id)return t;const n=(0,Le.get)(k,[parseInt(t.id,10),e]);return{...t,...n&&{url:n}}})),sizeSlug:e})},hideCancelButton:!0}))),r,(0,ye.createElement)(Ga,gt({},e,{selectedImage:d,mediaPlaceholder:T,onMoveBackward:function(e){return()=>{0!==e&&E(e,e-1)}},onMoveForward:function(e){return()=>{e!==c.length-1&&E(e,e+1)}},onRemoveImage:function(e){return()=>{const n=(0,Le.filter)(c,((t,n)=>e!==n));p(),w({images:n,columns:t.columns?Math.min(n.length,t.columns):t.columns})}},onSelectImage:function(e){return()=>{p(e)}},onDeselectImage:function(){return()=>{p()}},onSetImageAttributes:function(e,t){c[e]&&w({images:[...c.slice(0,e),{...c[e],...t},...c.slice(e+1)]})},blockProps:N,onFocusGalleryCaption:function(){p()}})))}));var Wa=(0,ot.compose)([ke.withNotices])((function(e){return(0,ye.createElement)(Na,e)}));var ja=window.wp.hooks;const Za=e=>e?e.split(",").map((e=>parseInt(e,10))):[];(0,ja.addFilter)("blocks.switchToBlockType.transformedBlock","core/gallery/update-third-party-transform-to",(function(e){var t;if("core/gallery"===e.name&&(null===(t=e.attributes)||void 0===t?void 0:t.images.length)>0){const t=e.attributes.images.map((t=>{let{url:n,id:o,alt:r}=t;return(0,be.createBlock)("core/image",{url:n,id:o?parseInt(o,10):null,alt:r,sizeSlug:e.attributes.sizeSlug,linkDestination:e.attributes.linkDestination})}));delete e.attributes.ids,delete e.attributes.images,e.innerBlocks=t}return e})),(0,ja.addFilter)("blocks.switchToBlockType.transformedBlock","core/gallery/update-third-party-transform-from",(function(e,t){const n=(Array.isArray(t)?t:[t]).find((t=>{var n;return"core/gallery"===t.name&&t.innerBlocks.length>0&&!(null!==(n=t.attributes.images)&&void 0!==n&&n.length)>0&&!e.name.includes("core/")}));if(n){const e=n.innerBlocks.map((e=>{let{attributes:{url:t,id:n,alt:o}}=e;return{url:t,id:n?parseInt(n,10):null,alt:o}})),t=e.map((e=>{let{id:t}=e;return t}));n.attributes.images=e,n.attributes.ids=t}return e}));const Ka={from:[{type:"block",isMultiBlock:!0,blocks:["core/image"],transform:e=>{let{align:t,sizeSlug:n}=e[0];t=(0,Le.every)(e,["align",t])?t:void 0,n=(0,Le.every)(e,["sizeSlug",n])?n:void 0;const o=(0,Le.filter)(e,(e=>{let{url:t}=e;return t}));{const e=o.map((e=>(0,be.createBlock)("core/image",e)));return(0,be.createBlock)("core/gallery",{align:t,sizeSlug:n},e)}}},{type:"shortcode",tag:"gallery",attributes:{images:{type:"array",shortcode:e=>{let{named:{ids:t}}=e}},ids:{type:"array",shortcode:e=>{let{named:{ids:t}}=e}},shortCodeTransforms:{type:"array",shortcode:e=>{let{named:{ids:t}}=e;return Za(t).map((e=>({id:parseInt(e)})))}},columns:{type:"number",shortcode:e=>{let{named:{columns:t="3"}}=e;return parseInt(t,10)}},linkTo:{type:"string",shortcode:e=>{let{named:{link:t}}=e;switch(t){case"post":return Kr;case"file":return Zr;default:return jr}}}},isMatch(e){let{named:t}=e;return void 0!==t.ids}},{type:"files",priority:1,isMatch:e=>1!==e.length&&(0,Le.every)(e,(e=>0===e.type.indexOf("image/"))),transform(e){{const t=e.map((e=>(0,be.createBlock)("core/image",{url:(0,Pe.createBlobURL)(e)})));return(0,be.createBlock)("core/gallery",{},t)}}}],to:[{type:"block",blocks:["core/image"],transform:(e,t)=>{let{align:n,images:o,ids:r,sizeSlug:a}=e;return t.length>0?t.map((e=>{let{attributes:{id:t,url:o,alt:r,caption:a,sizeSlug:l,linkDestination:i,href:s,linkTarget:c}}=e;return(0,be.createBlock)("core/image",{id:t,url:o,alt:r,caption:a,sizeSlug:l,align:n,linkDestination:i,href:s,linkTarget:c})})):(0,be.createBlock)("core/image",{align:n})}}]};var Qa=Ka;const Ja={apiVersion:2,name:"core/gallery",title:"Gallery",category:"media",description:"Display multiple images in a rich gallery.",keywords:["images","photos"],textdomain:"default",attributes:{images:{type:"array",default:[],source:"query",selector:".blocks-gallery-item",query:{url:{type:"string",source:"attribute",selector:"img",attribute:"src"},fullUrl:{type:"string",source:"attribute",selector:"img",attribute:"data-full-url"},link:{type:"string",source:"attribute",selector:"img",attribute:"data-link"},alt:{type:"string",source:"attribute",selector:"img",attribute:"alt",default:""},id:{type:"string",source:"attribute",selector:"img",attribute:"data-id"},caption:{type:"string",source:"html",selector:".blocks-gallery-item__caption"}}},ids:{type:"array",items:{type:"number"},default:[]},shortCodeTransforms:{type:"array",default:[],items:{type:"object"}},columns:{type:"number",minimum:1,maximum:8},caption:{type:"string",source:"html",selector:".blocks-gallery-caption"},imageCrop:{type:"boolean",default:!0},fixedHeight:{type:"boolean",default:!0},linkTarget:{type:"string"},linkTo:{type:"string"},sizeSlug:{type:"string",default:"large"},allowResize:{type:"boolean",default:!1}},providesContext:{allowResize:"allowResize",imageCrop:"imageCrop",fixedHeight:"fixedHeight"},supports:{anchor:!0,align:!0},editorStyle:"wp-block-gallery-editor",style:"wp-block-gallery"},{name:Ya}=Ja,Xa={icon:Wr,example:{attributes:{columns:2},innerBlocks:[{name:"core/image",attributes:{url:"https://s.w.org/images/core/5.3/Glacial_lakes%2C_Bhutan.jpg"}},{name:"core/image",attributes:{url:"https://s.w.org/images/core/5.3/Sediment_off_the_Yucatan_Peninsula.jpg"}}]},transforms:Qa,edit:Wa,save:function(e){let{attributes:t}=e;const{caption:n,columns:o,imageCrop:r}=t,a=nt()("has-nested-images",{[`columns-${o}`]:void 0!==o,"columns-default":void 0===o,"is-cropped":r}),l=Ee.useBlockProps.save({className:a}),i=Ee.useInnerBlocksProps.save(l);return(0,ye.createElement)("figure",i,i.children,!Ee.RichText.isEmpty(n)&&(0,ye.createElement)(Ee.RichText.Content,{tagName:"figcaption",className:"blocks-gallery-caption",value:n}))},deprecated:sa};var el=(0,ye.createElement)(fe.SVG,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,ye.createElement)(fe.Path,{d:"M18 4h-7c-1.1 0-2 .9-2 2v3H6c-1.1 0-2 .9-2 2v7c0 1.1.9 2 2 2h7c1.1 0 2-.9 2-2v-3h3c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-4.5 14c0 .3-.2.5-.5.5H6c-.3 0-.5-.2-.5-.5v-7c0-.3.2-.5.5-.5h3V13c0 1.1.9 2 2 2h2.5v3zm0-4.5H11c-.3 0-.5-.2-.5-.5v-2.5H13c.3 0 .5.2.5.5v2.5zm5-.5c0 .3-.2.5-.5.5h-3V11c0-1.1-.9-2-2-2h-2.5V6c0-.3.2-.5.5-.5h7c.3 0 .5.2.5.5v7z"}));const tl=e=>{if(e.tagName||(e={...e,tagName:"div"}),!e.customTextColor&&!e.customBackgroundColor)return e;const t={color:{}};return e.customTextColor&&(t.color.text=e.customTextColor),e.customBackgroundColor&&(t.color.background=e.customBackgroundColor),{...(0,Le.omit)(e,["customTextColor","customBackgroundColor"]),style:t}},nl=[{attributes:{tagName:{type:"string",default:"div"},templateLock:{type:"string"}},supports:{align:["wide","full"],anchor:!0,color:{gradients:!0,link:!0},spacing:{padding:!0},__experimentalBorder:{radius:!0}},save(e){let{attributes:t}=e;const{tagName:n}=t;return(0,ye.createElement)(n,Ee.useBlockProps.save(),(0,ye.createElement)("div",{className:"wp-block-group__inner-container"},(0,ye.createElement)(Ee.InnerBlocks.Content,null)))}},{attributes:{backgroundColor:{type:"string"},customBackgroundColor:{type:"string"},textColor:{type:"string"},customTextColor:{type:"string"}},supports:{align:["wide","full"],anchor:!0,html:!1},migrate:tl,save(e){let{attributes:t}=e;const{backgroundColor:n,customBackgroundColor:o,textColor:r,customTextColor:a}=t,l=(0,Ee.getColorClassName)("background-color",n),i=(0,Ee.getColorClassName)("color",r),s=nt()(l,i,{"has-text-color":r||a,"has-background":n||o}),c={backgroundColor:l?void 0:o,color:i?void 0:a};return(0,ye.createElement)("div",{className:s,style:c},(0,ye.createElement)("div",{className:"wp-block-group__inner-container"},(0,ye.createElement)(Ee.InnerBlocks.Content,null)))}},{attributes:{backgroundColor:{type:"string"},customBackgroundColor:{type:"string"},textColor:{type:"string"},customTextColor:{type:"string"}},migrate:tl,supports:{align:["wide","full"],anchor:!0,html:!1},save(e){let{attributes:t}=e;const{backgroundColor:n,customBackgroundColor:o,textColor:r,customTextColor:a}=t,l=(0,Ee.getColorClassName)("background-color",n),i=(0,Ee.getColorClassName)("color",r),s=nt()(l,{"has-text-color":r||a,"has-background":n||o}),c={backgroundColor:l?void 0:o,color:i?void 0:a};return(0,ye.createElement)("div",{className:s,style:c},(0,ye.createElement)("div",{className:"wp-block-group__inner-container"},(0,ye.createElement)(Ee.InnerBlocks.Content,null)))}},{attributes:{backgroundColor:{type:"string"},customBackgroundColor:{type:"string"}},supports:{align:["wide","full"],anchor:!0,html:!1},migrate:tl,save(e){let{attributes:t}=e;const{backgroundColor:n,customBackgroundColor:o}=t,r=(0,Ee.getColorClassName)("background-color",n),a=nt()(r,{"has-background":n||o}),l={backgroundColor:r?void 0:o};return(0,ye.createElement)("div",{className:a,style:l},(0,ye.createElement)(Ee.InnerBlocks.Content,null))}}];var ol=nl;const rl={header:(0,we.__)("The <header> element should represent introductory content, typically a group of introductory or navigational aids."),main:(0,we.__)("The <main> element should be used for the primary content of your document only. "),section:(0,we.__)("The <section> element should represent a standalone portion of the document that can't be better represented by another element."),article:(0,we.__)("The <article> element should represent a self contained, syndicatable portion of the document."),aside:(0,we.__)("The <aside> element should represent a portion of a document whose content is only indirectly related to the document's main content."),footer:(0,we.__)("The <footer> element should represent a footer for its nearest sectioning element (e.g.: <section>, <article>, <main> etc.).")};var al=function(e){let{attributes:t,setAttributes:n,clientId:o}=e;const{hasInnerBlocks:r,themeSupportsLayout:a}=(0,Ie.useSelect)((e=>{var t;const{getBlock:n,getSettings:r}=e(Ee.store),a=n(o);return{hasInnerBlocks:!(!a||!a.innerBlocks.length),themeSupportsLayout:null===(t=r())||void 0===t?void 0:t.supportsLayout}}),[o]),l=(0,Ee.useSetting)("layout")||{},{tagName:i="div",templateLock:s,layout:c={}}=t,u=c&&c.inherit?l:c,{type:m="default"}=u,d=a||"default"!==m,p=(0,Ee.useBlockProps)(),g=(0,Ee.useInnerBlocksProps)(d?p:{className:"wp-block-group__inner-container"},{templateLock:s,renderAppender:r?void 0:Ee.InnerBlocks.ButtonBlockAppender,__experimentalLayout:d?u:void 0});return(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)(Ee.InspectorControls,{__experimentalGroup:"advanced"},(0,ye.createElement)(ke.SelectControl,{label:(0,we.__)("HTML element"),options:[{label:(0,we.__)("Default (<div>)"),value:"div"},{label:"<header>",value:"header"},{label:"<main>",value:"main"},{label:"<section>",value:"section"},{label:"<article>",value:"article"},{label:"<aside>",value:"aside"},{label:"<footer>",value:"footer"}],value:i,onChange:e=>n({tagName:e}),help:rl[i]})),d&&(0,ye.createElement)(i,g),!d&&(0,ye.createElement)(i,p,(0,ye.createElement)("div",g)))};const ll=[{name:"group-row",title:(0,we.__)("Row"),description:(0,we.__)("Blocks shown in a row."),attributes:{layout:{type:"flex",allowOrientation:!1}},scope:["inserter"],isActive:e=>{var t;return"flex"===(null===(t=e.layout)||void 0===t?void 0:t.type)}}];var il=ll;const sl={apiVersion:2,name:"core/group",title:"Group",category:"design",description:"Combine blocks into a group.",keywords:["container","wrapper","row","section"],textdomain:"default",attributes:{tagName:{type:"string",default:"div"},templateLock:{type:["string","boolean"],enum:["all","insert",!1]}},supports:{align:["wide","full"],anchor:!0,html:!1,color:{gradients:!0,link:!0},spacing:{padding:!0,blockGap:!0,__experimentalDefaultControls:{padding:!0,blockGap:!0}},__experimentalBorder:{color:!0,radius:!0,style:!0,width:!0},__experimentalLayout:!0},editorStyle:"wp-block-group-editor",style:"wp-block-group"},{name:cl}=sl,ul={icon:el,example:{attributes:{style:{color:{text:"#000000",background:"#ffffff"}}},innerBlocks:[{name:"core/paragraph",attributes:{customTextColor:"#cf2e2e",fontSize:"large",content:(0,we.__)("One.")}},{name:"core/paragraph",attributes:{customTextColor:"#ff6900",fontSize:"large",content:(0,we.__)("Two.")}},{name:"core/paragraph",attributes:{customTextColor:"#fcb900",fontSize:"large",content:(0,we.__)("Three.")}},{name:"core/paragraph",attributes:{customTextColor:"#00d084",fontSize:"large",content:(0,we.__)("Four.")}},{name:"core/paragraph",attributes:{customTextColor:"#0693e3",fontSize:"large",content:(0,we.__)("Five.")}},{name:"core/paragraph",attributes:{customTextColor:"#9b51e0",fontSize:"large",content:(0,we.__)("Six.")}}]},transforms:{from:[{type:"block",isMultiBlock:!0,blocks:["*"],__experimentalConvert(e){if(1===e.length&&"core/group"===e[0].name)return;const t=["wide","full"],n=e.reduce(((e,n)=>{const{align:o}=n.attributes;return t.indexOf(o)>t.indexOf(e)?o:e}),void 0),o=e.map((e=>(0,be.createBlock)(e.name,e.attributes,e.innerBlocks)));return(0,be.createBlock)("core/group",{align:n},o)}}]},edit:al,save:function(e){let{attributes:{tagName:t}}=e;return(0,ye.createElement)(t,Ee.useInnerBlocksProps.save(Ee.useBlockProps.save()))},deprecated:ol,variations:il};var ml=(0,ye.createElement)(fe.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,ye.createElement)(fe.Path,{d:"M6.2 5.2v13.4l5.8-4.8 5.8 4.8V5.2z"}));const dl={className:!1,anchor:!0},pl={align:{type:"string"},content:{type:"string",source:"html",selector:"h1,h2,h3,h4,h5,h6",default:""},level:{type:"number",default:2},placeholder:{type:"string"}},gl=e=>{if(!e.customTextColor)return e;const t={color:{text:e.customTextColor}};return{...(0,Le.omit)(e,["customTextColor"]),style:t}},hl=["left","right","center"],vl=e=>{const{align:t,...n}=e;return hl.includes(t)?{...n,textAlign:t}:e},bl=[{supports:{align:["wide","full"],anchor:!0,className:!1,color:{link:!0},fontSize:!0,lineHeight:!0,__experimentalSelector:{"core/heading/h1":"h1","core/heading/h2":"h2","core/heading/h3":"h3","core/heading/h4":"h4","core/heading/h5":"h5","core/heading/h6":"h6"},__unstablePasteTextInline:!0},attributes:pl,isEligible:e=>{let{align:t}=e;return hl.includes(t)},migrate:vl,save(e){let{attributes:t}=e;const{align:n,content:o,level:r}=t,a="h"+r,l=nt()({[`has-text-align-${n}`]:n});return(0,ye.createElement)(a,Ee.useBlockProps.save({className:l}),(0,ye.createElement)(Ee.RichText.Content,{value:o}))}},{supports:dl,attributes:{...pl,customTextColor:{type:"string"},textColor:{type:"string"}},migrate:e=>gl(vl(e)),save(e){let{attributes:t}=e;const{align:n,content:o,customTextColor:r,level:a,textColor:l}=t,i="h"+a,s=(0,Ee.getColorClassName)("color",l),c=nt()({[s]:s,"has-text-color":l||r,[`has-text-align-${n}`]:n});return(0,ye.createElement)(Ee.RichText.Content,{className:c||void 0,tagName:i,style:{color:s?void 0:r},value:o})}},{attributes:{...pl,customTextColor:{type:"string"},textColor:{type:"string"}},migrate:e=>gl(vl(e)),save(e){let{attributes:t}=e;const{align:n,content:o,customTextColor:r,level:a,textColor:l}=t,i="h"+a,s=(0,Ee.getColorClassName)("color",l),c=nt()({[s]:s,[`has-text-align-${n}`]:n});return(0,ye.createElement)(Ee.RichText.Content,{className:c||void 0,tagName:i,style:{color:s?void 0:r},value:o})},supports:dl},{supports:dl,attributes:{...pl,customTextColor:{type:"string"},textColor:{type:"string"}},migrate:e=>gl(vl(e)),save(e){let{attributes:t}=e;const{align:n,level:o,content:r,textColor:a,customTextColor:l}=t,i="h"+o,s=(0,Ee.getColorClassName)("color",a),c=nt()({[s]:s});return(0,ye.createElement)(Ee.RichText.Content,{className:c||void 0,tagName:i,style:{textAlign:n,color:s?void 0:l},value:r})}}];var yl=bl;function fl(e){let{level:t,isPressed:n=!1}=e;const o={1:"M9 5h2v10H9v-4H5v4H3V5h2v4h4V5zm6.6 0c-.6.9-1.5 1.7-2.6 2v1h2v7h2V5h-1.4z",2:"M7 5h2v10H7v-4H3v4H1V5h2v4h4V5zm8 8c.5-.4.6-.6 1.1-1.1.4-.4.8-.8 1.2-1.3.3-.4.6-.8.9-1.3.2-.4.3-.8.3-1.3 0-.4-.1-.9-.3-1.3-.2-.4-.4-.7-.8-1-.3-.3-.7-.5-1.2-.6-.5-.2-1-.2-1.5-.2-.4 0-.7 0-1.1.1-.3.1-.7.2-1 .3-.3.1-.6.3-.9.5-.3.2-.6.4-.8.7l1.2 1.2c.3-.3.6-.5 1-.7.4-.2.7-.3 1.2-.3s.9.1 1.3.4c.3.3.5.7.5 1.1 0 .4-.1.8-.4 1.1-.3.5-.6.9-1 1.2-.4.4-1 .9-1.6 1.4-.6.5-1.4 1.1-2.2 1.6V15h8v-2H15z",3:"M12.1 12.2c.4.3.8.5 1.2.7.4.2.9.3 1.4.3.5 0 1-.1 1.4-.3.3-.1.5-.5.5-.8 0-.2 0-.4-.1-.6-.1-.2-.3-.3-.5-.4-.3-.1-.7-.2-1-.3-.5-.1-1-.1-1.5-.1V9.1c.7.1 1.5-.1 2.2-.4.4-.2.6-.5.6-.9 0-.3-.1-.6-.4-.8-.3-.2-.7-.3-1.1-.3-.4 0-.8.1-1.1.3-.4.2-.7.4-1.1.6l-1.2-1.4c.5-.4 1.1-.7 1.6-.9.5-.2 1.2-.3 1.8-.3.5 0 1 .1 1.6.2.4.1.8.3 1.2.5.3.2.6.5.8.8.2.3.3.7.3 1.1 0 .5-.2.9-.5 1.3-.4.4-.9.7-1.5.9v.1c.6.1 1.2.4 1.6.8.4.4.7.9.7 1.5 0 .4-.1.8-.3 1.2-.2.4-.5.7-.9.9-.4.3-.9.4-1.3.5-.5.1-1 .2-1.6.2-.8 0-1.6-.1-2.3-.4-.6-.2-1.1-.6-1.6-1l1.1-1.4zM7 9H3V5H1v10h2v-4h4v4h2V5H7v4z",4:"M9 15H7v-4H3v4H1V5h2v4h4V5h2v10zm10-2h-1v2h-2v-2h-5v-2l4-6h3v6h1v2zm-3-2V7l-2.8 4H16z",5:"M12.1 12.2c.4.3.7.5 1.1.7.4.2.9.3 1.3.3.5 0 1-.1 1.4-.4.4-.3.6-.7.6-1.1 0-.4-.2-.9-.6-1.1-.4-.3-.9-.4-1.4-.4H14c-.1 0-.3 0-.4.1l-.4.1-.5.2-1-.6.3-5h6.4v1.9h-4.3L14 8.8c.2-.1.5-.1.7-.2.2 0 .5-.1.7-.1.5 0 .9.1 1.4.2.4.1.8.3 1.1.6.3.2.6.6.8.9.2.4.3.9.3 1.4 0 .5-.1 1-.3 1.4-.2.4-.5.8-.9 1.1-.4.3-.8.5-1.3.7-.5.2-1 .3-1.5.3-.8 0-1.6-.1-2.3-.4-.6-.2-1.1-.6-1.6-1-.1-.1 1-1.5 1-1.5zM9 15H7v-4H3v4H1V5h2v4h4V5h2v10z",6:"M9 15H7v-4H3v4H1V5h2v4h4V5h2v10zm8.6-7.5c-.2-.2-.5-.4-.8-.5-.6-.2-1.3-.2-1.9 0-.3.1-.6.3-.8.5l-.6.9c-.2.5-.2.9-.2 1.4.4-.3.8-.6 1.2-.8.4-.2.8-.3 1.3-.3.4 0 .8 0 1.2.2.4.1.7.3 1 .6.3.3.5.6.7.9.2.4.3.8.3 1.3s-.1.9-.3 1.4c-.2.4-.5.7-.8 1-.4.3-.8.5-1.2.6-1 .3-2 .3-3 0-.5-.2-1-.5-1.4-.9-.4-.4-.8-.9-1-1.5-.2-.6-.3-1.3-.3-2.1s.1-1.6.4-2.3c.2-.6.6-1.2 1-1.6.4-.4.9-.7 1.4-.9.6-.3 1.1-.4 1.7-.4.7 0 1.4.1 2 .3.5.2 1 .5 1.4.8 0 .1-1.3 1.4-1.3 1.4zm-2.4 5.8c.2 0 .4 0 .6-.1.2 0 .4-.1.5-.2.1-.1.3-.3.4-.5.1-.2.1-.5.1-.7 0-.4-.1-.8-.4-1.1-.3-.2-.7-.3-1.1-.3-.3 0-.7.1-1 .2-.4.2-.7.4-1 .7 0 .3.1.7.3 1 .1.2.3.4.4.6.2.1.3.3.5.3.2.1.5.2.7.1z"};return o.hasOwnProperty(t)?(0,ye.createElement)(ke.SVG,{width:"24",height:"24",viewBox:"0 0 20 20",xmlns:"http://www.w3.org/2000/svg",isPressed:n},(0,ye.createElement)(ke.Path,{d:o[t]})):null}const _l=[1,2,3,4,5,6],kl={className:"block-library-heading-level-dropdown"};function wl(e){let{selectedLevel:t,onChange:n}=e;return(0,ye.createElement)(ke.ToolbarDropdownMenu,{popoverProps:kl,icon:(0,ye.createElement)(fl,{level:t}),label:(0,we.__)("Change heading level"),controls:_l.map((e=>{{const o=e===t;return{icon:(0,ye.createElement)(fl,{level:e,isPressed:o}),label:(0,we.sprintf)((0,we.__)("Heading %d"),e),isActive:o,onClick(){n(e)}}}}))})}const El={},Cl=e=>(0,Le.trim)((0,Le.deburr)((e=>{const t=document.createElement("div");return t.innerHTML=e,t.innerText})(e)).replace(/[^\p{L}\p{N}]+/gu,"-").toLowerCase(),"-"),xl=(e,t)=>{const n=Cl(t);if(""===n)return null;delete El[e];let o=n,r=0;for(;Object.values(El).includes(o);)r+=1,o=n+"-"+r;return o},Sl=(e,t)=>{El[e]=t};var Bl=function(e){let{attributes:t,setAttributes:n,mergeBlocks:o,onReplace:r,style:a,clientId:l}=e;const{textAlign:i,content:s,level:c,placeholder:u,anchor:m}=t,d="h"+c,p=(0,Ee.useBlockProps)({className:nt()({[`has-text-align-${i}`]:i}),style:a}),{canGenerateAnchors:g}=(0,Ie.useSelect)((e=>({canGenerateAnchors:!!e(Ee.store).getSettings().__experimentalGenerateAnchors})),[]),{__unstableMarkNextChangeAsNotPersistent:h}=(0,Ie.useDispatch)(Ee.store);return(0,ye.useEffect)((()=>{if(g)return!m&&s&&(h(),n({anchor:xl(l,s)})),Sl(l,m),()=>Sl(l,null)}),[m,s,l,g]),(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)(Ee.BlockControls,{group:"block"},(0,ye.createElement)(wl,{selectedLevel:c,onChange:e=>n({level:e})}),(0,ye.createElement)(Ee.AlignmentControl,{value:i,onChange:e=>{n({textAlign:e})}})),(0,ye.createElement)(Ee.RichText,gt({identifier:"content",tagName:d,value:s,onChange:e=>{const t={content:e};!g||m&&e&&xl(l,s)!==m||(t.anchor=xl(l,e)),n(t)},onMerge:o,onSplit:(e,n)=>{let o;var r;n||e?o=(0,be.createBlock)("core/heading",{...t,content:e}):o=(0,be.createBlock)(null!==(r=(0,be.getDefaultBlockName)())&&void 0!==r?r:"core/heading");return n&&(o.clientId=l),o},onReplace:r,onRemove:()=>r([]),"aria-label":(0,we.__)("Heading text"),placeholder:u||(0,we.__)("Heading"),textAlign:i},p)))};const{name:Tl}={apiVersion:2,name:"core/heading",title:"Heading",category:"text",description:"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.",keywords:["title","subtitle"],textdomain:"default",attributes:{textAlign:{type:"string"},content:{type:"string",source:"html",selector:"h1,h2,h3,h4,h5,h6",default:"",__experimentalRole:"content"},level:{type:"number",default:2},placeholder:{type:"string"}},supports:{align:["wide","full"],anchor:!0,className:!1,color:{link:!0},spacing:{margin:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0,__experimentalLetterSpacing:!0,__experimentalTextTransform:!0,__experimentalDefaultControls:{fontSize:!0,fontAppearance:!0,textTransform:!0}},__experimentalSelector:"h1,h2,h3,h4,h5,h6",__unstablePasteTextInline:!0,__experimentalSlashInserter:!0},editorStyle:"wp-block-heading-editor",style:"wp-block-heading"},Nl={from:[{type:"block",isMultiBlock:!0,blocks:["core/paragraph"],transform:e=>e.map((e=>{let{content:t,anchor:n}=e;return(0,be.createBlock)(Tl,{content:t,anchor:n})}))},{type:"raw",selector:"h1,h2,h3,h4,h5,h6",schema:e=>{let{phrasingContentSchema:t,isPaste:n}=e;const o={children:t,attributes:n?[]:["style","id"]};return{h1:o,h2:o,h3:o,h4:o,h5:o,h6:o}},transform(e){const t=(0,be.getBlockAttributes)(Tl,e.outerHTML),{textAlign:n}=e.style||{};var o;return t.level=(o=e.nodeName,Number(o.substr(1))),"left"!==n&&"center"!==n&&"right"!==n||(t.align=n),(0,be.createBlock)(Tl,t)}},...[1,2,3,4,5,6].map((e=>({type:"prefix",prefix:Array(e+1).join("#"),transform:t=>(0,be.createBlock)(Tl,{level:e,content:t})}))),...[1,2,3,4,5,6].map((e=>({type:"enter",regExp:new RegExp(`^/(h|H)${e}$`),transform:t=>(0,be.createBlock)(Tl,{level:e,content:t})})))],to:[{type:"block",isMultiBlock:!0,blocks:["core/paragraph"],transform:e=>e.map((e=>{let{content:t,anchor:n}=e;return(0,be.createBlock)("core/paragraph",{content:t,anchor:n})}))}]};var zl=Nl;const Pl={apiVersion:2,name:"core/heading",title:"Heading",category:"text",description:"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.",keywords:["title","subtitle"],textdomain:"default",attributes:{textAlign:{type:"string"},content:{type:"string",source:"html",selector:"h1,h2,h3,h4,h5,h6",default:"",__experimentalRole:"content"},level:{type:"number",default:2},placeholder:{type:"string"}},supports:{align:["wide","full"],anchor:!0,className:!1,color:{link:!0},spacing:{margin:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0,__experimentalLetterSpacing:!0,__experimentalTextTransform:!0,__experimentalDefaultControls:{fontSize:!0,fontAppearance:!0,textTransform:!0}},__experimentalSelector:"h1,h2,h3,h4,h5,h6",__unstablePasteTextInline:!0,__experimentalSlashInserter:!0},editorStyle:"wp-block-heading-editor",style:"wp-block-heading"},{name:Il}=Pl,Ml={icon:ml,example:{attributes:{content:(0,we.__)("Code is Poetry"),level:2}},__experimentalLabel(e,t){let{context:n}=t;if("accessibility"===n){const{content:t,level:n}=e;return(0,Le.isEmpty)(t)?(0,we.sprintf)((0,we.__)("Level %s. Empty."),n):(0,we.sprintf)((0,we.__)("Level %1$s. %2$s"),n,t)}},transforms:zl,deprecated:yl,merge:(e,t)=>({content:(e.content||"")+(t.content||"")}),edit:Bl,save:function(e){let{attributes:t}=e;const{textAlign:n,content:o,level:r}=t,a="h"+r,l=nt()({[`has-text-align-${n}`]:n});return(0,ye.createElement)(a,Ee.useBlockProps.save({className:l}),(0,ye.createElement)(Ee.RichText.Content,{value:o}))}};var Rl=(0,ye.createElement)(fe.SVG,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,ye.createElement)(fe.Path,{d:"M4.8 11.4H2.1V9H1v6h1.1v-2.6h2.7V15h1.1V9H4.8v2.4zm1.9-1.3h1.7V15h1.1v-4.9h1.7V9H6.7v1.1zM16.2 9l-1.5 2.7L13.3 9h-.9l-.8 6h1.1l.5-4 1.5 2.8 1.5-2.8.5 4h1.1L17 9h-.8zm3.8 5V9h-1.1v6h3.6v-1H20z"}));var Ll={from:[{type:"block",blocks:["core/code"],transform:e=>{let{content:t}=e;return(0,be.createBlock)("core/html",{content:t})}}]};const Vl={apiVersion:2,name:"core/html",title:"Custom HTML",category:"widgets",description:"Add custom HTML code and preview it as you edit.",keywords:["embed"],textdomain:"default",attributes:{content:{type:"string",source:"html"}},supports:{customClassName:!1,className:!1,html:!1},editorStyle:"wp-block-html-editor"},{name:Hl}=Vl,Al={icon:Rl,example:{attributes:{content:"<marquee>"+(0,we.__)("Welcome to the wonderful world of blocks")+"</marquee>"}},edit:function(e){let{attributes:t,setAttributes:n,isSelected:o}=e;const[r,a]=(0,ye.useState)(),l=(0,Ie.useSelect)((e=>["\n\t\t\thtml,body,:root {\n\t\t\t\tmargin: 0 !important;\n\t\t\t\tpadding: 0 !important;\n\t\t\t\toverflow: visible !important;\n\t\t\t\tmin-height: auto !important;\n\t\t\t}\n\t\t",...(0,Ee.transformStyles)(e(Ee.store).getSettings().styles)]),[]);return(0,ye.createElement)("div",(0,Ee.useBlockProps)({className:"block-library-html__edit"}),(0,ye.createElement)(Ee.BlockControls,null,(0,ye.createElement)(ke.ToolbarGroup,null,(0,ye.createElement)(ke.ToolbarButton,{className:"components-tab-button",isPressed:!r,onClick:function(){a(!1)}},(0,ye.createElement)("span",null,"HTML")),(0,ye.createElement)(ke.ToolbarButton,{className:"components-tab-button",isPressed:r,onClick:function(){a(!0)}},(0,ye.createElement)("span",null,(0,we.__)("Preview"))))),(0,ye.createElement)(ke.Disabled.Consumer,null,(e=>r||e?(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)(ke.SandBox,{html:t.content,styles:l}),!o&&(0,ye.createElement)("div",{className:"block-library-html__preview-overlay"})):(0,ye.createElement)(Ee.PlainText,{value:t.content,onChange:e=>n({content:e}),placeholder:(0,we.__)("Write HTML"),"aria-label":(0,we.__)("HTML")}))))},save:function(e){let{attributes:t}=e;return(0,ye.createElement)(ye.RawHTML,null,t.content)},transforms:Ll},Fl={align:{type:"string"},url:{type:"string",source:"attribute",selector:"img",attribute:"src"},alt:{type:"string",source:"attribute",selector:"img",attribute:"alt",default:""},caption:{type:"string",source:"html",selector:"figcaption"},href:{type:"string",source:"attribute",selector:"figure > a",attribute:"href"},rel:{type:"string",source:"attribute",selector:"figure > a",attribute:"rel"},linkClass:{type:"string",source:"attribute",selector:"figure > a",attribute:"class"},id:{type:"number"},width:{type:"number"},height:{type:"number"},linkDestination:{type:"string"},linkTarget:{type:"string",source:"attribute",selector:"figure > a",attribute:"target"}},Dl=[{attributes:Fl,save(e){let{attributes:t}=e;const{url:n,alt:o,caption:r,align:a,href:l,width:i,height:s,id:c}=t,u=nt()({[`align${a}`]:a,"is-resized":i||s}),m=(0,ye.createElement)("img",{src:n,alt:o,className:c?`wp-image-${c}`:null,width:i,height:s});return(0,ye.createElement)("figure",{className:u},l?(0,ye.createElement)("a",{href:l},m):m,!Ee.RichText.isEmpty(r)&&(0,ye.createElement)(Ee.RichText.Content,{tagName:"figcaption",value:r}))}},{attributes:Fl,save(e){let{attributes:t}=e;const{url:n,alt:o,caption:r,align:a,href:l,width:i,height:s,id:c}=t,u=(0,ye.createElement)("img",{src:n,alt:o,className:c?`wp-image-${c}`:null,width:i,height:s});return(0,ye.createElement)("figure",{className:a?`align${a}`:null},l?(0,ye.createElement)("a",{href:l},u):u,!Ee.RichText.isEmpty(r)&&(0,ye.createElement)(Ee.RichText.Content,{tagName:"figcaption",value:r}))}},{attributes:Fl,save(e){let{attributes:t}=e;const{url:n,alt:o,caption:r,align:a,href:l,width:i,height:s}=t,c=i||s?{width:i,height:s}:{},u=(0,ye.createElement)("img",gt({src:n,alt:o},c));let m={};return i?m={width:i}:"left"!==a&&"right"!==a||(m={maxWidth:"50%"}),(0,ye.createElement)("figure",{className:a?`align${a}`:null,style:m},l?(0,ye.createElement)("a",{href:l},u):u,!Ee.RichText.isEmpty(r)&&(0,ye.createElement)(Ee.RichText.Content,{tagName:"figcaption",value:r}))}}];var Gl=Dl;var Ul=(0,ye.createElement)(fe.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,ye.createElement)(fe.Path,{d:"M16.5 7.8v7H18v-7c0-1-.8-1.8-1.8-1.8h-7v1.5h7c.2 0 .3.1.3.3zm-8.7 8.7c-.1 0-.2-.1-.2-.2V2H6v4H2v1.5h4v8.8c0 1 .8 1.8 1.8 1.8h8.8v4H18v-4h4v-1.5H7.8z"}));var Ol=(0,ye.createElement)(fe.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,ye.createElement)(fe.Path,{d:"M18.5 15v3.5H13V6.7l4.5 4.1 1-1.1-6.2-5.8-5.8 5.8 1 1.1 4-4v11.7h-6V15H4v5h16v-5z"}));var ql=(0,ye.createElement)(fe.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,ye.createElement)(fe.Path,{d:"M18 4H6c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12-9.8c.4 0 .8-.3.9-.7l1.1-3h3.6l.5 1.7h1.9L13 9h-2.2l-3.4 9.5H6c-.3 0-.5-.2-.5-.5V6c0-.3.2-.5.5-.5h12c.3 0 .5.2.5.5v12H20V6c0-1.1-.9-2-2-2zm-6 7l1.4 3.9h-2.7L12 11z"}));function $l(e,t){const[n,o]=(0,ye.useState)();function r(){o(e.current.clientWidth)}return(0,ye.useEffect)(r,t),(0,ye.useEffect)((()=>{const{defaultView:t}=e.current.ownerDocument;return t.addEventListener("resize",r),()=>{t.removeEventListener("resize",r)}}),[]),n}function Wl(e){var t;let{temporaryURL:n,attributes:{url:o="",alt:r,caption:a,align:l,id:i,href:s,rel:c,linkClass:u,linkDestination:m,title:d,width:p,height:g,linkTarget:h,sizeSlug:v},setAttributes:b,isSelected:y,insertBlocksAfter:f,onReplace:_,onSelectImage:k,onSelectURL:w,onUploadError:E,containerRef:C,context:x,clientId:S}=e;const B=(0,ye.useRef)(),T=(0,ye.useRef)(),N=(0,ot.usePrevious)(o),{allowResize:z=!0}=x,{getBlock:P}=(0,Ie.useSelect)(Ee.store),{image:I,multiImageSelection:M}=(0,Ie.useSelect)((e=>{const{getMedia:t}=e(Dt.store),{getMultiSelectedBlockClientIds:n,getBlockName:o}=e(Ee.store),r=n();return{image:i&&y?t(i):null,multiImageSelection:r.length&&r.every((e=>"core/image"===o(e)))}}),[i,y]),{canInsertCover:R,imageEditing:L,imageSizes:V,maxWidth:H,mediaUpload:A}=(0,Ie.useSelect)((e=>{const{getBlockRootClientId:t,getSettings:n,canInsertBlockType:o}=e(Ee.store),r=t(S);return{...(0,Le.pick)(n(),["imageEditing","imageSizes","maxWidth","mediaUpload"]),canInsertCover:o("core/cover",r)}}),[S]),{replaceBlocks:F,toggleSelection:D}=(0,Ie.useDispatch)(Ee.store),{createErrorNotice:G,createSuccessNotice:U}=(0,Ie.useDispatch)(Ir.store),O=(0,ot.useViewportMatch)("medium"),q=(0,Le.includes)(["wide","full"],l),[{loadedNaturalWidth:$,loadedNaturalHeight:W},j]=(0,ye.useState)({}),[Z,K]=(0,ye.useState)(!1),[Q,J]=(0,ye.useState)(),Y=$l(C,[l]),X=z&&!(q&&O),ee=(0,Le.map)((0,Le.filter)(V,(e=>{let{slug:t}=e;return(0,Le.get)(I,["media_details","sizes",t,"source_url"])})),(e=>{let{name:t,slug:n}=e;return{value:n,label:t}}));(0,ye.useEffect)((()=>{jl(i,o)&&y&&!Q&&window.fetch(o).then((e=>e.blob())).then((e=>J(e))).catch((()=>{}))}),[i,o,y,Q]),(0,ye.useEffect)((()=>{o&&!N&&y&&T.current.focus()}),[o,N]);const{naturalWidth:te,naturalHeight:ne}=(0,ye.useMemo)((()=>{var e,t;return{naturalWidth:(null===(e=B.current)||void 0===e?void 0:e.naturalWidth)||$||void 0,naturalHeight:(null===(t=B.current)||void 0===t?void 0:t.naturalHeight)||W||void 0}}),[$,W,null===(t=B.current)||void 0===t?void 0:t.complete]);(0,ye.useEffect)((()=>{y||K(!1)}),[y]);const oe=i&&te&&ne&&L,re=!M&&oe&&!Z;const ae=(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)(Ee.BlockControls,{group:"block"},(0,ye.createElement)(Ee.BlockAlignmentControl,{value:l,onChange:function(e){const t=["wide","full"].includes(e)?{width:void 0,height:void 0}:{};b({...t,align:e})}}),!M&&!Z&&(0,ye.createElement)(Ee.__experimentalImageURLInputUI,{url:s||"",onChangeUrl:function(e){b(e)},linkDestination:m,mediaUrl:I&&I.source_url||o,mediaLink:I&&I.link,linkTarget:h,linkClass:u,rel:c}),re&&(0,ye.createElement)(ke.ToolbarButton,{onClick:()=>K(!0),icon:Ul,label:(0,we.__)("Crop")}),Q&&(0,ye.createElement)(ke.ToolbarButton,{onClick:function(){A({filesList:[Q],onFileChange(e){let[t]=e;k(t),(0,Pe.isBlobURL)(t.url)||(J(),U((0,we.__)("Image uploaded."),{type:"snackbar"}))},allowedTypes:ba,onError(e){G(e,{type:"snackbar"})}})},icon:Ol,label:(0,we.__)("Upload external image")}),!M&&R&&(0,ye.createElement)(ke.ToolbarButton,{icon:ql,label:(0,we.__)("Add text over image"),onClick:function(){F(S,(0,be.switchToBlockType)(P(S),"core/cover"))}})),!M&&!Z&&(0,ye.createElement)(Ee.BlockControls,{group:"other"},(0,ye.createElement)(Ee.MediaReplaceFlow,{mediaId:i,mediaURL:o,allowedTypes:ba,accept:"image/*",onSelect:k,onSelectURL:w,onError:E})),(0,ye.createElement)(Ee.InspectorControls,null,(0,ye.createElement)(ke.PanelBody,{title:(0,we.__)("Image settings")},!M&&(0,ye.createElement)(ke.TextareaControl,{label:(0,we.__)("Alt text (alternative text)"),value:r,onChange:function(e){b({alt:e})},help:(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)(ke.ExternalLink,{href:"https://www.w3.org/WAI/tutorials/images/decision-tree"},(0,we.__)("Describe the purpose of the image")),(0,we.__)("Leave empty if the image is purely decorative."))}),(0,ye.createElement)(Ee.__experimentalImageSizeControl,{onChangeImage:function(e){const t=(0,Le.get)(I,["media_details","sizes",e,"source_url"]);if(!t)return null;b({url:t,width:void 0,height:void 0,sizeSlug:e})},onChange:e=>b(e),slug:v,width:p,height:g,imageSizeOptions:ee,isResizable:X,imageWidth:te,imageHeight:ne}))),(0,ye.createElement)(Ee.InspectorControls,{__experimentalGroup:"advanced"},(0,ye.createElement)(ke.TextControl,{label:(0,we.__)("Title attribute"),value:d||"",onChange:function(e){b({title:e})},help:(0,ye.createElement)(ye.Fragment,null,(0,we.__)("Describe the role of this image on the page."),(0,ye.createElement)(ke.ExternalLink,{href:"https://www.w3.org/TR/html52/dom.html#the-title-attribute"},(0,we.__)("(Note: many devices and browsers do not display this text.)")))}))),le=(0,Dr.getFilename)(o);let ie;ie=r||(le?(0,we.sprintf)((0,we.__)("This image has an empty alt attribute; its file name is %s"),le):(0,we.__)("This image has an empty alt attribute"));let se,ce,ue=(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)("img",{src:n||o,alt:ie,onError:()=>function(){const e=Oe({attributes:{url:o}});void 0!==e&&_(e)}(),onLoad:e=>{var t,n;j({loadedNaturalWidth:null===(t=e.target)||void 0===t?void 0:t.naturalWidth,loadedNaturalHeight:null===(n=e.target)||void 0===n?void 0:n.naturalHeight})},ref:B}),n&&(0,ye.createElement)(ke.Spinner,null));if(Y&&te&&ne){const e=te>Y,t=ne/te;se=e?Y:te,ce=e?Y*t:ne}if(oe&&Z)ue=(0,ye.createElement)(Ee.__experimentalImageEditor,{url:o,width:p,height:g,clientWidth:Y,naturalHeight:ne,naturalWidth:te});else if(X&&se){const e=p||se,t=g||ce,n=te/ne,o=te<ne?ma:ma*n,r=ne<te?ma:ma/n,a=2.5*H;let i=!1,s=!1;"center"===l?(i=!0,s=!0):(0,we.isRTL)()?"left"===l?i=!0:s=!0:"right"===l?s=!0:i=!0,ue=(0,ye.createElement)(ke.ResizableBox,{size:{width:null!=p?p:"auto",height:null!=g?g:"auto"},showHandle:y,minWidth:o,maxWidth:a,minHeight:r,maxHeight:a/n,lockAspectRatio:!0,enable:{top:!1,right:i,bottom:!0,left:s},onResizeStart:function(){D(!1)},onResizeStop:(n,o,r,a)=>{D(!0),b({width:parseInt(e+a.width,10),height:parseInt(t+a.height,10)})}},ue)}else ue=(0,ye.createElement)("div",{style:{width:p,height:g}},ue);return(0,ye.createElement)(Ee.__experimentalImageEditingProvider,{id:i,url:o,naturalWidth:te,naturalHeight:ne,clientWidth:Y,onSaveImage:e=>b(e),isEditing:Z,onFinishEditing:()=>K(!1)},!n&&ae,ue,(!Ee.RichText.isEmpty(a)||y)&&(0,ye.createElement)(Ee.RichText,{ref:T,tagName:"figcaption","aria-label":(0,we.__)("Image caption text"),placeholder:(0,we.__)("Add caption"),value:a,onChange:e=>b({caption:e}),inlineToolbar:!0,__unstableOnSplitAtEnd:()=>f((0,be.createBlock)("core/paragraph"))}))}const jl=(e,t)=>t&&!e&&!(0,Pe.isBlobURL)(t);var Zl=(0,ke.withNotices)((function(e){let{attributes:t,setAttributes:n,isSelected:o,className:r,noticeUI:a,insertBlocksAfter:l,noticeOperations:i,onReplace:s,context:c,clientId:u}=e;const{url:m="",alt:d,caption:p,align:g,id:h,width:v,height:b,sizeSlug:y}=t,[f,_]=(0,ye.useState)(),k=(0,ye.useRef)();(0,ye.useEffect)((()=>{k.current=d}),[d]);const w=(0,ye.useRef)();(0,ye.useEffect)((()=>{w.current=p}),[p]);const E=(0,ye.useRef)(),{imageDefaultSize:C,mediaUpload:x}=(0,Ie.useSelect)((e=>{const{getSettings:t}=e(Ee.store);return(0,Le.pick)(t(),["imageDefaultSize","mediaUpload"])}),[]);function S(e){i.removeAllNotices(),i.createErrorNotice(e)}function B(e){var o,r,a,l,i;if(!e||!e.url)return void n({url:void 0,alt:void 0,id:void 0,title:void 0,caption:void 0});if((0,Pe.isBlobURL)(e.url))return void _(e.url);_();let s,c=((e,t)=>{const n=(0,Le.pick)(e,["alt","id","link","caption"]);return n.url=(0,Le.get)(e,["sizes",t,"url"])||(0,Le.get)(e,["media_details","sizes",t,"source_url"])||e.url,n})(e,C);var u,d;w.current&&!(0,Le.get)(c,["caption"])&&(c=(0,Le.omit)(c,["caption"])),s=e.id&&e.id===h?{url:m}:{width:void 0,height:void 0,sizeSlug:(u=e,d=C,(0,Le.has)(u,["sizes",d,"url"])||(0,Le.has)(u,["media_details","sizes",d,"source_url"])?C:"full")};let p,g=t.linkDestination;if(!g)switch((null===(o=wp)||void 0===o||null===(r=o.media)||void 0===r||null===(a=r.view)||void 0===a||null===(l=a.settings)||void 0===l||null===(i=l.defaultProps)||void 0===i?void 0:i.link)||da){case"file":case pa:g=pa;break;case"post":case ga:g=ga;break;case ha:g=ha;break;case da:g=da}switch(g){case pa:p=e.url;break;case ga:p=e.link}c.href=p,n({...c,...s,linkDestination:g})}function T(e){e!==m&&n({url:e,id:void 0,width:void 0,height:void 0,sizeSlug:C})}let N=((e,t)=>!e&&(0,Pe.isBlobURL)(t))(h,m);(0,ye.useEffect)((()=>{if(!N)return;const e=(0,Pe.getBlobByURL)(m);e&&x({filesList:[e],onFileChange:e=>{let[t]=e;B(t)},allowedTypes:ba,onError:e=>{N=!1,i.createErrorNotice(e),n({src:void 0,id:void 0,url:void 0})}})}),[]),(0,ye.useEffect)((()=>{N?_(m):(0,Pe.revokeBlobURL)(f)}),[N,m]);const z=jl(h,m)?m:void 0,P=!!m&&(0,ye.createElement)("img",{alt:(0,we.__)("Edit image"),title:(0,we.__)("Edit image"),className:"edit-image-preview",src:m}),I=nt()(r,{"is-transient":f,"is-resized":!!v||!!b,[`size-${y}`]:y}),M=(0,Ee.useBlockProps)({ref:E,className:I});return(0,ye.createElement)("figure",M,(f||m)&&(0,ye.createElement)(Wl,{temporaryURL:f,attributes:t,setAttributes:n,isSelected:o,insertBlocksAfter:l,onReplace:s,onSelectImage:B,onSelectURL:T,onUploadError:S,containerRef:E,context:c,clientId:u}),!m&&(0,ye.createElement)(Ee.BlockControls,{group:"block"},(0,ye.createElement)(Ee.BlockAlignmentControl,{value:g,onChange:function(e){const t=["wide","full"].includes(e)?{width:void 0,height:void 0}:{};n({...t,align:e})}})),(0,ye.createElement)(Ee.MediaPlaceholder,{icon:(0,ye.createElement)(Ee.BlockIcon,{icon:Pa}),onSelect:B,onSelectURL:T,notices:a,onError:S,accept:"image/*",allowedTypes:ba,value:{id:h,src:z},mediaPreview:P,disableMediaButtons:f||m}))}));function Kl(e,t){const{body:n}=document.implementation.createHTMLDocument("");n.innerHTML=e;const{firstElementChild:o}=n;if(o&&"A"===o.nodeName)return o.getAttribute(t)||void 0}const Ql={img:{attributes:["src","alt","title"],classes:["alignleft","aligncenter","alignright","alignnone",/^wp-image-\d+$/]}},Jl={from:[{type:"raw",isMatch:e=>"FIGURE"===e.nodeName&&!!e.querySelector("img"),schema:e=>{let{phrasingContentSchema:t}=e;return{figure:{require:["img"],children:{...Ql,a:{attributes:["href","rel","target"],children:Ql},figcaption:{children:t}}}}},transform:e=>{const t=e.className+" "+e.querySelector("img").className,n=/(?:^|\s)align(left|center|right)(?:$|\s)/.exec(t),o=""===e.id?void 0:e.id,r=n?n[1]:void 0,a=/(?:^|\s)wp-image-(\d+)(?:$|\s)/.exec(t),l=a?Number(a[1]):void 0,i=e.querySelector("a"),s=i&&i.href?"custom":void 0,c=i&&i.href?i.href:void 0,u=i&&i.rel?i.rel:void 0,m=i&&i.className?i.className:void 0,d=(0,be.getBlockAttributes)("core/image",e.outerHTML,{align:r,id:l,linkDestination:s,href:c,rel:u,linkClass:m,anchor:o});return(0,be.createBlock)("core/image",d)}},{type:"files",isMatch(e){if(e.some((e=>0===e.type.indexOf("image/")))&&e.some((e=>0!==e.type.indexOf("image/")))){const{createErrorNotice:e}=(0,Ie.dispatch)(Ir.store);e((0,we.__)("If uploading to a gallery all files need to be image formats"),{id:"gallery-transform-invalid-file"})}return(0,Le.every)(e,(e=>0===e.type.indexOf("image/")))},transform(e){const t=e.map((e=>(0,be.createBlock)("core/image",{url:(0,Pe.createBlobURL)(e)})));return t}},{type:"shortcode",tag:"caption",attributes:{url:{type:"string",source:"attribute",attribute:"src",selector:"img"},alt:{type:"string",source:"attribute",attribute:"alt",selector:"img"},caption:{shortcode:function(e,t){let{shortcode:n}=t;const{body:o}=document.implementation.createHTMLDocument("");o.innerHTML=n.content;let r=o.querySelector("img");for(;r&&r.parentNode&&r.parentNode!==o;)r=r.parentNode;return r&&r.parentNode.removeChild(r),o.innerHTML.trim()}},href:{shortcode:(e,t)=>{let{shortcode:n}=t;return Kl(n.content,"href")}},rel:{shortcode:(e,t)=>{let{shortcode:n}=t;return Kl(n.content,"rel")}},linkClass:{shortcode:(e,t)=>{let{shortcode:n}=t;return Kl(n.content,"class")}},id:{type:"number",shortcode:e=>{let{named:{id:t}}=e;if(t)return parseInt(t.replace("attachment_",""),10)}},align:{type:"string",shortcode:e=>{let{named:{align:t="alignnone"}}=e;return t.replace("align","")}}}}]};var Yl=Jl;const Xl={apiVersion:2,name:"core/image",title:"Image",category:"media",usesContext:["allowResize","imageCrop","fixedHeight"],description:"Insert an image to make a visual statement.",keywords:["img","photo","picture"],textdomain:"default",attributes:{align:{type:"string"},url:{type:"string",source:"attribute",selector:"img",attribute:"src"},alt:{type:"string",source:"attribute",selector:"img",attribute:"alt",default:""},caption:{type:"string",source:"html",selector:"figcaption"},title:{type:"string",source:"attribute",selector:"img",attribute:"title"},href:{type:"string",source:"attribute",selector:"figure > a",attribute:"href"},rel:{type:"string",source:"attribute",selector:"figure > a",attribute:"rel"},linkClass:{type:"string",source:"attribute",selector:"figure > a",attribute:"class"},id:{type:"number"},width:{type:"number"},height:{type:"number"},sizeSlug:{type:"string"},linkDestination:{type:"string"},linkTarget:{type:"string",source:"attribute",selector:"figure > a",attribute:"target"}},supports:{anchor:!0,color:{__experimentalDuotone:"img",text:!1,background:!1},__experimentalBorder:{radius:!0}},styles:[{name:"default",label:"Default",isDefault:!0},{name:"rounded",label:"Rounded"}],editorStyle:"wp-block-image-editor",style:"wp-block-image"},{name:ei}=Xl,ti={icon:Pa,example:{attributes:{sizeSlug:"large",url:"https://s.w.org/images/core/5.3/MtBlanc1.jpg",caption:(0,we.__)("Mont Blanc appearsstill, snowy, and serene.")}},__experimentalLabel(e,t){let{context:n}=t;if("accessibility"===n){const{caption:t,alt:n,url:o}=e;return o?n?n+(t?". "+t:""):t||"":(0,we.__)("Empty")}},getEditWrapperProps:e=>({"data-align":e.align}),transforms:Yl,edit:Zl,save:function(e){let{attributes:t}=e;const{url:n,alt:o,caption:r,align:a,href:l,rel:i,linkClass:s,width:c,height:u,id:m,linkTarget:d,sizeSlug:p,title:g}=t,h=(0,Le.isEmpty)(i)?void 0:i,v=nt()({[`align${a}`]:a,[`size-${p}`]:p,"is-resized":c||u}),b=(0,ye.createElement)("img",{src:n,alt:o,className:m?`wp-image-${m}`:null,width:c,height:u,title:g}),y=(0,ye.createElement)(ye.Fragment,null,l?(0,ye.createElement)("a",{className:s,href:l,target:d,rel:h},b):b,!Ee.RichText.isEmpty(r)&&(0,ye.createElement)(Ee.RichText.Content,{tagName:"figcaption",value:r}));return"left"===a||"right"===a||"center"===a?(0,ye.createElement)("div",Ee.useBlockProps.save(),(0,ye.createElement)("figure",{className:v},y)):(0,ye.createElement)("figure",Ee.useBlockProps.save({className:v}),y)},deprecated:Gl};var ni=(0,ye.createElement)(fe.SVG,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,ye.createElement)(fe.Path,{d:"M18 4H6c-1.1 0-2 .9-2 2v12.9c0 .6.5 1.1 1.1 1.1.3 0 .5-.1.8-.3L8.5 17H18c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm.5 11c0 .3-.2.5-.5.5H7.9l-2.4 2.4V6c0-.3.2-.5.5-.5h12c.3 0 .5.2.5.5v9z"}));const oi={apiVersion:2,name:"core/latest-comments",title:"Latest Comments",category:"widgets",description:"Display a list of your most recent comments.",keywords:["recent comments"],textdomain:"default",attributes:{commentsToShow:{type:"number",default:5,minimum:1,maximum:100},displayAvatar:{type:"boolean",default:!0},displayDate:{type:"boolean",default:!0},displayExcerpt:{type:"boolean",default:!0}},supports:{align:!0,html:!1},editorStyle:"wp-block-latest-comments-editor",style:"wp-block-latest-comments"},{name:ri}=oi,ai={icon:ni,example:{},edit:function(e){let{attributes:t,setAttributes:n}=e;const{commentsToShow:o,displayAvatar:r,displayDate:a,displayExcerpt:l}=t;return(0,ye.createElement)("div",(0,Ee.useBlockProps)(),(0,ye.createElement)(Ee.InspectorControls,null,(0,ye.createElement)(ke.PanelBody,{title:(0,we.__)("Latest comments settings")},(0,ye.createElement)(ke.ToggleControl,{label:(0,we.__)("Display avatar"),checked:r,onChange:()=>n({displayAvatar:!r})}),(0,ye.createElement)(ke.ToggleControl,{label:(0,we.__)("Display date"),checked:a,onChange:()=>n({displayDate:!a})}),(0,ye.createElement)(ke.ToggleControl,{label:(0,we.__)("Display excerpt"),checked:l,onChange:()=>n({displayExcerpt:!l})}),(0,ye.createElement)(ke.RangeControl,{label:(0,we.__)("Number of comments"),value:o,onChange:e=>n({commentsToShow:e}),min:1,max:100,required:!0}))),(0,ye.createElement)(ke.Disabled,null,(0,ye.createElement)(xe(),{block:"core/latest-comments",attributes:t,urlQueryArgs:{_locale:"site"}})))}};var li=(0,ye.createElement)(fe.SVG,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,ye.createElement)(fe.Path,{d:"M18 4H6c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm.5 14c0 .3-.2.5-.5.5H6c-.3 0-.5-.2-.5-.5V6c0-.3.2-.5.5-.5h12c.3 0 .5.2.5.5v12zM7 11h2V9H7v2zm0 4h2v-2H7v2zm3-4h7V9h-7v2zm0 4h7v-2h-7v2z"}));const{attributes:ii}={apiVersion:2,name:"core/latest-posts",title:"Latest Posts",category:"widgets",description:"Display a list of your most recent posts.",keywords:["recent posts"],textdomain:"default",attributes:{categories:{type:"array",items:{type:"object"}},selectedAuthor:{type:"number"},postsToShow:{type:"number",default:5},displayPostContent:{type:"boolean",default:!1},displayPostContentRadio:{type:"string",default:"excerpt"},excerptLength:{type:"number",default:55},displayAuthor:{type:"boolean",default:!1},displayPostDate:{type:"boolean",default:!1},postLayout:{type:"string",default:"list"},columns:{type:"number",default:3},order:{type:"string",default:"desc"},orderBy:{type:"string",default:"date"},displayFeaturedImage:{type:"boolean",default:!1},featuredImageAlign:{type:"string",enum:["left","center","right"]},featuredImageSizeSlug:{type:"string",default:"thumbnail"},featuredImageSizeWidth:{type:"number",default:null},featuredImageSizeHeight:{type:"number",default:null},addLinkToFeaturedImage:{type:"boolean",default:!1}},supports:{align:!0,html:!1},editorStyle:"wp-block-latest-posts-editor",style:"wp-block-latest-posts"};var si=[{attributes:{...ii,categories:{type:"string"}},supports:{align:!0,html:!1},migrate:e=>({...e,categories:[{id:Number(e.categories)}]}),isEligible:e=>{let{categories:t}=e;return t&&"string"==typeof t},save:()=>null}],ci=window.wp.date;var ui=(0,ye.createElement)(fe.SVG,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,ye.createElement)(fe.Path,{d:"M4 4v1.5h16V4H4zm8 8.5h8V11h-8v1.5zM4 20h16v-1.5H4V20zm4-8c0-1.1-.9-2-2-2s-2 .9-2 2 .9 2 2 2 2-.9 2-2z"}));var mi=(0,ye.createElement)(fe.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,ye.createElement)(fe.Path,{d:"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7.8 16.5H5c-.3 0-.5-.2-.5-.5v-6.2h6.8v6.7zm0-8.3H4.5V5c0-.3.2-.5.5-.5h6.2v6.7zm8.3 7.8c0 .3-.2.5-.5.5h-6.2v-6.8h6.8V19zm0-7.8h-6.8V4.5H19c.3 0 .5.2.5.5v6.2z",fillRule:"evenodd",clipRule:"evenodd"}));const di={per_page:-1,context:"view"},pi={per_page:-1,has_published_posts:["post"],context:"view"};const gi={apiVersion:2,name:"core/latest-posts",title:"Latest Posts",category:"widgets",description:"Display a list of your most recent posts.",keywords:["recent posts"],textdomain:"default",attributes:{categories:{type:"array",items:{type:"object"}},selectedAuthor:{type:"number"},postsToShow:{type:"number",default:5},displayPostContent:{type:"boolean",default:!1},displayPostContentRadio:{type:"string",default:"excerpt"},excerptLength:{type:"number",default:55},displayAuthor:{type:"boolean",default:!1},displayPostDate:{type:"boolean",default:!1},postLayout:{type:"string",default:"list"},columns:{type:"number",default:3},order:{type:"string",default:"desc"},orderBy:{type:"string",default:"date"},displayFeaturedImage:{type:"boolean",default:!1},featuredImageAlign:{type:"string",enum:["left","center","right"]},featuredImageSizeSlug:{type:"string",default:"thumbnail"},featuredImageSizeWidth:{type:"number",default:null},featuredImageSizeHeight:{type:"number",default:null},addLinkToFeaturedImage:{type:"boolean",default:!1}},supports:{align:!0,html:!1},editorStyle:"wp-block-latest-posts-editor",style:"wp-block-latest-posts"},{name:hi}=gi,vi={icon:li,example:{},edit:function(e){var t;let{attributes:n,setAttributes:o}=e;const{postsToShow:r,order:a,orderBy:l,categories:i,selectedAuthor:s,displayFeaturedImage:c,displayPostContentRadio:u,displayPostContent:m,displayPostDate:d,displayAuthor:p,postLayout:g,columns:h,excerptLength:v,featuredImageAlign:b,featuredImageSizeSlug:y,featuredImageSizeWidth:f,featuredImageSizeHeight:_,addLinkToFeaturedImage:k}=n,{imageSizeOptions:w,latestPosts:E,defaultImageWidth:C,defaultImageHeight:x,categoriesList:S,authorList:B}=(0,Ie.useSelect)((e=>{const{getEntityRecords:t,getMedia:n,getUsers:o}=e(Dt.store),{getSettings:c}=e(Ee.store),{imageSizes:u,imageDimensions:m}=c(),d=i&&i.length>0?i.map((e=>e.id)):[],p=t("postType","post",(0,Le.pickBy)({categories:d,author:s,order:a,orderby:l,per_page:r},(e=>!(0,Le.isUndefined)(e))));return{defaultImageWidth:(0,Le.get)(m,[y,"width"],0),defaultImageHeight:(0,Le.get)(m,[y,"height"],0),imageSizeOptions:u.filter((e=>{let{slug:t}=e;return"full"!==t})).map((e=>{let{name:t,slug:n}=e;return{value:n,label:t}})),latestPosts:Array.isArray(p)?p.map((e=>{if(!e.featured_media)return e;const t=n(e.featured_media);let o=(0,Le.get)(t,["media_details","sizes",y,"source_url"],null);o||(o=(0,Le.get)(t,"source_url",null));const r={url:o,alt:null==t?void 0:t.alt_text};return{...e,featuredImageInfo:r}})):p,categoriesList:t("taxonomy","category",di),authorList:o(pi)}}),[y,r,a,l,i,s]),T=null!==(t=null==S?void 0:S.reduce(((e,t)=>({...e,[t.name]:t})),{}))&&void 0!==t?t:{},N=!(null==E||!E.length),z=(0,ye.createElement)(Ee.InspectorControls,null,(0,ye.createElement)(ke.PanelBody,{title:(0,we.__)("Post content settings")},(0,ye.createElement)(ke.ToggleControl,{label:(0,we.__)("Post content"),checked:m,onChange:e=>o({displayPostContent:e})}),m&&(0,ye.createElement)(ke.RadioControl,{label:(0,we.__)("Show:"),selected:u,options:[{label:(0,we.__)("Excerpt"),value:"excerpt"},{label:(0,we.__)("Full post"),value:"full_post"}],onChange:e=>o({displayPostContentRadio:e})}),m&&"excerpt"===u&&(0,ye.createElement)(ke.RangeControl,{label:(0,we.__)("Max number of words in excerpt"),value:v,onChange:e=>o({excerptLength:e}),min:10,max:100})),(0,ye.createElement)(ke.PanelBody,{title:(0,we.__)("Post meta settings")},(0,ye.createElement)(ke.ToggleControl,{label:(0,we.__)("Display author name"),checked:p,onChange:e=>o({displayAuthor:e})}),(0,ye.createElement)(ke.ToggleControl,{label:(0,we.__)("Display post date"),checked:d,onChange:e=>o({displayPostDate:e})})),(0,ye.createElement)(ke.PanelBody,{title:(0,we.__)("Featured image settings")},(0,ye.createElement)(ke.ToggleControl,{label:(0,we.__)("Display featured image"),checked:c,onChange:e=>o({displayFeaturedImage:e})}),c&&(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)(Ee.__experimentalImageSizeControl,{onChange:e=>{const t={};e.hasOwnProperty("width")&&(t.featuredImageSizeWidth=e.width),e.hasOwnProperty("height")&&(t.featuredImageSizeHeight=e.height),o(t)},slug:y,width:f,height:_,imageWidth:C,imageHeight:x,imageSizeOptions:w,onChangeImage:e=>o({featuredImageSizeSlug:e,featuredImageSizeWidth:void 0,featuredImageSizeHeight:void 0})}),(0,ye.createElement)(ke.BaseControl,{className:"block-editor-image-alignment-control__row"},(0,ye.createElement)(ke.BaseControl.VisualLabel,null,(0,we.__)("Image alignment")),(0,ye.createElement)(Ee.BlockAlignmentToolbar,{value:b,onChange:e=>o({featuredImageAlign:e}),controls:["left","center","right"],isCollapsed:!1})),(0,ye.createElement)(ke.ToggleControl,{label:(0,we.__)("Add link to featured image"),checked:k,onChange:e=>o({addLinkToFeaturedImage:e})}))),(0,ye.createElement)(ke.PanelBody,{title:(0,we.__)("Sorting and filtering")},(0,ye.createElement)(ke.QueryControls,{order:a,orderBy:l,numberOfItems:r,onOrderChange:e=>o({order:e}),onOrderByChange:e=>o({orderBy:e}),onNumberOfItemsChange:e=>o({postsToShow:e}),categorySuggestions:T,onCategoryChange:e=>{if(e.some((e=>"string"==typeof e&&!T[e])))return;const t=e.map((e=>"string"==typeof e?T[e]:e));if((0,Le.includes)(t,null))return!1;o({categories:t})},selectedCategories:i,onAuthorChange:e=>o({selectedAuthor:""!==e?Number(e):void 0}),authorList:null!=B?B:[],selectedAuthorId:s}),"grid"===g&&(0,ye.createElement)(ke.RangeControl,{label:(0,we.__)("Columns"),value:h,onChange:e=>o({columns:e}),min:2,max:N?Math.min(6,E.length):6,required:!0}))),P=(0,Ee.useBlockProps)({className:nt()({"wp-block-latest-posts__list":!0,"is-grid":"grid"===g,"has-dates":d,"has-author":p,[`columns-${h}`]:"grid"===g})});if(!N)return(0,ye.createElement)("div",P,z,(0,ye.createElement)(ke.Placeholder,{icon:Wt,label:(0,we.__)("Latest Posts")},Array.isArray(E)?(0,we.__)("No posts found."):(0,ye.createElement)(ke.Spinner,null)));const I=E.length>r?E.slice(0,r):E,M=[{icon:ui,title:(0,we.__)("List view"),onClick:()=>o({postLayout:"list"}),isActive:"list"===g},{icon:mi,title:(0,we.__)("Grid view"),onClick:()=>o({postLayout:"grid"}),isActive:"grid"===g}],R=(0,ci.__experimentalGetSettings)().formats.date;return(0,ye.createElement)("div",null,z,(0,ye.createElement)(Ee.BlockControls,null,(0,ye.createElement)(ke.ToolbarGroup,{controls:M})),(0,ye.createElement)("ul",P,I.map(((e,t)=>{const n=(0,Le.invoke)(e,["title","rendered","trim"]);let o=e.excerpt.rendered;const r=null==B?void 0:B.find((t=>t.id===e.author)),a=document.createElement("div");a.innerHTML=o,o=a.textContent||a.innerText||"";const{featuredImageInfo:{url:l,alt:i}={}}=e,s=nt()({"wp-block-latest-posts__featured-image":!0,[`align${b}`]:!!b}),g=c&&l,h=g&&(0,ye.createElement)("img",{src:l,alt:i,style:{maxWidth:f,maxHeight:_}}),y=v<o.trim().split(" ").length&&""===e.excerpt.raw?(0,ye.createElement)(ye.Fragment,null,o.trim().split(" ",v).join(" "),(0,we.__)(" "),(0,ye.createElement)("a",{href:e.link,rel:"noopener noreferrer"},(0,we.__)("Read more"))):o;return(0,ye.createElement)("li",{key:t},g&&(0,ye.createElement)("div",{className:s},k?(0,ye.createElement)("a",{href:e.link,rel:"noreferrer noopener"},h):h),(0,ye.createElement)("a",{href:e.link,rel:"noreferrer noopener"},n?(0,ye.createElement)(ye.RawHTML,null,n):(0,we.__)("(no title)")),p&&r&&(0,ye.createElement)("div",{className:"wp-block-latest-posts__post-author"},(0,we.sprintf)((0,we.__)("by %s"),r.name)),d&&e.date_gmt&&(0,ye.createElement)("time",{dateTime:(0,ci.format)("c",e.date_gmt),className:"wp-block-latest-posts__post-date"},(0,ci.dateI18n)(R,e.date_gmt)),m&&"excerpt"===u&&(0,ye.createElement)("div",{className:"wp-block-latest-posts__post-excerpt"},y),m&&"full_post"===u&&(0,ye.createElement)("div",{className:"wp-block-latest-posts__post-full-content"},(0,ye.createElement)(ye.RawHTML,{key:"html"},e.content.raw.trim())))}))))},deprecated:si},bi={attributes:{ordered:{type:"boolean",default:!1,__experimentalRole:"content"},values:{type:"string",source:"html",selector:"ol,ul",multiline:"li",__unstableMultilineWrapperTags:["ol","ul"],default:"",__experimentalRole:"content"},type:{type:"string"},start:{type:"number"},reversed:{type:"boolean"},placeholder:{type:"string"}},supports:{anchor:!0,className:!1,typography:{fontSize:!0,__experimentalFontFamily:!0},color:{gradients:!0,link:!0},__unstablePasteTextInline:!0,__experimentalSelector:"ol,ul",__experimentalSlashInserter:!0},save(e){let{attributes:t}=e;const{ordered:n,values:o,type:r,reversed:a,start:l}=t,i=n?"ol":"ul";return(0,ye.createElement)(i,Ee.useBlockProps.save({type:r,reversed:a,start:l}),(0,ye.createElement)(Ee.RichText.Content,{value:o,multiline:"li"}))},migrate:lt,isEligible(e){var t;let{style:n}=e;return null==n||null===(t=n.typography)||void 0===t?void 0:t.fontFamily}};var yi=[bi];var fi=(0,ye.createElement)(fe.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,ye.createElement)(fe.Path,{d:"M4 8.8h8.9V7.2H4v1.6zm0 7h8.9v-1.5H4v1.5zM18 13c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-3c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z"}));var _i=(0,ye.createElement)(fe.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,ye.createElement)(fe.Path,{d:"M11.1 15.8H20v-1.5h-8.9v1.5zm0-8.6v1.5H20V7.2h-8.9zM6 13c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-7c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z"}));var ki=(0,ye.createElement)(fe.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,ye.createElement)(fe.Path,{d:"M3.8 15.8h8.9v-1.5H3.8v1.5zm0-7h8.9V7.2H3.8v1.6zm14.7-2.1V10h1V5.3l-2.2.7.3 1 .9-.3zm1.2 6.1c-.5-.6-1.2-.5-1.7-.4-.3.1-.5.2-.7.3l.1 1.1c.2-.2.5-.4.8-.5.3-.1.6 0 .7.1.2.3 0 .8-.2 1.1-.5.8-.9 1.6-1.4 2.5H20v-1h-.9c.3-.6.8-1.4.9-2.1 0-.3 0-.8-.3-1.1z"}));var wi=(0,ye.createElement)(fe.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,ye.createElement)(fe.Path,{d:"M11.1 15.8H20v-1.5h-8.9v1.5zm0-8.6v1.5H20V7.2h-8.9zM5 6.7V10h1V5.3L3.8 6l.4 1 .8-.3zm-.4 5.7c-.3.1-.5.2-.7.3l.1 1.1c.2-.2.5-.4.8-.5.3-.1.6 0 .7.1.2.3 0 .8-.2 1.1-.5.8-.9 1.6-1.4 2.5h2.7v-1h-1c.3-.6.8-1.4.9-2.1.1-.3 0-.8-.2-1.1-.5-.6-1.3-.5-1.7-.4z"}));var Ei=(0,ye.createElement)(fe.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,ye.createElement)(fe.Path,{d:"M20 5.5H4V4H20V5.5ZM12 12.5H4V11H12V12.5ZM20 20V18.5H4V20H20ZM15.4697 14.9697L18.4393 12L15.4697 9.03033L16.5303 7.96967L20.0303 11.4697L20.5607 12L20.0303 12.5303L16.5303 16.0303L15.4697 14.9697Z"}));var Ci=(0,ye.createElement)(fe.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,ye.createElement)(fe.Path,{d:"M4 7.2v1.5h16V7.2H4zm8 8.6h8v-1.5h-8v1.5zm-4-4.6l-4 4 4 4 1-1-3-3 3-3-1-1z"}));var xi=(0,ye.createElement)(fe.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,ye.createElement)(fe.Path,{d:"M20 5.5H4V4H20V5.5ZM12 12.5H4V11H12V12.5ZM20 20V18.5H4V20H20ZM20.0303 9.03033L17.0607 12L20.0303 14.9697L18.9697 16.0303L15.4697 12.5303L14.9393 12L15.4697 11.4697L18.9697 7.96967L20.0303 9.03033Z"}));var Si=(0,ye.createElement)(fe.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,ye.createElement)(fe.Path,{d:"M4 7.2v1.5h16V7.2H4zm8 8.6h8v-1.5h-8v1.5zm-8-3.5l3 3-3 3 1 1 4-4-4-4-1 1z"}));var Bi=e=>{let{setAttributes:t,reversed:n,start:o}=e;return(0,ye.createElement)(Ee.InspectorControls,null,(0,ye.createElement)(ke.PanelBody,{title:(0,we.__)("Ordered list settings")},(0,ye.createElement)(ke.TextControl,{label:(0,we.__)("Start value"),type:"number",onChange:e=>{const n=parseInt(e,10);t({start:isNaN(n)?void 0:n})},value:Number.isInteger(o)?o.toString(10):"",step:"1"}),(0,ye.createElement)(ke.ToggleControl,{label:(0,we.__)("Reverse list numbering"),checked:n||!1,onChange:e=>{t({reversed:e||void 0})}})))};function Ti(e){let{phrasingContentSchema:t}=e;const n={...t,ul:{},ol:{attributes:["type","start","reversed"]}};return["ul","ol"].forEach((e=>{n[e].children={li:{children:n}}})),n}const Ni={from:[{type:"block",isMultiBlock:!0,blocks:["core/paragraph","core/heading"],transform:e=>(0,be.createBlock)("core/list",{values:(0,Tt.toHTMLString)({value:(0,Tt.join)(e.map((t=>{let{content:n}=t;const o=(0,Tt.create)({html:n});return e.length>1?o:(0,Tt.replace)(o,/\n/g,Tt.__UNSTABLE_LINE_SEPARATOR)})),Tt.__UNSTABLE_LINE_SEPARATOR),multilineTag:"li"}),anchor:e.anchor})},{type:"block",blocks:["core/quote","core/pullquote"],transform:e=>{let{value:t,anchor:n}=e;return(0,be.createBlock)("core/list",{values:(0,Tt.toHTMLString)({value:(0,Tt.create)({html:t,multilineTag:"p"}),multilineTag:"li"}),anchor:n})}},{type:"raw",selector:"ol,ul",schema:e=>({ol:Ti(e).ol,ul:Ti(e).ul}),transform(e){const t={ordered:"OL"===e.nodeName,anchor:""===e.id?void 0:e.id};if(t.ordered){const n=e.getAttribute("type");n&&(t.type=n),null!==e.getAttribute("reversed")&&(t.reversed=!0);const o=parseInt(e.getAttribute("start"),10);isNaN(o)||1===o&&!t.reversed||(t.start=o)}return(0,be.createBlock)("core/list",{...(0,be.getBlockAttributes)("core/list",e.outerHTML),...t})}},...["*","-"].map((e=>({type:"prefix",prefix:e,transform:e=>(0,be.createBlock)("core/list",{values:`<li>${e}</li>`})}))),...["1.","1)"].map((e=>({type:"prefix",prefix:e,transform:e=>(0,be.createBlock)("core/list",{ordered:!0,values:`<li>${e}</li>`})})))],to:[{type:"block",blocks:["core/paragraph"],transform:e=>{let{values:t}=e;return(0,Tt.split)((0,Tt.create)({html:t,multilineTag:"li",multilineWrapperTags:["ul","ol"]}),Tt.__UNSTABLE_LINE_SEPARATOR).map((e=>(0,be.createBlock)("core/paragraph",{content:(0,Tt.toHTMLString)({value:e})})))}},{type:"block",blocks:["core/heading"],transform:e=>{let{values:t}=e;return(0,Tt.split)((0,Tt.create)({html:t,multilineTag:"li",multilineWrapperTags:["ul","ol"]}),Tt.__UNSTABLE_LINE_SEPARATOR).map((e=>(0,be.createBlock)("core/heading",{content:(0,Tt.toHTMLString)({value:e})})))}},{type:"block",blocks:["core/quote"],transform:e=>{let{values:t,anchor:n}=e;return(0,be.createBlock)("core/quote",{value:(0,Tt.toHTMLString)({value:(0,Tt.create)({html:t,multilineTag:"li",multilineWrapperTags:["ul","ol"]}),multilineTag:"p"}),anchor:n})}},{type:"block",blocks:["core/pullquote"],transform:e=>{let{values:t,anchor:n}=e;return(0,be.createBlock)("core/pullquote",{value:(0,Tt.toHTMLString)({value:(0,Tt.create)({html:t,multilineTag:"li",multilineWrapperTags:["ul","ol"]}),multilineTag:"p"}),anchor:n})}}]};var zi=Ni;const Pi={apiVersion:2,name:"core/list",title:"List",category:"text",description:"Create a bulleted or numbered list.",keywords:["bullet list","ordered list","numbered list"],textdomain:"default",attributes:{ordered:{type:"boolean",default:!1,__experimentalRole:"content"},values:{type:"string",source:"html",selector:"ol,ul",multiline:"li",__unstableMultilineWrapperTags:["ol","ul"],default:"",__experimentalRole:"content"},type:{type:"string"},start:{type:"number"},reversed:{type:"boolean"},placeholder:{type:"string"}},supports:{anchor:!0,className:!1,typography:{fontSize:!0,__experimentalFontFamily:!0,lineHeight:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0,__experimentalLetterSpacing:!0,__experimentalTextTransform:!0,__experimentalDefaultControls:{fontSize:!0}},color:{gradients:!0,link:!0},__unstablePasteTextInline:!0,__experimentalSelector:"ol,ul",__experimentalSlashInserter:!0},editorStyle:"wp-block-list-editor",style:"wp-block-list"},{name:Ii}=Pi,Mi={icon:ui,example:{attributes:{values:"<li>Alice.</li><li>The White Rabbit.</li><li>The Cheshire Cat.</li><li>The Mad Hatter.</li><li>The Queen of Hearts.</li>"}},transforms:zi,merge(e,t){const{values:n}=t;return n&&"<li></li>"!==n?{...e,values:e.values+n}:e},edit:function(e){let{attributes:t,setAttributes:n,mergeBlocks:o,onReplace:r,style:a}=e;const{ordered:l,values:i,type:s,reversed:c,start:u,placeholder:m}=t,d=l?"ol":"ul",p=(0,Ee.useBlockProps)({style:a});return(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)(Ee.RichText,gt({identifier:"values",multiline:"li",tagName:d,onChange:e=>n({values:e}),value:i,"aria-label":(0,we.__)("List text"),placeholder:m||(0,we.__)("List"),onMerge:o,onSplit:e=>(0,be.createBlock)(Ii,{...t,values:e}),__unstableOnSplitMiddle:()=>(0,be.createBlock)("core/paragraph"),onReplace:r,onRemove:()=>r([]),start:u,reversed:c,type:s},p),(e=>{let{value:t,onChange:o,onFocus:r}=e;return(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)(Ee.RichTextShortcut,{type:"primary",character:"[",onUse:()=>{o((0,Tt.__unstableOutdentListItems)(t))}}),(0,ye.createElement)(Ee.RichTextShortcut,{type:"primary",character:"]",onUse:()=>{o((0,Tt.__unstableIndentListItems)(t,{type:d}))}}),(0,ye.createElement)(Ee.RichTextShortcut,{type:"primary",character:"m",onUse:()=>{o((0,Tt.__unstableIndentListItems)(t,{type:d}))}}),(0,ye.createElement)(Ee.RichTextShortcut,{type:"primaryShift",character:"m",onUse:()=>{o((0,Tt.__unstableOutdentListItems)(t))}}),(0,ye.createElement)(Ee.BlockControls,{group:"block"},(0,ye.createElement)(ke.ToolbarButton,{icon:(0,we.isRTL)()?fi:_i,title:(0,we.__)("Unordered"),describedBy:(0,we.__)("Convert to unordered list"),isActive:(0,Tt.__unstableIsActiveListType)(t,"ul",d),onClick:()=>{o((0,Tt.__unstableChangeListType)(t,{type:"ul"})),r(),(0,Tt.__unstableIsListRootSelected)(t)&&n({ordered:!1})}}),(0,ye.createElement)(ke.ToolbarButton,{icon:(0,we.isRTL)()?ki:wi,title:(0,we.__)("Ordered"),describedBy:(0,we.__)("Convert to ordered list"),isActive:(0,Tt.__unstableIsActiveListType)(t,"ol",d),onClick:()=>{o((0,Tt.__unstableChangeListType)(t,{type:"ol"})),r(),(0,Tt.__unstableIsListRootSelected)(t)&&n({ordered:!0})}}),(0,ye.createElement)(ke.ToolbarButton,{icon:(0,we.isRTL)()?Ei:Ci,title:(0,we.__)("Outdent"),describedBy:(0,we.__)("Outdent list item"),shortcut:(0,we._x)("Backspace","keyboard key"),isDisabled:!(0,Tt.__unstableCanOutdentListItems)(t),onClick:()=>{o((0,Tt.__unstableOutdentListItems)(t)),r()}}),(0,ye.createElement)(ke.ToolbarButton,{icon:(0,we.isRTL)()?xi:Si,title:(0,we.__)("Indent"),describedBy:(0,we.__)("Indent list item"),shortcut:(0,we._x)("Space","keyboard key"),isDisabled:!(0,Tt.__unstableCanIndentListItems)(t),onClick:()=>{o((0,Tt.__unstableIndentListItems)(t,{type:d})),r()}})))})),l&&(0,ye.createElement)(Bi,{setAttributes:n,ordered:l,reversed:c,start:u,placeholder:m}))},save:function(e){let{attributes:t}=e;const{ordered:n,values:o,type:r,reversed:a,start:l}=t,i=n?"ol":"ul";return(0,ye.createElement)(i,Ee.useBlockProps.save({type:r,reversed:a,start:l}),(0,ye.createElement)(Ee.RichText.Content,{value:o,multiline:"li"}))},deprecated:yi};var Ri=(0,ye.createElement)(fe.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,ye.createElement)(fe.Path,{d:"M11 14.5l1.1 1.1 3-3 .5-.5-.6-.6-3-3-1 1 1.7 1.7H5v1.5h7.7L11 14.5zM16.8 5h-7c-1.1 0-2 .9-2 2v1.5h1.5V7c0-.3.2-.5.5-.5h7c.3 0 .5.2.5.5v10c0 .3-.2.5-.5.5h-7c-.3 0-.5-.2-.5-.5v-1.5H7.8V17c0 1.1.9 2 2 2h7c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2z"}));const Li={apiVersion:2,name:"core/loginout",title:"Login/out",category:"theme",description:"Show login & logout links.",keywords:["login","logout","form"],textdomain:"default",attributes:{displayLoginAsForm:{type:"boolean",default:!1},redirectToCurrent:{type:"boolean",default:!0}},supports:{className:!0,typography:{fontSize:!1}}},{name:Vi}=Li,Hi={icon:Ri,edit:function(e){let{attributes:t,setAttributes:n}=e;const{displayLoginAsForm:o,redirectToCurrent:r}=t;return(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)(Ee.InspectorControls,null,(0,ye.createElement)(ke.PanelBody,{title:(0,we.__)("Login/out settings")},(0,ye.createElement)(ke.ToggleControl,{label:(0,we.__)("Display login as form"),checked:o,onChange:()=>n({displayLoginAsForm:!o})}),(0,ye.createElement)(ke.ToggleControl,{label:(0,we.__)("Redirect to current URL"),checked:r,onChange:()=>n({redirectToCurrent:!r})}))),(0,ye.createElement)("div",(0,Ee.useBlockProps)({className:"logged-in"}),(0,ye.createElement)("a",{href:"#login-pseudo-link"},(0,we.__)("Log out"))))}};var Ai=(0,ye.createElement)(fe.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,ye.createElement)(fe.Path,{d:"M3 18h8V6H3v12zM14 7.5V9h7V7.5h-7zm0 5.3h7v-1.5h-7v1.5zm0 3.7h7V15h-7v1.5z"})),Fi=(0,ye.createElement)(ke.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,ye.createElement)(ke.Path,{d:"M18 2l2 4h-2l-2-4h-3l2 4h-2l-2-4h-1a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V2zm2 12H10V4.4L11.8 8H20z"}),(0,ye.createElement)(ke.Path,{d:"M14 20H4V10h3V8H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2v-3h-2z"}),(0,ye.createElement)(ke.Path,{d:"M5 19h8l-1.59-2H9.24l-.84 1.1L7 16.3 5 19z"}));const Di=["image","video"];function Gi(e,t){return e?{backgroundImage:`url(${e})`,backgroundPosition:t?`${100*t.x}% ${100*t.y}%`:"50% 50%"}:{}}const Ui=(0,ye.forwardRef)(((e,t)=>{let{isSelected:n,isStackedOnMobile:o,...r}=e;const a=(0,ot.useViewportMatch)("small","<");return(0,ye.createElement)(ke.ResizableBox,gt({ref:t,showHandle:n&&(!a||!o)},r))}));function Oi(e){let{mediaId:t,mediaUrl:n,onSelectMedia:o}=e;return(0,ye.createElement)(Ee.BlockControls,{group:"other"},(0,ye.createElement)(Ee.MediaReplaceFlow,{mediaId:t,mediaURL:n,allowedTypes:Di,accept:"image/*,video/*",onSelect:o}))}function qi(e){let{className:t,noticeOperations:n,noticeUI:o,mediaUrl:r,onSelectMedia:a}=e;return(0,ye.createElement)(Ee.MediaPlaceholder,{icon:(0,ye.createElement)(Ee.BlockIcon,{icon:Fi}),labels:{title:(0,we.__)("Media area")},className:t,onSelect:a,accept:"image/*,video/*",allowedTypes:Di,notices:o,onError:e=>{n.removeAllNotices(),n.createErrorNotice(e)},disableMediaButtons:r})}var $i=(0,ke.withNotices)((0,ye.forwardRef)((function(e,t){const{className:n,commitWidthChange:o,focalPoint:r,imageFill:a,isSelected:l,isStackedOnMobile:i,mediaAlt:s,mediaId:c,mediaPosition:u,mediaType:m,mediaUrl:d,mediaWidth:p,onSelectMedia:g,onWidthChange:h}=e,v=!c&&(0,Pe.isBlobURL)(d),{toggleSelection:b}=(0,Ie.useDispatch)(Ee.store);if(d){const y=()=>{b(!1)},f=(e,t,n)=>{h(parseInt(n.style.width))},_=(e,t,n)=>{b(!0),o(parseInt(n.style.width))},k={right:"left"===u,left:"right"===u},w="image"===m&&a?Gi(d,r):{},E={image:()=>(0,ye.createElement)("img",{src:d,alt:s}),video:()=>(0,ye.createElement)("video",{controls:!0,src:d})};return(0,ye.createElement)(Ui,{as:"figure",className:nt()(n,"editor-media-container__resizer",{"is-transient":v}),style:w,size:{width:p+"%"},minWidth:"10%",maxWidth:"100%",enable:k,onResizeStart:y,onResize:f,onResizeStop:_,axis:"x",isSelected:l,isStackedOnMobile:i,ref:t},(0,ye.createElement)(Oi,{onSelectMedia:g,mediaUrl:d,mediaId:c}),(E[m]||Le.noop)(),v&&(0,ye.createElement)(ke.Spinner,null),(0,ye.createElement)(qi,e))}return(0,ye.createElement)(qi,e)})));const Wi=e=>{if(!e.customBackgroundColor)return e;const t={color:{background:e.customBackgroundColor}};return{...(0,Le.omit)(e,["customBackgroundColor"]),style:t}},ji={align:{type:"string",default:"wide"},backgroundColor:{type:"string"},mediaAlt:{type:"string",source:"attribute",selector:"figure img",attribute:"alt",default:""},mediaPosition:{type:"string",default:"left"},mediaId:{type:"number"},mediaType:{type:"string"},mediaWidth:{type:"number",default:50},isStackedOnMobile:{type:"boolean",default:!0}};var Zi=[{attributes:{...ji,customBackgroundColor:{type:"string"},mediaLink:{type:"string"},linkDestination:{type:"string"},linkTarget:{type:"string",source:"attribute",selector:"figure a",attribute:"target"},href:{type:"string",source:"attribute",selector:"figure a",attribute:"href"},rel:{type:"string",source:"attribute",selector:"figure a",attribute:"rel"},linkClass:{type:"string",source:"attribute",selector:"figure a",attribute:"class"},verticalAlignment:{type:"string"},imageFill:{type:"boolean"},focalPoint:{type:"object"}},migrate:Wi,save(e){let{attributes:t}=e;const{backgroundColor:n,customBackgroundColor:o,isStackedOnMobile:r,mediaAlt:a,mediaPosition:l,mediaType:i,mediaUrl:s,mediaWidth:c,mediaId:u,verticalAlignment:m,imageFill:d,focalPoint:p,linkClass:g,href:h,linkTarget:v,rel:b}=t,y=(0,Le.isEmpty)(b)?void 0:b;let f=(0,ye.createElement)("img",{src:s,alt:a,className:u&&"image"===i?`wp-image-${u}`:null});h&&(f=(0,ye.createElement)("a",{className:g,href:h,target:v,rel:y},f));const _={image:()=>f,video:()=>(0,ye.createElement)("video",{controls:!0,src:s})},k=(0,Ee.getColorClassName)("background-color",n),w=nt()({"has-media-on-the-right":"right"===l,"has-background":k||o,[k]:k,"is-stacked-on-mobile":r,[`is-vertically-aligned-${m}`]:m,"is-image-fill":d}),E=d?Gi(s,p):{};let C;50!==c&&(C="right"===l?`auto ${c}%`:`${c}% auto`);const x={backgroundColor:k?void 0:o,gridTemplateColumns:C};return(0,ye.createElement)("div",{className:w,style:x},(0,ye.createElement)("figure",{className:"wp-block-media-text__media",style:E},(_[i]||Le.noop)()),(0,ye.createElement)("div",{className:"wp-block-media-text__content"},(0,ye.createElement)(Ee.InnerBlocks.Content,null)))}},{attributes:{...ji,customBackgroundColor:{type:"string"},mediaUrl:{type:"string",source:"attribute",selector:"figure video,figure img",attribute:"src"},verticalAlignment:{type:"string"},imageFill:{type:"boolean"},focalPoint:{type:"object"}},migrate:Wi,save(e){let{attributes:t}=e;const{backgroundColor:n,customBackgroundColor:o,isStackedOnMobile:r,mediaAlt:a,mediaPosition:l,mediaType:i,mediaUrl:s,mediaWidth:c,mediaId:u,verticalAlignment:m,imageFill:d,focalPoint:p}=t,g={image:()=>(0,ye.createElement)("img",{src:s,alt:a,className:u&&"image"===i?`wp-image-${u}`:null}),video:()=>(0,ye.createElement)("video",{controls:!0,src:s})},h=(0,Ee.getColorClassName)("background-color",n),v=nt()({"has-media-on-the-right":"right"===l,[h]:h,"is-stacked-on-mobile":r,[`is-vertically-aligned-${m}`]:m,"is-image-fill":d}),b=d?Gi(s,p):{};let y;50!==c&&(y="right"===l?`auto ${c}%`:`${c}% auto`);const f={backgroundColor:h?void 0:o,gridTemplateColumns:y};return(0,ye.createElement)("div",{className:v,style:f},(0,ye.createElement)("figure",{className:"wp-block-media-text__media",style:b},(g[i]||Le.noop)()),(0,ye.createElement)("div",{className:"wp-block-media-text__content"},(0,ye.createElement)(Ee.InnerBlocks.Content,null)))}},{attributes:{...ji,customBackgroundColor:{type:"string"},mediaUrl:{type:"string",source:"attribute",selector:"figure video,figure img",attribute:"src"}},save(e){let{attributes:t}=e;const{backgroundColor:n,customBackgroundColor:o,isStackedOnMobile:r,mediaAlt:a,mediaPosition:l,mediaType:i,mediaUrl:s,mediaWidth:c}=t,u={image:()=>(0,ye.createElement)("img",{src:s,alt:a}),video:()=>(0,ye.createElement)("video",{controls:!0,src:s})},m=(0,Ee.getColorClassName)("background-color",n),d=nt()({"has-media-on-the-right":"right"===l,[m]:m,"is-stacked-on-mobile":r});let p;50!==c&&(p="right"===l?`auto ${c}%`:`${c}% auto`);const g={backgroundColor:m?void 0:o,gridTemplateColumns:p};return(0,ye.createElement)("div",{className:d,style:g},(0,ye.createElement)("figure",{className:"wp-block-media-text__media"},(u[i]||Le.noop)()),(0,ye.createElement)("div",{className:"wp-block-media-text__content"},(0,ye.createElement)(Ee.InnerBlocks.Content,null)))}}];var Ki=(0,ye.createElement)(fe.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,ye.createElement)(fe.Path,{d:"M4 18h6V6H4v12zm9-9.5V10h7V8.5h-7zm0 7h7V14h-7v1.5z"}));var Qi=(0,ye.createElement)(fe.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,ye.createElement)(fe.Path,{d:"M14 6v12h6V6h-6zM4 10h7V8.5H4V10zm0 5.5h7V14H4v1.5z"}));const Ji="full",Yi=[["core/paragraph",{fontSize:"large",placeholder:(0,we._x)("Content","content placeholder")}]],Xi=e=>Math.max(15,Math.min(e,85));function es(e,t){var n,o,r;return null==e||null===(n=e.media_details)||void 0===n||null===(o=n.sizes)||void 0===o||null===(r=o[t])||void 0===r?void 0:r.source_url}var ts=function(e){let{attributes:t,isSelected:n,setAttributes:o}=e;const{focalPoint:r,href:a,imageFill:l,isStackedOnMobile:i,linkClass:s,linkDestination:c,linkTarget:u,mediaAlt:m,mediaId:d,mediaPosition:p,mediaType:g,mediaUrl:h,mediaWidth:v,rel:b,verticalAlignment:y}=t,f=t.mediaSizeSlug||Ji,_=(0,Ie.useSelect)((e=>d&&n?e(Dt.store).getMedia(d):null),[n,d]),k=(0,ye.useRef)(),w=e=>{const{style:t}=k.current.resizable,{x:n,y:o}=e;t.backgroundPosition=`${100*n}% ${100*o}%`},[E,C]=(0,ye.useState)(null),x=function(e){let{attributes:{linkDestination:t,href:n},setAttributes:o}=e;return e=>{let r,a;var l,i,s,c,u;r=e.media_type?"image"===e.media_type?"image":"video":e.type,"image"===r&&(a=(null===(l=e.sizes)||void 0===l||null===(i=l.large)||void 0===i?void 0:i.url)||(null===(s=e.media_details)||void 0===s||null===(c=s.sizes)||void 0===c||null===(u=c.large)||void 0===u?void 0:u.source_url));let m=n;"media"===t&&(m=e.url),"attachment"===t&&(m=e.link),o({mediaAlt:e.alt,mediaId:e.id,mediaType:r,mediaUrl:a||e.url,mediaLink:e.link||void 0,href:m,focalPoint:void 0})}}({attributes:t,setAttributes:o}),S=e=>{o({mediaWidth:Xi(e)}),C(Xi(e))},B=nt()({"has-media-on-the-right":"right"===p,"is-selected":n,"is-stacked-on-mobile":i,[`is-vertically-aligned-${y}`]:y,"is-image-fill":l}),T=`${E||v}%`,N="right"===p?`1fr ${T}`:`${T} 1fr`,z={gridTemplateColumns:N,msGridColumns:N},P=(0,Ie.useSelect)((e=>{const t=e(Ee.store).getSettings();return null==t?void 0:t.imageSizes}),[]),I=(0,Le.map)((0,Le.filter)(P,(e=>{let{slug:t}=e;return es(_,t)})),(e=>{let{name:t,slug:n}=e;return{value:n,label:t}})),M=(0,ye.createElement)(ke.PanelBody,{title:(0,we.__)("Media & Text settings")},(0,ye.createElement)(ke.ToggleControl,{label:(0,we.__)("Stack on mobile"),checked:i,onChange:()=>o({isStackedOnMobile:!i})}),"image"===g&&(0,ye.createElement)(ke.ToggleControl,{label:(0,we.__)("Crop image to fill entire column"),checked:l,onChange:()=>o({imageFill:!l})}),l&&h&&"image"===g&&(0,ye.createElement)(ke.FocalPointPicker,{label:(0,we.__)("Focal point picker"),url:h,value:r,onChange:e=>o({focalPoint:e}),onDragStart:w,onDrag:w}),"image"===g&&(0,ye.createElement)(ke.TextareaControl,{label:(0,we.__)("Alt text (alternative text)"),value:m,onChange:e=>{o({mediaAlt:e})},help:(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)(ke.ExternalLink,{href:"https://www.w3.org/WAI/tutorials/images/decision-tree"},(0,we.__)("Describe the purpose of the image")),(0,we.__)("Leave empty if the image is purely decorative."))}),"image"===g&&(0,ye.createElement)(Ee.__experimentalImageSizeControl,{onChangeImage:e=>{const t=es(_,e);if(!t)return null;o({mediaUrl:t,mediaSizeSlug:e})},slug:f,imageSizeOptions:I,isResizable:!1}),h&&(0,ye.createElement)(ke.RangeControl,{label:(0,we.__)("Media width"),value:E||v,onChange:S,min:15,max:85})),R=(0,Ee.useBlockProps)({className:B,style:z}),L=(0,Ee.useInnerBlocksProps)({className:"wp-block-media-text__content"},{template:Yi});return(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)(Ee.InspectorControls,null,M),(0,ye.createElement)(Ee.BlockControls,{group:"block"},(0,ye.createElement)(Ee.BlockVerticalAlignmentControl,{onChange:e=>{o({verticalAlignment:e})},value:y}),(0,ye.createElement)(ke.ToolbarButton,{icon:Ki,title:(0,we.__)("Show media on left"),isActive:"left"===p,onClick:()=>o({mediaPosition:"left"})}),(0,ye.createElement)(ke.ToolbarButton,{icon:Qi,title:(0,we.__)("Show media on right"),isActive:"right"===p,onClick:()=>o({mediaPosition:"right"})}),"image"===g&&(0,ye.createElement)(Ee.__experimentalImageURLInputUI,{url:a||"",onChangeUrl:e=>{o(e)},linkDestination:c,mediaType:g,mediaUrl:_&&_.source_url,mediaLink:_&&_.link,linkTarget:u,linkClass:s,rel:b})),(0,ye.createElement)("div",R,(0,ye.createElement)($i,{className:"wp-block-media-text__media",onSelectMedia:x,onWidthChange:e=>{C(Xi(e))},commitWidthChange:S,ref:k,focalPoint:r,imageFill:l,isSelected:n,isStackedOnMobile:i,mediaAlt:m,mediaId:d,mediaPosition:p,mediaType:g,mediaUrl:h,mediaWidth:v}),(0,ye.createElement)("div",L)))};var ns={from:[{type:"block",blocks:["core/image"],transform:e=>{let{alt:t,url:n,id:o,anchor:r}=e;return(0,be.createBlock)("core/media-text",{mediaAlt:t,mediaId:o,mediaUrl:n,mediaType:"image",anchor:r})}},{type:"block",blocks:["core/video"],transform:e=>{let{src:t,id:n,anchor:o}=e;return(0,be.createBlock)("core/media-text",{mediaId:n,mediaUrl:t,mediaType:"video",anchor:o})}}],to:[{type:"block",blocks:["core/image"],isMatch:e=>{let{mediaType:t,mediaUrl:n}=e;return!n||"image"===t},transform:e=>{let{mediaAlt:t,mediaId:n,mediaUrl:o,anchor:r}=e;return(0,be.createBlock)("core/image",{alt:t,id:n,url:o,anchor:r})}},{type:"block",blocks:["core/video"],isMatch:e=>{let{mediaType:t,mediaUrl:n}=e;return!n||"video"===t},transform:e=>{let{mediaId:t,mediaUrl:n,anchor:o}=e;return(0,be.createBlock)("core/video",{id:t,src:n,anchor:o})}}]};const os={apiVersion:2,name:"core/media-text",title:"Media & Text",category:"media",description:"Set media and words side-by-side for a richer layout.",keywords:["image","video"],textdomain:"default",attributes:{align:{type:"string",default:"wide"},mediaAlt:{type:"string",source:"attribute",selector:"figure img",attribute:"alt",default:""},mediaPosition:{type:"string",default:"left"},mediaId:{type:"number"},mediaUrl:{type:"string",source:"attribute",selector:"figure video,figure img",attribute:"src"},mediaLink:{type:"string"},linkDestination:{type:"string"},linkTarget:{type:"string",source:"attribute",selector:"figure a",attribute:"target"},href:{type:"string",source:"attribute",selector:"figure a",attribute:"href"},rel:{type:"string",source:"attribute",selector:"figure a",attribute:"rel"},linkClass:{type:"string",source:"attribute",selector:"figure a",attribute:"class"},mediaType:{type:"string"},mediaWidth:{type:"number",default:50},mediaSizeSlug:{type:"string"},isStackedOnMobile:{type:"boolean",default:!0},verticalAlignment:{type:"string"},imageFill:{type:"boolean"},focalPoint:{type:"object"}},supports:{anchor:!0,align:["wide","full"],html:!1,color:{gradients:!0,link:!0}},editorStyle:"wp-block-media-text-editor",style:"wp-block-media-text"},{name:rs}=os,as={icon:Ai,example:{viewportWidth:601,attributes:{mediaType:"image",mediaUrl:"https://s.w.org/images/core/5.3/Biologia_Centrali-Americana_-_Cantorchilus_semibadius_1902.jpg"},innerBlocks:[{name:"core/paragraph",attributes:{content:(0,we.__)("The wren<br>Earns his living<br>Noiselessly.")}},{name:"core/paragraph",attributes:{content:(0,we.__)(" Kobayashi Issa ()")}}]},transforms:ns,edit:ts,save:function(e){let{attributes:t}=e;const{isStackedOnMobile:n,mediaAlt:o,mediaPosition:r,mediaType:a,mediaUrl:l,mediaWidth:i,mediaId:s,verticalAlignment:c,imageFill:u,focalPoint:m,linkClass:d,href:p,linkTarget:g,rel:h}=t,v=t.mediaSizeSlug||Ji,b=(0,Le.isEmpty)(h)?void 0:h,y=nt()({[`wp-image-${s}`]:s&&"image"===a,[`size-${v}`]:s&&"image"===a});let f=(0,ye.createElement)("img",{src:l,alt:o,className:y||null});p&&(f=(0,ye.createElement)("a",{className:d,href:p,target:g,rel:b},f));const _={image:()=>f,video:()=>(0,ye.createElement)("video",{controls:!0,src:l})},k=nt()({"has-media-on-the-right":"right"===r,"is-stacked-on-mobile":n,[`is-vertically-aligned-${c}`]:c,"is-image-fill":u}),w=u?Gi(l,m):{};let E;50!==i&&(E="right"===r?`auto ${i}%`:`${i}% auto`);const C={gridTemplateColumns:E};return(0,ye.createElement)("div",Ee.useBlockProps.save({className:k,style:C}),(0,ye.createElement)("figure",{className:"wp-block-media-text__media",style:w},(_[a]||Le.noop)()),(0,ye.createElement)("div",Ee.useInnerBlocksProps.save({className:"wp-block-media-text__content"})))},deprecated:Zi};var ls=window.wp.dom;const is=(0,Ie.withDispatch)(((e,t)=>{let{clientId:n,attributes:o}=t;const{replaceBlock:r}=e(Ee.store);return{convertToHTML(){r(n,(0,be.createBlock)("core/html",{content:o.originalUndelimitedContent}))}}}))((function(e){let{attributes:t,convertToHTML:n}=e;const{originalName:o,originalUndelimitedContent:r}=t,a=!!r,l=(0,be.getBlockType)("core/html"),i=[];let s;return a&&l?(s=(0,we.sprintf)((0,we.__)('Your site doesnt include support for the "%s" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.'),o),i.push((0,ye.createElement)(ke.Button,{key:"convert",onClick:n,variant:"primary"},(0,we.__)("Keep as HTML")))):s=(0,we.sprintf)((0,we.__)('Your site doesnt include support for the "%s" block. You can leave this block intact or remove it entirely.'),o),(0,ye.createElement)("div",(0,Ee.useBlockProps)({className:"has-warning"}),(0,ye.createElement)(Ee.Warning,{actions:i},s),(0,ye.createElement)(ye.RawHTML,null,(0,ls.safeHTML)(r)))}));var ss=is;const cs={apiVersion:2,name:"core/missing",title:"Unsupported",category:"text",description:"Your site doesnt include support for this block.",textdomain:"default",attributes:{originalName:{type:"string"},originalUndelimitedContent:{type:"string"},originalContent:{type:"string",source:"html"}},supports:{className:!1,customClassName:!1,inserter:!1,html:!1,reusable:!1}},{name:us}=cs,ms={name:us,__experimentalLabel(e,t){let{context:n}=t;if("accessibility"===n){const{originalName:t}=e,n=t?(0,be.getBlockType)(t):void 0;return n?n.settings.title||t:""}},edit:ss,save:function(e){let{attributes:t}=e;return(0,ye.createElement)(ye.RawHTML,null,t.originalContent)}};var ds=(0,ye.createElement)(fe.SVG,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,ye.createElement)(fe.Path,{d:"M4 9v1.5h16V9H4zm12 5.5h4V13h-4v1.5zm-6 0h4V13h-4v1.5zm-6 0h4V13H4v1.5z"}));const ps=(0,we.__)("Read more");var gs={from:[{type:"raw",schema:{"wp-block":{attributes:["data-block"]}},isMatch:e=>e.dataset&&"core/more"===e.dataset.block,transform(e){const{customText:t,noTeaser:n}=e.dataset,o={};return t&&(o.customText=t),""===n&&(o.noTeaser=!0),(0,be.createBlock)("core/more",o)}}]};const hs={apiVersion:2,name:"core/more",title:"More",category:"design",description:"Content before this block will be shown in the excerpt on your archives page.",keywords:["read more"],textdomain:"default",attributes:{customText:{type:"string"},noTeaser:{type:"boolean",default:!1}},supports:{customClassName:!1,className:!1,html:!1,multiple:!1},editorStyle:"wp-block-more-editor"},{name:vs}=hs,bs={icon:ds,example:{},__experimentalLabel(e,t){let{context:n}=t;if("accessibility"===n)return e.customText},transforms:gs,edit:function(e){let{attributes:{customText:t,noTeaser:n},insertBlocksAfter:o,setAttributes:r}=e;const a={width:`${(t||ps).length+1.2}em`};return(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)(Ee.InspectorControls,null,(0,ye.createElement)(ke.PanelBody,null,(0,ye.createElement)(ke.ToggleControl,{label:(0,we.__)("Hide the excerpt on the full content page"),checked:!!n,onChange:()=>r({noTeaser:!n}),help:e=>e?(0,we.__)("The excerpt is hidden."):(0,we.__)("The excerpt is visible.")}))),(0,ye.createElement)("div",(0,Ee.useBlockProps)(),(0,ye.createElement)("div",{className:"wp-block-more"},(0,ye.createElement)("input",{"aria-label":(0,we.__)("Read more link text"),type:"text",value:t,placeholder:ps,onChange:e=>{r({customText:""!==e.target.value?e.target.value:void 0})},onKeyDown:e=>{let{keyCode:t}=e;t===ht.ENTER&&o([(0,be.createBlock)((0,be.getDefaultBlockName)())])},style:a}))))},save:function(e){let{attributes:{customText:t,noTeaser:n}}=e;const o=t?`\x3c!--more ${t}--\x3e`:"\x3c!--more--\x3e",r=n?"\x3c!--noteaser--\x3e":"";return(0,ye.createElement)(ye.RawHTML,null,(0,Le.compact)([o,r]).join("\n"))}};var ys=(0,ye.createElement)(fe.SVG,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,ye.createElement)(fe.Path,{d:"M12 4c-4.4 0-8 3.6-8 8s3.6 8 8 8 8-3.6 8-8-3.6-8-8-8zm0 14.5c-3.6 0-6.5-2.9-6.5-6.5S8.4 5.5 12 5.5s6.5 2.9 6.5 6.5-2.9 6.5-6.5 6.5zM9 16l4.5-3L15 8.4l-4.5 3L9 16z"}));var fs=(0,ye.createElement)(fe.SVG,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,ye.createElement)(fe.Path,{d:"M13.8 5.2H3v1.5h10.8V5.2zm-3.6 12v1.5H21v-1.5H10.2zm7.2-6H6.6v1.5h10.8v-1.5z"}));function _s(e){let{clientId:t,__experimentalFeatures:n}=e;const o=(0,Ie.useSelect)((e=>e(Ee.store).__unstableGetClientIdsTree(t)),[t]),r=(0,ye.useRef)(),[a,l]=(0,ye.useState)(300);return(0,ye.useEffect)((()=>{var e,t;l(null!==(e=null==r||null===(t=r.current)||void 0===t?void 0:t.clientHeight)&&void 0!==e?e:300)}),[]),(0,ye.createElement)("div",{style:{minHeight:a}},(0,ye.createElement)(Ee.__experimentalListView,{ref:r,blocks:o,showBlockMovers:!0,showNestedBlocks:!0,__experimentalFeatures:n}))}function ks(e){return(0,Ie.useSelect)((t=>{var n;const{getEntityRecord:o,getEditedEntityRecord:r,getEntityRecords:a,hasFinishedResolution:l,canUser:i}=t(Dt.store),s=["postType","wp_navigation",e],c=e?o(...s):null;let u=e?r(...s):null;"publish"!==(null===(n=u)||void 0===n?void 0:n.status)&&(u=null);const m=!!e&&l("getEditedEntityRecord",s),d=["postType","wp_navigation",{per_page:-1,status:"publish"}],p=a(...d),g=e?(null==p?void 0:p.length)>1:(null==p?void 0:p.length)>0;return{isNavigationMenuResolved:m,isNavigationMenuMissing:!e||m&&!c,canSwitchNavigationMenu:g,hasResolvedNavigationMenus:l("getEntityRecords",d),navigationMenu:u,navigationMenus:p,canUserUpdateNavigationEntity:e?i("update","navigation",e):void 0,hasResolvedCanUserUpdateNavigationEntity:l("canUser",["update","navigation",e]),canUserDeleteNavigationEntity:e?i("delete","navigation",e):void 0,hasResolvedCanUserDeleteNavigationEntity:l("canUser",["delete","navigation",e]),canUserCreateNavigation:i("create","navigation"),hasResolvedCanUserCreateNavigation:l("canUser",["create","navigation"])}}),[e])}function ws(e){return{...xs(),...Es(),...Cs(e)}}function Es(){const{menus:e,isResolvingMenus:t,hasResolvedMenus:n}=(0,Ie.useSelect)((e=>{const{getMenus:t,isResolving:n,hasFinishedResolution:o}=e(Dt.store),r=[{per_page:-1}];return{menus:t(...r),isResolvingMenus:n("getMenus",r),hasResolvedMenus:o("getMenus",r)}}),[]);return{menus:e,isResolvingMenus:t,hasResolvedMenus:n,hasMenus:!(!n||null==e||!e.length)}}function Cs(e){const{menuItems:t,hasResolvedMenuItems:n}=(0,Ie.useSelect)((t=>{const{getMenuItems:n,hasFinishedResolution:o}=t(Dt.store),r=void 0!==e,a=r?[{menus:e,per_page:-1}]:void 0;return{menuItems:r?n(...a):void 0,hasResolvedMenuItems:!!r&&o("getMenuItems",a)}}),[e]);return{menuItems:t,hasResolvedMenuItems:n}}function xs(){const{pages:e,isResolvingPages:t,hasResolvedPages:n}=(0,Ie.useSelect)((e=>{const{getEntityRecords:t,isResolving:n,hasFinishedResolution:o}=e(Dt.store),r=["postType","page",{parent:0,order:"asc",orderby:"id",per_page:-1}];return{pages:t(...r)||null,isResolvingPages:n("getEntityRecords",r),hasResolvedPages:o("getEntityRecords",r)}}),[]);return{pages:e,isResolvingPages:t,hasResolvedPages:n,hasPages:!(!n||null==e||!e.length)}}var Ss=function(e){let{icon:t,size:n=24,...o}=e;return(0,ye.cloneElement)(t,{width:n,height:n,...o})},Bs=window.wp.htmlEntities;var Ts=(0,ye.createElement)(fe.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,ye.createElement)(fe.Path,{d:"M13.5 6C10.5 6 8 8.5 8 11.5c0 1.1.3 2.1.9 3l-3.4 3 1 1.1 3.4-2.9c1 .9 2.2 1.4 3.6 1.4 3 0 5.5-2.5 5.5-5.5C19 8.5 16.5 6 13.5 6zm0 9.5c-2.2 0-4-1.8-4-4s1.8-4 4-4 4 1.8 4 4-1.8 4-4 4z"}));var Ns=e=>{let{isLoading:t}=e;return(0,ye.createElement)("ul",{className:nt()("wp-block-navigation-placeholder__preview","wp-block-navigation__container",{"is-loading":t})},(0,ye.createElement)("li",{className:"wp-block-navigation-item"},""),(0,ye.createElement)("li",{className:"wp-block-navigation-item"},""),(0,ye.createElement)("li",{className:"wp-block-navigation-item"},""),(0,ye.createElement)("li",{className:"wp-block-navigation-placeholder__preview-search-icon"},(0,ye.createElement)(Ss,{icon:Ts})))};function zs(e,t){return e&&t?e+"//"+t:null}const Ps=["postType","wp_navigation",{status:"draft",per_page:-1}],Is=["postType","wp_navigation",{per_page:-1,status:"publish"}];function Ms(e){const t=(0,ye.useContext)(ke.Disabled.Context),n=function(e){return(0,Ie.useSelect)((t=>{if(!e)return;const{getBlock:n,getBlockParentsByBlockName:o}=t(Ee.store),r=o(e,"core/template-part",!0);if(null==r||!r.length)return;const a=t("core/editor").__experimentalGetDefaultTemplatePartAreas(),{getEditedEntityRecord:l}=t(Dt.store);for(const e of r){const t=n(e),{theme:o,slug:r}=t.attributes,s=l("postType","wp_template_part",zs(o,r));var i;if(null!=s&&s.area)return null===(i=a.find((e=>"uncategorized"!==e.area&&e.area===s.area)))||void 0===i?void 0:i.label}}),[e])}(t?void 0:e),o=(0,Ie.useRegistry)();return(0,ye.useCallback)((async()=>{if(t)return"";const{getEntityRecords:e}=o.resolveSelect(Dt.store),[r,a]=await Promise.all([e(...Ps),e(...Is)]),l=n?(0,we.sprintf)((0,we.__)("%s navigation"),n):(0,we.__)("Navigation"),i=[...r,...a].reduce(((e,t)=>{var n,o;return null!=t&&null!==(n=t.title)&&void 0!==n&&null!==(o=n.raw)&&void 0!==o&&o.startsWith(l)?e+1:e}),0);return(i>0?`${l} ${i+1}`:l)||""}),[t,n])}function Rs(e){const{saveEntityRecord:t}=(0,Ie.useDispatch)(Dt.store),n=Ms(e);return(0,ye.useCallback)((async function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null,o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[];e||(e=await n());const r={title:e,content:(0,be.serialize)(o),status:"publish"};return await t("postType","wp_navigation",r)}),[be.serialize,t])}function Ls(e){if(!e)return null;const t=function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"id",n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"parent";const o=Object.create(null),r=[];for(const a of e)o[a[t]]={...a,children:[]},a[n]?(o[a[n]]=o[a[n]]||{},o[a[n]].children=o[a[n]].children||[],o[a[n]].children.push(o[a[t]])):r.push(o[a[t]]);return r}(e),n=Vs(t);return(0,ja.applyFilters)("blocks.navigation.__unstableMenuItemsToBlocks",n,e)}function Vs(e){let t={};const n=(0,Le.sortBy)(e,"menu_order").map((e=>{var n,o;if("block"===e.type){const[t]=(0,be.parse)(e.content.raw);return t||(0,be.createBlock)("core/freeform",{content:e.content})}const r=function(e){var t;let{title:n,xfn:o,classes:r,attr_title:a,object:l,object_id:i,description:s,url:c,type:u,target:m}=e;l&&"post_tag"===l&&(l="tag");return{label:(null==n?void 0:n.rendered)||"",...(null===(t=l)||void 0===t?void 0:t.length)&&{type:l},kind:(null==u?void 0:u.replace("_","-"))||"custom",url:c||"",...(null==o?void 0:o.length)&&o.join(" ").trim()&&{rel:o.join(" ").trim()},...(null==r?void 0:r.length)&&r.join(" ").trim()&&{className:r.join(" ").trim()},...(null==a?void 0:a.length)&&{title:a},...i&&"custom"!==l&&{id:i},...(null==s?void 0:s.length)&&{description:s},..."_blank"===m&&{opensInNewTab:!0}}}(e),{innerBlocks:a=[],mapping:l={}}=null!==(n=e.children)&&void 0!==n&&n.length?Vs(e.children):{};t={...t,...l};const i=null!==(o=e.children)&&void 0!==o&&o.length?"core/navigation-submenu":"core/navigation-link",s=(0,be.createBlock)(i,r,a);return t[e.id]=s.clientId,s}));return{innerBlocks:n,mapping:t}}function Hs(e){const[t,n]=(0,ye.useState)(),[o,r]=(0,ye.useState)(!1),[a,l]=(0,ye.useState)(""),{menuItems:i,hasResolvedMenuItems:s}=ws(t),c=(0,ye.useCallback)((t=>{const{innerBlocks:n}=Ls(i);e(n,t)}),[i,Ls,e]);return(0,ye.useEffect)((()=>{o&&s&&(c(a),r(!1))}),[o,s,a]),(0,ye.useCallback)(((e,t)=>{n(e),s?c(t):(r(!0),l(t))}),[s,c])}const As=e=>{let{canSwitchNavigationMenu:t,navigationMenus:n,onFinish:o,menus:r,onCreateFromMenu:a,showClassicMenus:l=!1}=e;return(0,ye.createElement)(ke.DropdownMenu,{text:(0,we.__)("Select menu"),icon:null,toggleProps:{variant:"tertiary",iconPosition:"right",className:"wp-block-navigation-placeholder__actions__dropdown"},popoverProps:{isAlternate:!0}},(e=>{let{onClose:i}=e;return(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)(ke.MenuGroup,{label:(0,we.__)("Menus")},t&&(null==n?void 0:n.map((e=>(0,ye.createElement)(ke.MenuItem,{onClick:()=>{o(e)},onClose:i,key:e.id},(0,Bs.decodeEntities)(e.title.rendered)))))),l&&(0,ye.createElement)(ke.MenuGroup,{label:(0,we.__)("Classic Menus")},null==r?void 0:r.map((e=>(0,ye.createElement)(ke.MenuItem,{onClick:()=>{a(e.id,e.name)},onClose:i,key:e.id},(0,Bs.decodeEntities)(e.name))))))}))};function Fs(e){let{clientId:t,onFinish:n,canSwitchNavigationMenu:o,hasResolvedNavigationMenus:r,canUserCreateNavigation:a=!1}=e;const l=Rs(t),i=async function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;if(!a)return;const o=await l(t,e);n(o,e)},s=Hs(i),{isResolvingPages:c,menus:u,isResolvingMenus:m,hasPages:d,hasMenus:p}=ws(),g=c||m,{navigationMenus:h}=ks();return(0,ye.createElement)(ye.Fragment,null,(!r||g)&&(0,ye.createElement)(Ns,{isLoading:!0}),r&&!g&&(0,ye.createElement)(ke.Placeholder,{className:"wp-block-navigation-placeholder"},(0,ye.createElement)(Ns,null),(0,ye.createElement)("div",{className:"wp-block-navigation-placeholder__controls"},(0,ye.createElement)("div",{className:"wp-block-navigation-placeholder__actions"},(0,ye.createElement)("div",{className:"wp-block-navigation-placeholder__actions__indicator"},(0,ye.createElement)(Ss,{icon:ys})," ",(0,we.__)("Navigation")),(0,ye.createElement)("hr",null),p||null!=h&&h.length?(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)(As,{canSwitchNavigationMenu:o,navigationMenus:h,onFinish:n,menus:u,onCreateFromMenu:s,showClassicMenus:a}),(0,ye.createElement)("hr",null)):void 0,a&&d?(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)(ke.Button,{variant:"tertiary",onClick:()=>{const e=[(0,be.createBlock)("core/page-list")];i(e)}},(0,we.__)("Add all pages")),(0,ye.createElement)("hr",null)):void 0,a&&(0,ye.createElement)(ke.Button,{variant:"tertiary",onClick:()=>{i([])}},(0,we.__)("Start empty"))))))}var Ds=(0,ye.createElement)(fe.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,ye.createElement)(fe.Path,{d:"M13 11.8l6.1-6.3-1-1-6.1 6.2-6.1-6.2-1 1 6.1 6.3-6.5 6.7 1 1 6.5-6.6 6.5 6.6 1-1z"}));function Gs(e){let{children:t,id:n,isOpen:o,isResponsive:r,onToggle:a,isHiddenByDefault:l,classNames:i,styles:s}=e;if(!r)return t;const c=nt()("wp-block-navigation__responsive-container",i,{"is-menu-open":o,"hidden-by-default":l}),u=nt()("wp-block-navigation__responsive-container-open",{"always-shown":l}),m=`${n}-modal`,d={className:"wp-block-navigation__responsive-dialog",...o&&{role:"dialog","aria-modal":!0,"aria-label":(0,we.__)("Menu")}};return(0,ye.createElement)(ye.Fragment,null,!o&&(0,ye.createElement)(ke.Button,{"aria-haspopup":"true","aria-label":(0,we.__)("Open menu"),className:u,onClick:()=>a(!0)},(0,ye.createElement)(fe.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",width:"24",height:"24",role:"img","aria-hidden":"true",focusable:"false"},(0,ye.createElement)(fe.Rect,{x:"4",y:"7.5",width:"16",height:"1.5"}),(0,ye.createElement)(fe.Rect,{x:"4",y:"15",width:"16",height:"1.5"}))),(0,ye.createElement)("div",{className:c,style:s,id:m},(0,ye.createElement)("div",{className:"wp-block-navigation__responsive-close",tabIndex:"-1"},(0,ye.createElement)("div",d,(0,ye.createElement)(ke.Button,{className:"wp-block-navigation__responsive-container-close","aria-label":(0,we.__)("Close menu"),onClick:()=>a(!1)},(0,ye.createElement)(Ss,{icon:Ds})),(0,ye.createElement)("div",{className:"wp-block-navigation__responsive-container-content",id:`${m}-content`},t)))))}const Us=["core/navigation-link","core/search","core/social-links","core/page-list","core/spacer","core/home-link","core/site-title","core/site-logo","core/navigation-submenu"],Os=["core/navigation-link"],qs={type:"default",alignments:[]};function $s(e){let{isVisible:t,clientId:n,appender:o,hasCustomPlaceholder:r,orientation:a}=e;const{isImmediateParentOfSelectedBlock:l,selectedBlockHasDescendants:i,isSelected:s}=(0,Ie.useSelect)((e=>{var t;const{getClientIdsOfDescendants:o,hasSelectedInnerBlock:r,getSelectedBlockClientId:a}=e(Ee.store),l=a();return{isImmediateParentOfSelectedBlock:r(n,!1),selectedBlockHasDescendants:!(null===(t=o([l]))||void 0===t||!t.length),isSelected:l===n}}),[n]),[c,u,m]=(0,Dt.useEntityBlockEditor)("postType","wp_navigation"),d=(0,ye.useMemo)((()=>c.every((e=>{let{name:t}=e;return"core/navigation-link"===t||"core/navigation-submenu"===t||"core/page-list"===t}))),[c]),p=!(!t||!(s||l&&!i))&&void 0,g=(0,ye.useMemo)((()=>(0,ye.createElement)(Ns,null)),[]),h=(0,Ee.useInnerBlocksProps)({className:"wp-block-navigation__container"},{value:c,onInput:u,onChange:m,allowedBlocks:Us,__experimentalDefaultBlock:Os,__experimentalDirectInsert:d,orientation:a,renderAppender:o||p,templateLock:!1,__experimentalLayout:qs,placeholder:!t||r?void 0:g});return(0,ye.createElement)(Ee.__experimentalBlockContentOverlay,{clientId:n,tagName:"div",wrapperProps:h})}function Ws(e){let{clientId:t,onSelect:n,onCreateNew:o,canUserCreateNavigation:r=!1}=e;const{menus:a,hasMenus:l}=ws(),{navigationMenus:i}=ks(),s=(0,Dt.useEntityId)("postType","wp_navigation"),c=Rs(t),u=Hs((async function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;if(!r)return;const o=await c(t,e);n(o)}));return(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)(ke.MenuGroup,{label:(0,we.__)("Menus")},(0,ye.createElement)(ke.MenuItemsChoice,{value:s,onSelect:e=>n(i.find((t=>t.id===e))),choices:i.map((e=>{let{id:t,title:n}=e;const o=(0,Bs.decodeEntities)(n.rendered);return{value:t,label:o,"aria-label":(0,we.sprintf)((0,we.__)("Switch to '%s'"),o)}}))})),r&&(0,ye.createElement)(ye.Fragment,null,l&&(0,ye.createElement)(ke.MenuGroup,{label:(0,we.__)("Classic Menus")},a.map((e=>(0,ye.createElement)(ke.MenuItem,{onClick:()=>{u(e.id,e.name)},key:e.id},(0,Bs.decodeEntities)(e.name))))),(0,ye.createElement)(ke.MenuGroup,{label:(0,we.__)("Tools")},(0,ye.createElement)(ke.MenuItem,{onClick:o},(0,we.__)("Create new menu")),(0,ye.createElement)(ke.MenuItem,{href:(0,Dr.addQueryArgs)("edit.php",{post_type:"wp_navigation"})},(0,we.__)("Manage menus")))))}function js(){const[e,t]=(0,Dt.useEntityProp)("postType","wp_navigation","title");return(0,ye.createElement)(ke.TextControl,{label:(0,we.__)("Menu name"),value:e,onChange:t})}const Zs={},Ks=["postType","wp_navigation",{status:"draft",per_page:-1}];function Qs(e){let{blockProps:t,blocks:n,clientId:o,hasSavedUnsavedInnerBlocks:r,onSave:a,hasSelection:l}=e;const i=(0,ye.useContext)(ke.Disabled.Context),s=(0,ye.useRef)(!1),c=(0,Ee.useInnerBlocksProps)(t,{renderAppender:!!l&&void 0}),{isSaving:u,draftNavigationMenus:m,hasResolvedDraftNavigationMenus:d}=(0,Ie.useSelect)((e=>{if(i)return Zs;const{getEntityRecords:t,hasFinishedResolution:n,isSavingEntityRecord:o}=e(Dt.store);return{isSaving:o("postType","wp_navigation"),draftNavigationMenus:t(...Ks),hasResolvedDraftNavigationMenus:n("getEntityRecords",Ks)}}),[i]),{hasResolvedNavigationMenus:p,navigationMenus:g}=ks(),h=Rs(o);return(0,ye.useEffect)((async()=>{if(i||r||u||s.current||!d||!p||!l)return;s.current=!0;const e=await h(null,n);a(e),s.current=!1}),[i,u,d,p,m,g,l,h,n]),(0,ye.createElement)("div",{className:"wp-block-navigation__unsaved-changes"},(0,ye.createElement)(ke.Disabled,{className:nt()("wp-block-navigation__unsaved-changes-overlay",{"is-saving":l})},(0,ye.createElement)("div",c)),l&&(0,ye.createElement)(ke.Spinner,null))}function Js(e){let{onDelete:t}=e;const[n,o]=(0,ye.useState)(!1),r=(0,Dt.useEntityId)("postType","wp_navigation"),[a]=(0,Dt.useEntityProp)("postType","wp_navigation","title"),{deleteEntityRecord:l}=(0,Ie.useDispatch)(Dt.store);return(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)(ke.Button,{className:"wp-block-navigation-delete-menu-button",variant:"secondary",isDestructive:!0,onClick:()=>{o(!0)}},(0,we.__)("Delete menu")),n&&(0,ye.createElement)(ke.Modal,{title:(0,we.sprintf)((0,we.__)("Delete %s"),a),closeLabel:(0,we.__)("Cancel"),onRequestClose:()=>o(!1)},(0,ye.createElement)("p",null,(0,we.__)("Are you sure you want to delete this navigation menu?")),(0,ye.createElement)(ke.Flex,{justify:"flex-end"},(0,ye.createElement)(ke.FlexItem,null,(0,ye.createElement)(ke.Button,{variant:"secondary",onClick:()=>{o(!1)}},(0,we.__)("Cancel"))),(0,ye.createElement)(ke.FlexItem,null,(0,ye.createElement)(ke.Button,{variant:"primary",onClick:()=>{l("postType","wp_navigation",r,{force:!0}),t()}},(0,we.__)("Confirm"))))))}var Ys=function(){let{name:e,message:t}=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};const n=(0,ye.useRef)(),{createWarningNotice:o,removeNotice:r}=(0,Ie.useDispatch)(Ir.store),a=()=>{n.current||(n.current=e,o(t,{id:n.current,type:"snackbar"}))},l=()=>{n.current&&(r(n.current),n.current=null)};return[a,l]};const Xs=[];function ec(e){return e.ownerDocument.defaultView.getComputedStyle(e)}function tc(e,t,n){if(!e)return;t(ec(e).color);let o=e,r=ec(o).backgroundColor;for(;"rgba(0, 0, 0, 0)"===r&&o.parentNode&&o.parentNode.nodeType===o.parentNode.ELEMENT_NODE;)o=o.parentNode,r=ec(o).backgroundColor;n(r)}var nc=(0,Ee.withColors)({textColor:"color"},{backgroundColor:"color"},{overlayBackgroundColor:"color"},{overlayTextColor:"color"})((function(e){let{attributes:t,setAttributes:n,clientId:o,isSelected:r,className:a,backgroundColor:l,setBackgroundColor:i,textColor:s,setTextColor:c,overlayBackgroundColor:u,setOverlayBackgroundColor:m,overlayTextColor:d,setOverlayTextColor:p,context:{navigationArea:g},hasSubmenuIndicatorSetting:h=!0,hasColorSettings:v=!0,customPlaceholder:b=null,customAppender:y=null}=e;const{openSubmenusOnClick:f,overlayMenu:_,showSubmenuIcon:k,layout:{justifyContent:w,orientation:E="horizontal",flexWrap:C="wrap"}={}}=t;let x=Le.noop;const S=g?undefined:t.ref,B=(0,Ie.useRegistry)(),T=(0,ye.useCallback)((e=>{n({ref:e}),g&&x(e)}),[g]),[N,z]=(0,Ee.__experimentalUseNoRecursiveRenders)(`navigationMenu/${S}`);ws();const{hasUncontrolledInnerBlocks:P,uncontrolledInnerBlocks:I,isInnerBlockSelected:M}=(0,Ie.useSelect)((e=>{const{getBlock:t,getBlocks:n,hasSelectedInnerBlock:r}=e(Ee.store),a=t(o).innerBlocks,l=null==a?void 0:a.length,i=l?Xs:n(o);return{hasSubmenus:!!(l?a:i).find((e=>"core/navigation-submenu"===e.name)),hasUncontrolledInnerBlocks:l,uncontrolledInnerBlocks:a,isInnerBlockSelected:r(o,!0)}}),[o]),{replaceInnerBlocks:R,selectBlock:L,__unstableMarkNextChangeAsNotPersistent:V}=(0,Ie.useDispatch)(Ee.store),[H,A]=(0,ye.useState)(!1),F=!!g&&!S,[D,G]=(0,ye.useState)(!P||F),[U,O]=(0,ye.useState)(!1),{isNavigationMenuResolved:q,isNavigationMenuMissing:$,canSwitchNavigationMenu:W,hasResolvedNavigationMenus:j,navigationMenus:Z,navigationMenu:K,canUserUpdateNavigationEntity:Q,hasResolvedCanUserUpdateNavigationEntity:J,canUserDeleteNavigationEntity:Y,hasResolvedCanUserDeleteNavigationEntity:X,canUserCreateNavigation:ee,hasResolvedCanUserCreateNavigation:te}=ks(S),ne=(0,ye.useRef)(),oe="draft"===(null==K?void 0:K.status),{listViewToolbarButton:re,listViewModal:ae}=function(e,t){const[n,o]=(0,ye.useState)(!1);return{listViewToolbarButton:(0,ye.createElement)(ke.ToolbarButton,{className:"components-toolbar__control",label:(0,we.__)("Open list view"),onClick:()=>o(!0),icon:fs}),listViewModal:n&&(0,ye.createElement)(ke.Modal,{title:(0,we.__)("List View"),closeLabel:(0,we.__)("Close"),onRequestClose:()=>{o(!1)},shouldCloseOnClickOutside:!1},(0,ye.createElement)(_s,{clientId:e,__experimentalFeatures:t}))}}(o),le=!$&&q,ie=(0,Ee.useBlockProps)({ref:ne,className:nt()(a,{"items-justified-right":"right"===w,"items-justified-space-between":"space-between"===w,"items-justified-left":"left"===w,"items-justified-center":"center"===w,"is-vertical":"vertical"===E,"no-wrap":"nowrap"===C,"is-responsive":"never"!==_,"has-text-color":!!s.color||!(null==s||!s.class),[(0,Ee.getColorClassName)("color",null==s?void 0:s.slug)]:!(null==s||!s.slug),"has-background":!!l.color||l.class,[(0,Ee.getColorClassName)("background-color",null==l?void 0:l.slug)]:!(null==l||!l.slug)}),style:{color:!(null!=s&&s.slug)&&(null==s?void 0:s.color),backgroundColor:!(null!=l&&l.slug)&&(null==l?void 0:l.color)}}),se=nt()({"has-text-color":!!d.color||!(null==d||!d.class),[(0,Ee.getColorClassName)("color",null==d?void 0:d.slug)]:!(null==d||!d.slug),"has-background":!!u.color||(null==u?void 0:u.class),[(0,Ee.getColorClassName)("background-color",null==u?void 0:u.slug)]:!(null==u||!u.slug)}),ce={color:!(null!=d&&d.slug)&&(null==d?void 0:d.color),backgroundColor:!(null!=u&&u.slug)&&(null==u?void 0:u.color)&&u.color},ue="web"===ye.Platform.OS,[me,de]=(0,ye.useState)(),[pe,ge]=(0,ye.useState)(),[he,ve]=(0,ye.useState)(),[be,fe]=(0,ye.useState)();(0,ye.useEffect)((()=>{E&&(V(),n({orientation:E}))}),[E]),(0,ye.useEffect)((()=>{var e;if(!ue)return;tc(ne.current,ge,de);const t=null===(e=ne.current)||void 0===e?void 0:e.querySelector('[data-type="core/navigation-link"] [data-type="core/navigation-link"]');t&&tc(t,fe,ve)})),(0,ye.useEffect)((()=>{G(!le)}),[le]);const[_e,Ce]=Ys({name:"block-library/core/navigation/permissions/update",message:(0,we.__)("You do not have permission to edit this Menu. Any changes made will not be saved.")}),[xe,Se]=Ys({name:"block-library/core/navigation/permissions/create",message:(0,we.__)("You do not have permission to create Navigation Menus.")});(0,ye.useEffect)((()=>{r||M||(Ce(),Se()),(r||M)&&(J&&!Q&&_e(),S||!te||ee||xe())}),[r,M,Q,J,ee,te,S]);const Be=(0,ye.useCallback)((()=>{B.batch((()=>{g&&x(0),n({ref:void 0}),S||R(o,[]),G(!0)}))}),[o,S]);if(P&&!le)return(0,ye.createElement)("nav",ie,(0,ye.createElement)(Gs,{id:o,onToggle:O,isOpen:U,isResponsive:"never"!==_,isHiddenByDefault:"always"===_,classNames:se,styles:ce},(0,ye.createElement)(Qs,{blockProps:ie,blocks:I,clientId:o,navigationMenus:Z,hasSelection:r||M,hasSavedUnsavedInnerBlocks:H,onSave:e=>{A(!0),T(e.id)}})));if(S&&$)return(0,ye.createElement)("div",ie,(0,ye.createElement)(Ee.Warning,null,(0,we.__)("Navigation menu has been deleted or is unavailable. "),(0,ye.createElement)(ke.Button,{onClick:Be,variant:"link"},(0,we.__)("Create a new menu?"))));if(le&&N)return(0,ye.createElement)("div",ie,(0,ye.createElement)(Ee.Warning,null,(0,we.__)("Block cannot be rendered inside itself.")));const Te=b||Fs;return(0,ye.createElement)(Dt.EntityProvider,{kind:"postType",type:"wp_navigation",id:S},(0,ye.createElement)(z,null,(0,ye.createElement)(Ee.BlockControls,null,!oe&&le&&(0,ye.createElement)(ke.ToolbarGroup,null,(0,ye.createElement)(ke.ToolbarDropdownMenu,{label:(0,we.__)("Select Menu"),text:(0,we.__)("Select Menu"),icon:null},(e=>{let{onClose:t}=e;return(0,ye.createElement)(Ws,{clientId:o,onSelect:e=>{let{id:n}=e;T(n),t()},onCreateNew:Be,canUserCreateNavigation:ee})}))),(0,ye.createElement)(ke.ToolbarGroup,null,re)),ae,(0,ye.createElement)(Ee.InspectorControls,null,h&&(0,ye.createElement)(ke.PanelBody,{title:(0,we.__)("Display")},(0,ye.createElement)("h3",null,(0,we.__)("Overlay Menu")),(0,ye.createElement)(ke.__experimentalToggleGroupControl,{label:(0,we.__)("Configure overlay menu"),value:_,help:(0,we.__)("Collapses the navigation options in a menu icon opening an overlay."),onChange:e=>n({overlayMenu:e}),isBlock:!0,hideLabelFromVision:!0},(0,ye.createElement)(ke.__experimentalToggleGroupControlOption,{value:"never",label:(0,we.__)("Off")}),(0,ye.createElement)(ke.__experimentalToggleGroupControlOption,{value:"mobile",label:(0,we.__)("Mobile")}),(0,ye.createElement)(ke.__experimentalToggleGroupControlOption,{value:"always",label:(0,we.__)("Always")})),(0,ye.createElement)("h3",null,(0,we.__)("Submenus")),(0,ye.createElement)(ke.ToggleControl,{checked:f,onChange:e=>{n({openSubmenusOnClick:e})},label:(0,we.__)("Open on click")}),!t.openSubmenusOnClick&&(0,ye.createElement)(ke.ToggleControl,{checked:k,onChange:e=>{n({showSubmenuIcon:e})},label:(0,we.__)("Show icons")})),v&&(0,ye.createElement)(Ee.PanelColorSettings,{__experimentalHasMultipleOrigins:!0,__experimentalIsRenderedInSidebar:!0,title:(0,we.__)("Color"),initialOpen:!1,colorSettings:[{value:s.color,onChange:c,label:(0,we.__)("Text")},{value:l.color,onChange:i,label:(0,we.__)("Background")},{value:d.color,onChange:p,label:(0,we.__)("Submenu & overlay text")},{value:u.color,onChange:m,label:(0,we.__)("Submenu & overlay background")}]},ue&&(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)(Ee.ContrastChecker,{backgroundColor:me,textColor:pe}),(0,ye.createElement)(Ee.ContrastChecker,{backgroundColor:he,textColor:be})))),le&&(0,ye.createElement)(Ee.InspectorControls,{__experimentalGroup:"advanced"},J&&Q&&(0,ye.createElement)(js,null),X&&Y&&(0,ye.createElement)(Js,{onDelete:Be})),(0,ye.createElement)("nav",ie,D&&(0,ye.createElement)(Te,{onFinish:e=>{G(!1),e&&T(e.id),L(o)},canSwitchNavigationMenu:W,hasResolvedNavigationMenus:j,clientId:o,canUserCreateNavigation:ee}),!te||!le&&!D&&(0,ye.createElement)(Ns,{isLoading:!0}),!D&&(0,ye.createElement)(Gs,{id:o,onToggle:O,isOpen:U,isResponsive:"never"!==_,isHiddenByDefault:"always"===_,classNames:se,styles:ce},le&&(0,ye.createElement)($s,{isVisible:!D,clientId:o,appender:y,hasCustomPlaceholder:!!b,orientation:E})))))}));const oc={fontStyle:"var:preset|font-style|",fontWeight:"var:preset|font-weight|",textDecoration:"var:preset|text-decoration|",textTransform:"var:preset|text-transform|"},rc=e=>{let{navigationMenuId:t,...n}=e;return{...n,ref:t}},ac=e=>{if(e.layout)return e;const{itemsJustification:t,orientation:n,...o}=e;return(t||n)&&Object.assign(o,{layout:{type:"flex",...t&&{justifyContent:t},...n&&{orientation:n}}}),o},lc=[{attributes:{navigationMenuId:{type:"number"},textColor:{type:"string"},customTextColor:{type:"string"},rgbTextColor:{type:"string"},backgroundColor:{type:"string"},customBackgroundColor:{type:"string"},rgbBackgroundColor:{type:"string"},showSubmenuIcon:{type:"boolean",default:!0},openSubmenusOnClick:{type:"boolean",default:!1},overlayMenu:{type:"string",default:"mobile"},__unstableLocation:{type:"string"},overlayBackgroundColor:{type:"string"},customOverlayBackgroundColor:{type:"string"},overlayTextColor:{type:"string"},customOverlayTextColor:{type:"string"}},supports:{align:["wide","full"],anchor:!0,html:!1,inserter:!0,typography:{fontSize:!0,lineHeight:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0,__experimentalTextTransform:!0,__experimentalFontFamily:!0,__experimentalTextDecoration:!0,__experimentalDefaultControls:{fontSize:!0}},spacing:{blockGap:!0,units:["px","em","rem","vh","vw"],__experimentalDefaultControls:{blockGap:!0}},__experimentalLayout:{allowSwitching:!1,allowInheriting:!1,default:{type:"flex"}}},save:()=>(0,ye.createElement)(Ee.InnerBlocks.Content,null),isEligible:e=>{let{navigationMenuId:t}=e;return!!t},migrate:rc},{attributes:{navigationMenuId:{type:"number"},orientation:{type:"string",default:"horizontal"},textColor:{type:"string"},customTextColor:{type:"string"},rgbTextColor:{type:"string"},backgroundColor:{type:"string"},customBackgroundColor:{type:"string"},rgbBackgroundColor:{type:"string"},itemsJustification:{type:"string"},showSubmenuIcon:{type:"boolean",default:!0},openSubmenusOnClick:{type:"boolean",default:!1},overlayMenu:{type:"string",default:"never"},__unstableLocation:{type:"string"},overlayBackgroundColor:{type:"string"},customOverlayBackgroundColor:{type:"string"},overlayTextColor:{type:"string"},customOverlayTextColor:{type:"string"}},supports:{align:["wide","full"],anchor:!0,html:!1,inserter:!0,typography:{fontSize:!0,lineHeight:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0,__experimentalTextTransform:!0,__experimentalFontFamily:!0,__experimentalTextDecoration:!0,__experimentalDefaultControls:{fontSize:!0}},spacing:{blockGap:!0,units:["px","em","rem","vh","vw"],__experimentalDefaultControls:{blockGap:!0}}},save:()=>(0,ye.createElement)(Ee.InnerBlocks.Content,null),isEligible:e=>{let{itemsJustification:t,orientation:n}=e;return!!t||!!n},migrate:(0,ot.compose)(rc,ac)},{attributes:{orientation:{type:"string",default:"horizontal"},textColor:{type:"string"},customTextColor:{type:"string"},rgbTextColor:{type:"string"},backgroundColor:{type:"string"},customBackgroundColor:{type:"string"},rgbBackgroundColor:{type:"string"},itemsJustification:{type:"string"},showSubmenuIcon:{type:"boolean",default:!0},openSubmenusOnClick:{type:"boolean",default:!1},overlayMenu:{type:"string",default:"never"},__unstableLocation:{type:"string"},overlayBackgroundColor:{type:"string"},customOverlayBackgroundColor:{type:"string"},overlayTextColor:{type:"string"},customOverlayTextColor:{type:"string"}},supports:{align:["wide","full"],anchor:!0,html:!1,inserter:!0,typography:{fontSize:!0,lineHeight:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0,__experimentalTextTransform:!0,__experimentalFontFamily:!0,__experimentalTextDecoration:!0},spacing:{blockGap:!0,units:["px","em","rem","vh","vw"],__experimentalDefaultControls:{blockGap:!0}}},save:()=>(0,ye.createElement)(Ee.InnerBlocks.Content,null),migrate:(0,ot.compose)(rc,ac,lt),isEligible(e){var t;let{style:n}=e;return null==n||null===(t=n.typography)||void 0===t?void 0:t.fontFamily}},{attributes:{orientation:{type:"string",default:"horizontal"},textColor:{type:"string"},customTextColor:{type:"string"},rgbTextColor:{type:"string"},backgroundColor:{type:"string"},customBackgroundColor:{type:"string"},rgbBackgroundColor:{type:"string"},itemsJustification:{type:"string"},showSubmenuIcon:{type:"boolean",default:!0},openSubmenusOnClick:{type:"boolean",default:!1},isResponsive:{type:"boolean",default:"false"},__unstableLocation:{type:"string"},overlayBackgroundColor:{type:"string"},customOverlayBackgroundColor:{type:"string"},overlayTextColor:{type:"string"},customOverlayTextColor:{type:"string"}},supports:{align:["wide","full"],anchor:!0,html:!1,inserter:!0,typography:{fontSize:!0,lineHeight:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0,__experimentalTextTransform:!0,__experimentalFontFamily:!0,__experimentalTextDecoration:!0}},isEligible:e=>e.isResponsive,migrate:(0,ot.compose)(rc,ac,lt,(function(e){return delete e.isResponsive,{...e,overlayMenu:"mobile"}})),save:()=>(0,ye.createElement)(Ee.InnerBlocks.Content,null)},{attributes:{orientation:{type:"string"},textColor:{type:"string"},customTextColor:{type:"string"},rgbTextColor:{type:"string"},backgroundColor:{type:"string"},customBackgroundColor:{type:"string"},rgbBackgroundColor:{type:"string"},itemsJustification:{type:"string"},showSubmenuIcon:{type:"boolean",default:!0}},supports:{align:["wide","full"],anchor:!0,html:!1,inserter:!0,fontSize:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0,__experimentalTextTransform:!0,color:!0,__experimentalFontFamily:!0,__experimentalTextDecoration:!0},save:()=>(0,ye.createElement)(Ee.InnerBlocks.Content,null),isEligible(e){if(!e.style||!e.style.typography)return!1;for(const t in oc){const n=e.style.typography[t];if(n&&n.startsWith(oc[t]))return!0}return!1},migrate:(0,ot.compose)(rc,ac,lt,(function(e){return{...e,style:{...e.style,typography:(0,Le.mapValues)(e.style.typography,((e,t)=>{const n=oc[t];if(n&&e.startsWith(n)){const o=e.slice(n.length);return"textDecoration"===t&&"strikethrough"===o?"line-through":o}return e}))}}}))},{attributes:{className:{type:"string"},textColor:{type:"string"},rgbTextColor:{type:"string"},backgroundColor:{type:"string"},rgbBackgroundColor:{type:"string"},fontSize:{type:"string"},customFontSize:{type:"number"},itemsJustification:{type:"string"},showSubmenuIcon:{type:"boolean"}},isEligible:e=>e.rgbTextColor||e.rgbBackgroundColor,supports:{align:["wide","full"],anchor:!0,html:!1,inserter:!0},migrate:(0,ot.compose)(rc,(e=>({...(0,Le.omit)(e,["rgbTextColor","rgbBackgroundColor"]),customTextColor:e.textColor?void 0:e.rgbTextColor,customBackgroundColor:e.backgroundColor?void 0:e.rgbBackgroundColor}))),save:()=>(0,ye.createElement)(Ee.InnerBlocks.Content,null)}];var ic=lc;const sc={apiVersion:2,name:"core/navigation",title:"Navigation",category:"theme",description:"A collection of blocks that allow visitors to get around your site.",keywords:["menu","navigation","links"],textdomain:"default",attributes:{ref:{type:"number"},textColor:{type:"string"},customTextColor:{type:"string"},rgbTextColor:{type:"string"},backgroundColor:{type:"string"},customBackgroundColor:{type:"string"},rgbBackgroundColor:{type:"string"},showSubmenuIcon:{type:"boolean",default:!0},openSubmenusOnClick:{type:"boolean",default:!1},overlayMenu:{type:"string",default:"mobile"},__unstableLocation:{type:"string"},overlayBackgroundColor:{type:"string"},customOverlayBackgroundColor:{type:"string"},overlayTextColor:{type:"string"},customOverlayTextColor:{type:"string"}},usesContext:["navigationArea"],providesContext:{textColor:"textColor",customTextColor:"customTextColor",backgroundColor:"backgroundColor",customBackgroundColor:"customBackgroundColor",overlayTextColor:"overlayTextColor",customOverlayTextColor:"customOverlayTextColor",overlayBackgroundColor:"overlayBackgroundColor",customOverlayBackgroundColor:"customOverlayBackgroundColor",fontSize:"fontSize",customFontSize:"customFontSize",showSubmenuIcon:"showSubmenuIcon",openSubmenusOnClick:"openSubmenusOnClick",style:"style",orientation:"orientation"},supports:{align:["wide","full"],anchor:!0,html:!1,inserter:!0,typography:{fontSize:!0,lineHeight:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0,__experimentalTextTransform:!0,__experimentalFontFamily:!0,__experimentalDefaultControls:{fontSize:!0}},spacing:{units:["px","em","rem","vh","vw"]},__experimentalLayout:{allowSwitching:!1,allowInheriting:!1,default:{type:"flex"}}},viewScript:"file:./view.min.js",editorStyle:"wp-block-navigation-editor",style:"wp-block-navigation"},{name:cc}=sc,uc={icon:ys,example:{innerBlocks:[{name:"core/navigation-link",attributes:{label:(0,we.__)("Home"),url:"https://make.wordpress.org/"}},{name:"core/navigation-link",attributes:{label:(0,we.__)("About"),url:"https://make.wordpress.org/"}},{name:"core/navigation-link",attributes:{label:(0,we.__)("Contact"),url:"https://make.wordpress.org/"}}]},edit:nc,save:function(e){let{attributes:t}=e;if(!t.ref)return(0,ye.createElement)(Ee.InnerBlocks.Content,null)},deprecated:ic};var mc=(0,ye.createElement)(fe.SVG,{xmlns:"https://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,ye.createElement)(fe.Path,{d:"M12.5 14.5h-1V16h1c2.2 0 4-1.8 4-4s-1.8-4-4-4h-1v1.5h1c1.4 0 2.5 1.1 2.5 2.5s-1.1 2.5-2.5 2.5zm-4 1.5v-1.5h-1C6.1 14.5 5 13.4 5 12s1.1-2.5 2.5-2.5h1V8h-1c-2.2 0-4 1.8-4 4s1.8 4 4 4h1zm-1-3.2h5v-1.5h-5v1.5zM18 4H9c-1.1 0-2 .9-2 2v.5h1.5V6c0-.3.2-.5.5-.5h9c.3 0 .5.2.5.5v12c0 .3-.2.5-.5.5H9c-.3 0-.5-.2-.5-.5v-.5H7v.5c0 1.1.9 2 2 2h9c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2z"}));var dc=(0,ye.createElement)(fe.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,ye.createElement)(fe.Path,{d:"M2 12c0 3.6 2.4 5.5 6 5.5h.5V19l3-2.5-3-2.5v2H8c-2.5 0-4.5-1.5-4.5-4s2-4.5 4.5-4.5h3.5V6H8c-3.6 0-6 2.4-6 6zm19.5-1h-8v1.5h8V11zm0 5h-8v1.5h8V16zm0-10h-8v1.5h8V6z"}));const{name:pc}={apiVersion:2,name:"core/navigation-link",title:"Custom Link",category:"design",parent:["core/navigation"],description:"Add a page, link, or another item to your navigation.",textdomain:"default",attributes:{label:{type:"string"},type:{type:"string"},description:{type:"string"},rel:{type:"string"},id:{type:"number"},opensInNewTab:{type:"boolean",default:!1},url:{type:"string"},title:{type:"string"},kind:{type:"string"},isTopLevelLink:{type:"boolean"}},usesContext:["textColor","customTextColor","backgroundColor","customBackgroundColor","overlayTextColor","customOverlayTextColor","overlayBackgroundColor","customOverlayBackgroundColor","fontSize","customFontSize","showSubmenuIcon","style"],supports:{reusable:!1,html:!1,__experimentalSlashInserter:!0},editorStyle:"wp-block-navigation-link-editor",style:"wp-block-navigation-link"};function gc(e,t){switch(e){case"post":case"page":return{type:"post",subtype:e};case"category":return{type:"term",subtype:"category"};case"tag":return{type:"term",subtype:"post_tag"};case"post_format":return{type:"post-format"};default:return"taxonomy"===t?{type:"term",subtype:e}:"post-type"===t?{type:"post",subtype:e}:{}}}function hc(e){const t=document.implementation.createHTMLDocument("");return t.body.innerHTML=e,t.body.textContent||""}function vc(e){let{block:t,transforms:n,replace:o}=e;return(0,ye.createElement)("div",{className:"link-control-transform"},(0,ye.createElement)("h3",{className:"link-control-transform__subheading"},(0,we.__)("Transform")),(0,ye.createElement)("div",{className:"link-control-transform__items"},n.map(((e,n)=>(0,ye.createElement)(ke.Button,{key:`transform-${n}`,onClick:()=>o(t.clientId,(0,be.switchToBlockType)(t,e.name)),className:"link-control-transform__item"},(0,ye.createElement)(Ee.BlockIcon,{icon:e.icon}),e.title)))))}var bc=(0,ye.createElement)(fe.SVG,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,ye.createElement)(fe.Path,{d:"M4 14.5h16V16H4zM4 18.5h9V20H4zM4 4h3c2 0 3 .86 3 2.583 0 .891-.253 1.554-.76 1.988-.505.435-1.24.652-2.204.652H5.542V12H4V4zm2.855 4c.53 0 .924-.114 1.18-.343.266-.228.398-.579.398-1.051 0-.473-.132-.82-.397-1.04-.265-.229-.67-.343-1.217-.343H5.542V8h1.313z"}));var yc=(0,ye.createElement)(fe.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,ye.createElement)(fe.Path,{d:"M7 5.5h10a.5.5 0 01.5.5v12a.5.5 0 01-.5.5H7a.5.5 0 01-.5-.5V6a.5.5 0 01.5-.5zM17 4H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V6a2 2 0 00-2-2zm-1 3.75H8v1.5h8v-1.5zM8 11h8v1.5H8V11zm6 3.25H8v1.5h6v-1.5z"}));var fc=(0,ye.createElement)(fe.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,ye.createElement)(fe.Path,{d:"M20.1 11.2l-6.7-6.7c-.1-.1-.3-.2-.5-.2H5c-.4-.1-.8.3-.8.7v7.8c0 .2.1.4.2.5l6.7 6.7c.2.2.5.4.7.5s.6.2.9.2c.3 0 .6-.1.9-.2.3-.1.5-.3.8-.5l5.6-5.6c.4-.4.7-1 .7-1.6.1-.6-.2-1.2-.6-1.6zM19 13.4L13.4 19c-.1.1-.2.1-.3.2-.2.1-.4.1-.6 0-.1 0-.2-.1-.3-.2l-6.5-6.5V5.8h6.8l6.5 6.5c.2.2.2.4.2.6 0 .1 0 .3-.2.5zM9 8c-.6 0-1 .4-1 1s.4 1 1 1 1-.4 1-1-.4-1-1-1z"}));var _c=(0,ye.createElement)(fe.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,ye.createElement)(fe.Path,{d:"M4 20h9v-1.5H4V20zm0-5.5V16h16v-1.5H4zm.8-4l.7.7 2-2V12h1V9.2l2 2 .7-.7-2-2H12v-1H9.2l2-2-.7-.7-2 2V4h-1v2.8l-2-2-.7.7 2 2H4v1h2.8l-2 2z"}));const kc=[{name:"link",isDefault:!0,title:(0,we.__)("Custom Link"),description:(0,we.__)("A link to a custom URL."),attributes:{}},{name:"post",icon:bc,title:(0,we.__)("Post Link"),description:(0,we.__)("A link to a post."),attributes:{type:"post",kind:"post-type"}},{name:"page",icon:yc,title:(0,we.__)("Page Link"),description:(0,we.__)("A link to a page."),attributes:{type:"page",kind:"post-type"}},{name:"category",icon:$t,title:(0,we.__)("Category Link"),description:(0,we.__)("A link to a category."),attributes:{type:"category",kind:"taxonomy"}},{name:"tag",icon:fc,title:(0,we.__)("Tag Link"),description:(0,we.__)("A link to a tag."),attributes:{type:"tag",kind:"taxonomy"}}];kc.forEach((e=>{e.isActive||(e.isActive=(e,t)=>e.type===t.type)}));var wc=kc;function Ec(e){switch(e){case"post":return bc;case"page":return yc;case"tag":return fc;case"category":return $t;default:return _c}}const Cc={from:[{type:"block",blocks:["core/site-logo"],transform:()=>(0,be.createBlock)("core/navigation-link")},{type:"block",blocks:["core/spacer"],transform:()=>(0,be.createBlock)("core/navigation-link")},{type:"block",blocks:["core/home-link"],transform:()=>(0,be.createBlock)("core/navigation-link")},{type:"block",blocks:["core/social-links"],transform:()=>(0,be.createBlock)("core/navigation-link")},{type:"block",blocks:["core/search"],transform:()=>(0,be.createBlock)("core/navigation-link")}],to:[{type:"block",blocks:["core/navigation-submenu"],transform:(e,t)=>(0,be.createBlock)("core/navigation-submenu",e,t)},{type:"block",blocks:["core/spacer"],transform:()=>(0,be.createBlock)("core/spacer")},{type:"block",blocks:["core/site-logo"],transform:()=>(0,be.createBlock)("core/site-logo")},{type:"block",blocks:["core/home-link"],transform:()=>(0,be.createBlock)("core/home-link")},{type:"block",blocks:["core/social-links"],transform:()=>(0,be.createBlock)("core/social-links")},{type:"block",blocks:["core/search"],transform:()=>(0,be.createBlock)("core/search",{showLabel:!1,buttonUseIcon:!0,buttonPosition:"button-inside"})}]};var xc=Cc;const Sc={apiVersion:2,name:"core/navigation-link",title:"Custom Link",category:"design",parent:["core/navigation"],description:"Add a page, link, or another item to your navigation.",textdomain:"default",attributes:{label:{type:"string"},type:{type:"string"},description:{type:"string"},rel:{type:"string"},id:{type:"number"},opensInNewTab:{type:"boolean",default:!1},url:{type:"string"},title:{type:"string"},kind:{type:"string"},isTopLevelLink:{type:"boolean"}},usesContext:["textColor","customTextColor","backgroundColor","customBackgroundColor","overlayTextColor","customOverlayTextColor","overlayBackgroundColor","customOverlayBackgroundColor","fontSize","customFontSize","showSubmenuIcon","style"],supports:{reusable:!1,html:!1,__experimentalSlashInserter:!0},editorStyle:"wp-block-navigation-link-editor",style:"wp-block-navigation-link"},{name:Bc}=Sc,Tc={icon:mc,__experimentalLabel:e=>{let{label:t}=e;return t},merge(e,t){let{label:n=""}=t;return{...e,label:e.label+n}},edit:function(e){let{attributes:t,isSelected:n,setAttributes:o,insertBlocksAfter:r,mergeBlocks:a,onReplace:l,context:i,clientId:s}=e;const{label:c,type:u,opensInNewTab:m,url:d,description:p,rel:g,title:h,kind:v}=t,b={url:d,opensInNewTab:m,title:c&&hc(c)},{saveEntityRecord:y}=(0,Ie.useDispatch)(Dt.store),{replaceBlock:f,__unstableMarkNextChangeAsNotPersistent:_}=(0,Ie.useDispatch)(Ee.store),[k,w]=(0,ye.useState)(!1),E=(0,ye.useRef)(null),C=(e=>{const[t,n]=(0,ye.useState)(!1);return(0,ye.useEffect)((()=>{const{ownerDocument:t}=e.current;function o(e){a(e)}function r(){n(!1)}function a(t){e.current.contains(t.target)?n(!0):n(!1)}return t.addEventListener("dragstart",o),t.addEventListener("dragend",r),t.addEventListener("dragenter",a),()=>{t.removeEventListener("dragstart",o),t.removeEventListener("dragend",r),t.removeEventListener("dragenter",a)}}),[]),t})(E),x=(0,we.__)("Add link"),S=(0,ye.useRef)(),{innerBlocks:B,isAtMaxNesting:T,isTopLevelLink:N,isParentOfSelectedBlock:z,hasDescendants:P,userCanCreatePages:I,userCanCreatePosts:M,thisBlock:R,blockTransforms:L}=(0,Ie.useSelect)((e=>{var t;const{getBlock:n,getBlocks:o,getBlockName:r,getBlockRootClientId:a,getClientIdsOfDescendants:l,hasSelectedInnerBlock:i,getSelectedBlockClientId:c,getBlockParentsByBlockName:u,getBlockTransformItems:m}=e(Ee.store),d=c(),p=l([s]).length;return{innerBlocks:o(s),isAtMaxNesting:u(s,[pc,"core/navigation-submenu"]).length>=5,isTopLevelLink:"core/navigation"===r(a(s)),isParentOfSelectedBlock:i(s,!0),isImmediateParentOfSelectedBlock:i(s,!1),hasDescendants:!!p,selectedBlockHasDescendants:!(null===(t=l([d]))||void 0===t||!t.length),userCanCreatePages:e(Dt.store).canUser("create","pages"),userCanCreatePosts:e(Dt.store).canUser("create","posts"),thisBlock:n(s),blockTransforms:m([n(s)],a(s))}}),[s]);function V(){const e=(0,be.createBlock)("core/navigation-submenu",t,B);f(s,e)}(0,ye.useEffect)((()=>{_(),o({isTopLevelLink:N})}),[N]);const H=["core/site-logo","core/social-links","core/search"],A=L.filter((e=>H.includes(e.name)));(0,ye.useEffect)((()=>{d||w(!0),P&&V()}),[]),(0,ye.useEffect)((()=>{n||w(!1)}),[n]),(0,ye.useEffect)((()=>{k&&d&&((0,Dr.isURL)((0,Dr.prependHTTP)(c))&&/^.+\.[a-z]+/.test(c)?function(){S.current.focus();const{ownerDocument:e}=S.current,{defaultView:t}=e,n=t.getSelection(),o=e.createRange();o.selectNodeContents(S.current),n.removeAllRanges(),n.addRange(o)}():(0,ls.placeCaretAtHorizontalEdge)(S.current,!0))}),[d]);let F=!1;u&&"page"!==u?"post"===u&&(F=M):F=I;const{textColor:D,customTextColor:G,backgroundColor:U,customBackgroundColor:O}=function(e,t){var n,o;const{textColor:r,customTextColor:a,backgroundColor:l,customBackgroundColor:i,overlayTextColor:s,customOverlayTextColor:c,overlayBackgroundColor:u,customOverlayBackgroundColor:m,style:d}=e,p={};return t&&c?p.customTextColor=c:t&&s?p.textColor=s:a?p.customTextColor=a:r?p.textColor=r:null!=d&&null!==(n=d.color)&&void 0!==n&&n.text&&(p.customTextColor=d.color.text),t&&m?p.customBackgroundColor=m:t&&u?p.backgroundColor=u:i?p.customBackgroundColor=i:l?p.backgroundColor=l:null!=d&&null!==(o=d.color)&&void 0!==o&&o.background&&(p.customTextColor=d.color.background),p}(i,!N),q=(0,Ee.useBlockProps)({ref:E,className:nt()("wp-block-navigation-item",{"is-editing":n||z,"is-dragging-within":C,"has-link":!!d,"has-child":P,"has-text-color":!!D||!!G,[(0,Ee.getColorClassName)("color",D)]:!!D,"has-background":!!U||O,[(0,Ee.getColorClassName)("background-color",U)]:!!U}),style:{color:!D&&G,backgroundColor:!U&&O},onKeyDown:function(e){(ht.isKeyboardEvent.primary(e,"k")||!d&&e.keyCode===ht.ENTER)&&w(!0)}});d||(q.onClick=()=>w(!0));const $=nt()("wp-block-navigation-item__content",{"wp-block-navigation-link__placeholder":!d});let W="";switch(u){case"post":W=(0,we.__)("Select post");break;case"page":W=(0,we.__)("Select page");break;case"category":W=(0,we.__)("Select category");break;case"tag":W=(0,we.__)("Select tag");break;default:W=(0,we.__)("Add link")}return(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)(Ee.BlockControls,null,(0,ye.createElement)(ke.ToolbarGroup,null,(0,ye.createElement)(ke.ToolbarButton,{name:"link",icon:vt,title:(0,we.__)("Link"),shortcut:ht.displayShortcut.primary("k"),onClick:()=>w(!0)}),!T&&(0,ye.createElement)(ke.ToolbarButton,{name:"submenu",icon:dc,title:(0,we.__)("Add submenu"),onClick:V}))),(0,ye.createElement)(Ee.InspectorControls,null,(0,ye.createElement)(ke.PanelBody,{title:(0,we.__)("Link settings")},(0,ye.createElement)(ke.TextareaControl,{value:p||"",onChange:e=>{o({description:e})},label:(0,we.__)("Description"),help:(0,we.__)("The description will be displayed in the menu if the current theme supports it.")}),(0,ye.createElement)(ke.TextControl,{value:h||"",onChange:e=>{o({title:e})},label:(0,we.__)("Link title"),autoComplete:"off"}),(0,ye.createElement)(ke.TextControl,{value:g||"",onChange:e=>{o({rel:e})},label:(0,we.__)("Link rel"),autoComplete:"off"}))),(0,ye.createElement)("div",q,(0,ye.createElement)("a",{className:$},d?(0,ye.createElement)(Ee.RichText,{ref:S,identifier:"label",className:"wp-block-navigation-item__label",value:c,onChange:e=>o({label:e}),onMerge:a,onReplace:l,__unstableOnSplitAtEnd:()=>r((0,be.createBlock)("core/navigation-link")),"aria-label":(0,we.__)("Navigation link text"),placeholder:x,withoutInteractiveFormatting:!0,allowedFormats:["core/bold","core/italic","core/image","core/strikethrough"],onClick:()=>{d||w(!0)}}):(0,ye.createElement)("div",{className:"wp-block-navigation-link__placeholder-text"},(0,ye.createElement)(ke.Tooltip,{position:"top center",text:(0,we.__)("This item is missing a link")},(0,ye.createElement)("span",null,W))),k&&(0,ye.createElement)(ke.Popover,{position:"bottom center",onClose:()=>w(!1),anchorRef:E.current},(0,ye.createElement)(Ee.__experimentalLinkControl,{hasTextControl:!0,className:"wp-block-navigation-link__inline-link-input",value:b,showInitialSuggestions:!0,withCreateSuggestion:F,createSuggestion:async function(e){const t=u||"page",n=await y("postType",t,{title:e,status:"draft"});return{id:n.id,type:t,title:n.title.rendered,url:n.link,kind:"post-type"}},createSuggestionButtonText:e=>{let t;return t="post"===u?(0,we.__)("Create draft post: <mark>%s</mark>"):(0,we.__)("Create draft page: <mark>%s</mark>"),(0,ye.createInterpolateElement)((0,we.sprintf)(t,e),{mark:(0,ye.createElement)("mark",null)})},noDirectEntry:!!u,noURLSuggestion:!!u,suggestionsQuery:gc(u,v),onChange:e=>function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};const{label:o="",kind:r="",type:a=""}=n,{title:l="",url:i="",opensInNewTab:s,id:c,kind:u=r,type:m=a}=e,d=l.replace(/http(s?):\/\//gi,""),p=i.replace(/http(s?):\/\//gi,""),g=""!==l&&d!==p&&o!==l?(0,Le.escape)(l):o||(0,Le.escape)(p),h="post_tag"===m?"tag":m.replace("-","_"),v=["post","page","tag","category"].indexOf(h)>-1,b=!u&&!v||"custom"===u?"custom":u;t({...i&&{url:encodeURI((0,Dr.safeDecodeURI)(i))},...g&&{label:g},...void 0!==s&&{opensInNewTab:s},...c&&Number.isInteger(c)&&{id:c},...b&&{kind:b},...h&&"URL"!==h&&{type:h}})}(e,o,t),onRemove:function(){o({url:"",label:"",id:"",kind:"",type:""}),w(!1)},renderControlBottom:d?null:()=>(0,ye.createElement)(vc,{block:R,transforms:A,replace:f})})))))},save:function(){return(0,ye.createElement)(Ee.InnerBlocks.Content,null)},example:{attributes:{label:(0,we._x)("Example Link","navigation link preview example"),url:"https://example.com"}},deprecated:[{isEligible:e=>e.nofollow,attributes:{label:{type:"string"},type:{type:"string"},nofollow:{type:"boolean"},description:{type:"string"},id:{type:"number"},opensInNewTab:{type:"boolean",default:!1},url:{type:"string"}},migrate(e){let{nofollow:t,...n}=e;return{rel:t?"nofollow":"",...n}},save:()=>(0,ye.createElement)(Ee.InnerBlocks.Content,null)}],transforms:xc};(0,ja.addFilter)("blocks.registerBlockType","core/navigation-link",(function(e,t){if("core/navigation-link"!==t)return e;if(!e.variations)return{...e,variations:wc};if(e.variations){const t=(e,t)=>e.type===t.type,n=e.variations.map((e=>({...e,...!e.icon&&{icon:Ec(e.name)},...!e.isActive&&{isActive:t}})));return{...e,variations:n}}return e}));var Nc=window.wp.a11y;const zc=()=>(0,ye.createElement)(ke.SVG,{xmlns:"http://www.w3.org/2000/svg",width:"12",height:"12",viewBox:"0 0 12 12",fill:"none"},(0,ye.createElement)(ke.Path,{d:"M1.50002 4L6.00002 8L10.5 4",strokeWidth:"1.5"})),{name:Pc}={apiVersion:2,name:"core/navigation-submenu",title:"Submenu",category:"design",parent:["core/navigation"],description:"Add a submenu to your navigation.",textdomain:"default",attributes:{label:{type:"string"},type:{type:"string"},description:{type:"string"},rel:{type:"string"},id:{type:"number"},opensInNewTab:{type:"boolean",default:!1},url:{type:"string"},title:{type:"string"},kind:{type:"string"},isTopLevelItem:{type:"boolean"}},usesContext:["textColor","customTextColor","backgroundColor","customBackgroundColor","overlayTextColor","customOverlayTextColor","overlayBackgroundColor","customOverlayBackgroundColor","fontSize","customFontSize","showSubmenuIcon","openSubmenusOnClick","style"],supports:{reusable:!1,html:!1},editorStyle:"wp-block-navigation-submenu-editor",style:"wp-block-navigation-submenu"},Ic=["core/navigation-link","core/navigation-submenu"],Mc=["core/navigation-link"];function Rc(e,t){switch(e){case"post":case"page":return{type:"post",subtype:e};case"category":return{type:"term",subtype:"category"};case"tag":return{type:"term",subtype:"post_tag"};case"post_format":return{type:"post-format"};default:return"taxonomy"===t?{type:"term",subtype:e}:"post-type"===t?{type:"post",subtype:e}:{}}}function Lc(e,t){var n,o;const{textColor:r,customTextColor:a,backgroundColor:l,customBackgroundColor:i,overlayTextColor:s,customOverlayTextColor:c,overlayBackgroundColor:u,customOverlayBackgroundColor:m,style:d}=e,p={};return t&&c?p.customTextColor=c:t&&s?p.textColor=s:a?p.customTextColor=a:r?p.textColor=r:null!=d&&null!==(n=d.color)&&void 0!==n&&n.text&&(p.customTextColor=d.color.text),t&&m?p.customBackgroundColor=m:t&&u?p.backgroundColor=u:i?p.customBackgroundColor=i:l?p.backgroundColor=l:null!=d&&null!==(o=d.color)&&void 0!==o&&o.background&&(p.customTextColor=d.color.background),p}const Vc={to:[{type:"block",blocks:["core/navigation-link"],isMatch:(e,t)=>{var n;return 0===(null==t||null===(n=t.innerBlocks)||void 0===n?void 0:n.length)},transform:e=>(0,be.createBlock)("core/navigation-link",e)},{type:"block",blocks:["core/spacer"],isMatch:(e,t)=>{var n;return 0===(null==t||null===(n=t.innerBlocks)||void 0===n?void 0:n.length)},transform:()=>(0,be.createBlock)("core/spacer")},{type:"block",blocks:["core/site-logo"],isMatch:(e,t)=>{var n;return 0===(null==t||null===(n=t.innerBlocks)||void 0===n?void 0:n.length)},transform:()=>(0,be.createBlock)("core/site-logo")},{type:"block",blocks:["core/home-link"],isMatch:(e,t)=>{var n;return 0===(null==t||null===(n=t.innerBlocks)||void 0===n?void 0:n.length)},transform:()=>(0,be.createBlock)("core/home-link")},{type:"block",blocks:["core/social-links"],isMatch:(e,t)=>{var n;return 0===(null==t||null===(n=t.innerBlocks)||void 0===n?void 0:n.length)},transform:()=>(0,be.createBlock)("core/social-links")},{type:"block",blocks:["core/search"],isMatch:(e,t)=>{var n;return 0===(null==t||null===(n=t.innerBlocks)||void 0===n?void 0:n.length)},transform:()=>(0,be.createBlock)("core/search")}]};var Hc=Vc;const Ac={apiVersion:2,name:"core/navigation-submenu",title:"Submenu",category:"design",parent:["core/navigation"],description:"Add a submenu to your navigation.",textdomain:"default",attributes:{label:{type:"string"},type:{type:"string"},description:{type:"string"},rel:{type:"string"},id:{type:"number"},opensInNewTab:{type:"boolean",default:!1},url:{type:"string"},title:{type:"string"},kind:{type:"string"},isTopLevelItem:{type:"boolean"}},usesContext:["textColor","customTextColor","backgroundColor","customBackgroundColor","overlayTextColor","customOverlayTextColor","overlayBackgroundColor","customOverlayBackgroundColor","fontSize","customFontSize","showSubmenuIcon","openSubmenusOnClick","style"],supports:{reusable:!1,html:!1},editorStyle:"wp-block-navigation-submenu-editor",style:"wp-block-navigation-submenu"},{name:Fc}=Ac,Dc={icon:dc,__experimentalLabel:e=>{let{label:t}=e;return t},edit:function(e){let{attributes:t,isSelected:n,setAttributes:o,mergeBlocks:r,onReplace:a,context:l,clientId:i}=e;const{label:s,type:c,opensInNewTab:u,url:m,description:d,rel:p,title:g,kind:h}=t,v={url:m,opensInNewTab:u},{showSubmenuIcon:b,openSubmenusOnClick:y}=l,{saveEntityRecord:f}=(0,Ie.useDispatch)(Dt.store),{__unstableMarkNextChangeAsNotPersistent:_}=(0,Ie.useDispatch)(Ee.store),[k,w]=(0,ye.useState)(!1),E=(0,ye.useRef)(null),C=(e=>{const[t,n]=(0,ye.useState)(!1);return(0,ye.useEffect)((()=>{const{ownerDocument:t}=e.current;function o(e){a(e)}function r(){n(!1)}function a(t){e.current.contains(t.target)?n(!0):n(!1)}return t.addEventListener("dragstart",o),t.addEventListener("dragend",r),t.addEventListener("dragenter",a),()=>{t.removeEventListener("dragstart",o),t.removeEventListener("dragend",r),t.removeEventListener("dragenter",a)}}),[]),t})(E),x=(0,we.__)("Add text"),S=(0,ye.useRef)(),{isAtMaxNesting:B,isTopLevelItem:T,isParentOfSelectedBlock:N,isImmediateParentOfSelectedBlock:z,hasDescendants:P,selectedBlockHasDescendants:I,userCanCreatePages:M,userCanCreatePosts:R}=(0,Ie.useSelect)((e=>{var t;const{getClientIdsOfDescendants:n,hasSelectedInnerBlock:o,getSelectedBlockClientId:r,getBlockParentsByBlockName:a}=e(Ee.store),l=r(),s=n([i]).length;return{isAtMaxNesting:a(i,Pc).length>=5,isTopLevelItem:0===a(i,Pc).length,isParentOfSelectedBlock:o(i,!0),isImmediateParentOfSelectedBlock:o(i,!1),hasDescendants:!!s,selectedBlockHasDescendants:!(null===(t=n([l]))||void 0===t||!t.length),userCanCreatePages:e(Dt.store).canUser("create","pages"),userCanCreatePosts:e(Dt.store).canUser("create","posts")}}),[i]);(0,ye.useEffect)((()=>{y||m||w(!0)}),[]),(0,ye.useEffect)((()=>{_(),o({isTopLevelItem:T})}),[T]),(0,ye.useEffect)((()=>{n||w(!1)}),[n]),(0,ye.useEffect)((()=>{k&&m&&((0,Dr.isURL)((0,Dr.prependHTTP)(s))&&/^.+\.[a-z]+/.test(s)?function(){S.current.focus();const{ownerDocument:e}=S.current,{defaultView:t}=e,n=t.getSelection(),o=e.createRange();o.selectNodeContents(S.current),n.removeAllRanges(),n.addRange(o)}():(0,ls.placeCaretAtHorizontalEdge)(S.current,!0))}),[m]);let L=!1;c&&"page"!==c?"post"===c&&(L=R):L=M;const{textColor:V,customTextColor:H,backgroundColor:A,customBackgroundColor:F}=Lc(l,!T),D=(0,Ee.useBlockProps)({ref:E,className:nt()("wp-block-navigation-item",{"is-editing":n||N,"is-dragging-within":C,"has-link":!!m,"has-child":P,"has-text-color":!!V||!!H,[(0,Ee.getColorClassName)("color",V)]:!!V,"has-background":!!A||F,[(0,Ee.getColorClassName)("background-color",A)]:!!A,"open-on-click":y}),style:{color:!V&&H,backgroundColor:!A&&F},onKeyDown:function(e){ht.isKeyboardEvent.primary(e,"k")&&w(!0)}}),G=Lc(l,!0);B&&(0,Le.pull)(Ic,"core/navigation-submenu");const U=(0,Ee.useInnerBlocksProps)({className:nt()("wp-block-navigation__submenu-container",{"is-parent-of-selected-block":N,"has-text-color":!(!G.textColor&&!G.customTextColor),[`has-${G.textColor}-color`]:!!G.textColor,"has-background":!(!G.backgroundColor&&!G.customBackgroundColor),[`has-${G.backgroundColor}-background-color`]:!!G.backgroundColor}),style:{color:G.customTextColor,backgroundColor:G.customBackgroundColor}},{allowedBlocks:Ic,__experimentalDefaultBlock:Mc,__experimentalDirectInsert:!0,__experimentalCaptureToolbars:!0,renderAppender:!!(n||z&&!I||P)&&Ee.InnerBlocks.ButtonBlockAppender}),O=y?"button":"a";return(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)(Ee.BlockControls,null,(0,ye.createElement)(ke.ToolbarGroup,null,!y&&(0,ye.createElement)(ke.ToolbarButton,{name:"link",icon:vt,title:(0,we.__)("Link"),shortcut:ht.displayShortcut.primary("k"),onClick:()=>w(!0)}))),(0,ye.createElement)(Ee.InspectorControls,null,(0,ye.createElement)(ke.PanelBody,{title:(0,we.__)("Link settings")},(0,ye.createElement)(ke.TextareaControl,{value:d||"",onChange:e=>{o({description:e})},label:(0,we.__)("Description"),help:(0,we.__)("The description will be displayed in the menu if the current theme supports it.")}),(0,ye.createElement)(ke.TextControl,{value:g||"",onChange:e=>{o({title:e})},label:(0,we.__)("Link title"),autoComplete:"off"}),(0,ye.createElement)(ke.TextControl,{value:p||"",onChange:e=>{o({rel:e})},label:(0,we.__)("Link rel"),autoComplete:"off"}))),(0,ye.createElement)("div",D,(0,ye.createElement)(O,{className:"wp-block-navigation-item__content"},(0,ye.createElement)(Ee.RichText,{ref:S,identifier:"label",className:"wp-block-navigation-item__label",value:s,onChange:e=>o({label:e}),onMerge:r,onReplace:a,"aria-label":(0,we.__)("Navigation link text"),placeholder:x,withoutInteractiveFormatting:!0,allowedFormats:["core/bold","core/italic","core/image","core/strikethrough"],onClick:()=>{y||m||w(!0)}}),!y&&k&&(0,ye.createElement)(ke.Popover,{position:"bottom center",onClose:()=>w(!1),anchorRef:E.current},(0,ye.createElement)(Ee.__experimentalLinkControl,{className:"wp-block-navigation-link__inline-link-input",value:v,showInitialSuggestions:!0,withCreateSuggestion:L,createSuggestion:async function(e){const t=c||"page",n=await f("postType",t,{title:e,status:"draft"});return{id:n.id,type:t,title:n.title.rendered,url:n.link,kind:"post-type"}},createSuggestionButtonText:e=>{let t;return t="post"===c?(0,we.__)("Create draft post: <mark>%s</mark>"):(0,we.__)("Create draft page: <mark>%s</mark>"),(0,ye.createInterpolateElement)((0,we.sprintf)(t,e),{mark:(0,ye.createElement)("mark",null)})},noDirectEntry:!!c,noURLSuggestion:!!c,suggestionsQuery:Rc(c,h),onChange:e=>function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};const{label:o="",kind:r="",type:a=""}=n,{title:l="",url:i="",opensInNewTab:s,id:c,kind:u=r,type:m=a}=e,d=l.replace(/http(s?):\/\//gi,""),p=i.replace(/http(s?):\/\//gi,""),g=""!==l&&d!==p&&o!==l?(0,Le.escape)(l):o||(0,Le.escape)(p),h="post_tag"===m?"tag":m.replace("-","_"),v=["post","page","tag","category"].indexOf(h)>-1,b=!u&&!v||"custom"===u?"custom":u;t({...i&&{url:encodeURI((0,Dr.safeDecodeURI)(i))},...g&&{label:g},...void 0!==s&&{opensInNewTab:s},...c&&Number.isInteger(c)&&{id:c},...b&&{kind:b},...h&&"URL"!==h&&{type:h}})}(e,o,t),onRemove:()=>{o({url:""}),(0,Nc.speak)((0,we.__)("Link removed."),"assertive")}})),(b||y)&&(0,ye.createElement)("span",{className:"wp-block-navigation__submenu-icon"},(0,ye.createElement)(zc,null))),(0,ye.createElement)("div",U)))},save:function(){return(0,ye.createElement)(Ee.InnerBlocks.Content,null)},transforms:Hc};var Gc=(0,ye.createElement)(fe.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,ye.createElement)(fe.Path,{d:"M7.8 6c0-.7.6-1.2 1.2-1.2h6c.7 0 1.2.6 1.2 1.2v3h1.5V6c0-1.5-1.2-2.8-2.8-2.8H9C7.5 3.2 6.2 4.5 6.2 6v3h1.5V6zm8.4 11c0 .7-.6 1.2-1.2 1.2H9c-.7 0-1.2-.6-1.2-1.2v-3H6.2v3c0 1.5 1.2 2.8 2.8 2.8h6c1.5 0 2.8-1.2 2.8-2.8v-3h-1.5v3zM4 11v1h16v-1H4z"}));var Uc={from:[{type:"raw",schema:{"wp-block":{attributes:["data-block"]}},isMatch:e=>e.dataset&&"core/nextpage"===e.dataset.block,transform:()=>(0,be.createBlock)("core/nextpage",{})}]};const Oc={apiVersion:2,name:"core/nextpage",title:"Page Break",category:"design",description:"Separate your content into a multi-page experience.",keywords:["next page","pagination"],parent:["core/post-content"],textdomain:"default",supports:{customClassName:!1,className:!1,html:!1},editorStyle:"wp-block-nextpage-editor"},{name:qc}=Oc,$c={icon:Gc,example:{},transforms:Uc,edit:function(){return(0,ye.createElement)("div",(0,Ee.useBlockProps)(),(0,ye.createElement)("div",{className:"wp-block-nextpage"},(0,ye.createElement)("span",null,(0,we.__)("Page break"))))},save:function(){return(0,ye.createElement)(ye.RawHTML,null,"\x3c!--nextpage--\x3e")}};var Wc=e=>{let{attributes:t,clientId:n}=e;const o=(0,Ie.useSelect)((e=>e(Ee.store).__experimentalGetParsedPattern(t.slug)),[t.slug]),{replaceBlocks:r,__unstableMarkNextChangeAsNotPersistent:a}=(0,Ie.useDispatch)(Ee.store);(0,ye.useEffect)((()=>{null!=o&&o.blocks&&(a(),r(n,o.blocks))}),[null==o?void 0:o.blocks]);const l=(0,Ee.useBlockProps)();return(0,ye.createElement)("div",l)};const jc={apiVersion:2,name:"core/pattern",title:"Pattern",category:"theme",description:"Show a block pattern.",supports:{html:!1,inserter:!1},textdomain:"default",attributes:{slug:{type:"string"}}},{name:Zc}=jc,Kc={edit:Wc};var Qc=(0,ye.createElement)(fe.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,ye.createElement)(fe.Path,{d:"M7 13.8h6v-1.5H7v1.5zM18 16V4c0-1.1-.9-2-2-2H6c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2zM5.5 16V4c0-.3.2-.5.5-.5h10c.3 0 .5.2.5.5v12c0 .3-.2.5-.5.5H6c-.3 0-.5-.2-.5-.5zM7 10.5h8V9H7v1.5zm0-3.3h8V5.8H7v1.4zM20.2 6v13c0 .7-.6 1.2-1.2 1.2H8v1.5h11c1.5 0 2.7-1.2 2.7-2.8V6h-1.5z"}));const Jc=["id","title","link","type","parent"],Yc=e=>{let{pages:t,clientId:n,replaceBlock:o,createBlock:r}=e;return()=>{if(!t)return;const e={},a=[];t.forEach((t=>{var n,o;let{id:l,title:i,link:s,type:c,parent:u}=t;const m=null!==(n=null===(o=e[l])||void 0===o?void 0:o.innerBlocks)&&void 0!==n?n:[];if(e[l]=r("core/navigation-link",{id:l,label:i.rendered,url:s,type:c,kind:"post-type"},m),u){e[u]||(e[u]={innerBlocks:[]});e[u].innerBlocks.push(e[l])}else a.push(e[l])}));const l=e=>{e.forEach(((e,t,n)=>{const{attributes:o,innerBlocks:a}=e;if(0!==a.length){l(a);const e=r("core/navigation-submenu",o,a);n[t]=e}}))};l(a),o(n,a)}};function Xc(e){let{onClose:t,clientId:n}=e;const{pages:o,pagesFinished:r}=(0,Ie.useSelect)((e=>{const{getEntityRecords:t,hasFinishedResolution:n}=e(Dt.store),o=["postType","page",{per_page:100,_fields:Jc,orderby:"menu_order",order:"asc"}];return{pages:t(...o),pagesFinished:n("getEntityRecords",o)}}),[n]),{replaceBlock:a}=(0,Ie.useDispatch)(Ee.store);return(0,ye.createElement)(ke.Modal,{closeLabel:(0,we.__)("Close"),onRequestClose:t,title:(0,we.__)("Convert to links"),className:"wp-block-page-list-modal",aria:{describedby:"wp-block-page-list-modal__description"}},(0,ye.createElement)("p",{id:"wp-block-page-list-modal__description"},(0,we.__)("To edit this navigation menu, convert it to single page links. This allows you to add, re-order, remove items, or edit their labels.")),(0,ye.createElement)("p",null,(0,we.__)("Note: if you add new pages to your site, you'll need to add them to your navigation menu.")),(0,ye.createElement)("div",{className:"wp-block-page-list-modal-buttons"},(0,ye.createElement)(ke.Button,{variant:"tertiary",onClick:t},(0,we.__)("Cancel")),(0,ye.createElement)(ke.Button,{variant:"primary",disabled:!r,onClick:Yc({pages:o,replaceBlock:a,clientId:n,createBlock:be.createBlock})},(0,we.__)("Convert"))))}const eu=()=>(0,ye.createElement)(ke.SVG,{xmlns:"http://www.w3.org/2000/svg",width:"12",height:"12",viewBox:"0 0 12 12",fill:"none"},(0,ye.createElement)(ke.Path,{d:"M1.50002 4L6.00002 8L10.5 4",strokeWidth:"1.5"}));const tu=(0,ye.memo)((function e(t){let{context:n,pagesByParentId:o,parentId:r=0,depth:a=0}=t;const l=o.get(r),i=(0,Ie.useSelect)((e=>{const t=e(Dt.store).getEntityRecord("root","site");return"page"===(null==t?void 0:t.show_on_front)&&(null==t?void 0:t.page_on_front)}),[]);return null!=l&&l.length?l.map((t=>{var r,l;const s=o.has(t.id),c="showSubmenuIcon"in n;return(0,ye.createElement)("li",{key:t.id,className:nt()("wp-block-pages-list__item",{"has-child":s,"wp-block-navigation-item":c,"open-on-click":n.openSubmenusOnClick,"open-on-hover-click":!n.openSubmenusOnClick&&n.showSubmenuIcon,"menu-item-home":t.id===i})},s&&n.openSubmenusOnClick?(0,ye.createElement)(nu,{title:null===(r=t.title)||void 0===r?void 0:r.rendered}):(0,ye.createElement)("a",{className:nt()("wp-block-pages-list__item__link",{"wp-block-navigation-item__content":c}),href:t.link},null===(l=t.title)||void 0===l?void 0:l.rendered),s&&(0,ye.createElement)(ye.Fragment,null,!n.openSubmenusOnClick&&n.showSubmenuIcon&&(0,ye.createElement)(nu,null),(0,ye.createElement)("ul",{className:nt()("submenu-container",{"wp-block-navigation__submenu-container":c})},(0,ye.createElement)(e,{context:n,pagesByParentId:o,parentId:t.id,depth:a+1}))))})):[]}));function nu(e){let{title:t}=e;return(0,ye.createElement)("button",{className:"wp-block-navigation-item__content wp-block-navigation-submenu__toggle","aria-expanded":"false"},t,(0,ye.createElement)("span",{className:"wp-block-page-list__submenu-icon wp-block-navigation__submenu-icon"},(0,ye.createElement)(eu,null)))}const ou={apiVersion:2,name:"core/page-list",title:"Page List",category:"widgets",description:"Display a list of all pages.",keywords:["menu","navigation"],textdomain:"default",attributes:{},usesContext:["textColor","customTextColor","backgroundColor","customBackgroundColor","overlayTextColor","customOverlayTextColor","overlayBackgroundColor","customOverlayBackgroundColor","fontSize","customFontSize","showSubmenuIcon","style","openSubmenusOnClick"],supports:{reusable:!1,html:!1},editorStyle:"wp-block-page-list-editor",style:"wp-block-page-list"},{name:ru}=ou,au={icon:Qc,example:{},edit:function(e){var t;let{context:n,clientId:o}=e;const{pagesByParentId:r,totalPages:a,hasResolvedPages:l}=function(){const{pages:e,hasResolvedPages:t}=(0,Ie.useSelect)((e=>{const{getEntityRecords:t,hasFinishedResolution:n}=e(Dt.store);return{pages:t("postType","page",{orderby:"menu_order",order:"asc",_fields:["id","link","parent","title","menu_order"],per_page:-1}),hasResolvedPages:n("getEntityRecords",["postType","page",{orderby:"menu_order",order:"asc",_fields:["id","link","parent","title","menu_order"],per_page:-1}])}}),[]);return(0,ye.useMemo)((()=>{var n;const o=(0,Le.sortBy)(e,["menu_order","title.rendered"]).reduce(((e,t)=>{const{parent:n}=t;return e.has(n)?e.get(n).push(t):e.set(n,[t]),e}),new Map);return{pagesByParentId:o,hasResolvedPages:t,totalPages:null!==(n=null==e?void 0:e.length)&&void 0!==n?n:null}}),[e,t])}(),i="showSubmenuIcon"in n&&a<=100,[s,c]=(0,ye.useState)(!1),u=(0,Ee.useBlockProps)({className:nt()("wp-block-page-list",{"has-text-color":!!n.textColor,[(0,Ee.getColorClassName)("color",n.textColor)]:!!n.textColor,"has-background":!!n.backgroundColor,[(0,Ee.getColorClassName)("background-color",n.backgroundColor)]:!!n.backgroundColor}),style:{...null===(t=n.style)||void 0===t?void 0:t.color}});return(0,ye.createElement)(ye.Fragment,null,i&&(0,ye.createElement)(Ee.BlockControls,{group:"other"},(0,ye.createElement)(ke.ToolbarButton,{title:(0,we.__)("Edit"),onClick:()=>c(!0)},(0,we.__)("Edit"))),i&&s&&(0,ye.createElement)(Xc,{onClose:()=>c(!1),clientId:o}),!l&&(0,ye.createElement)("div",u,(0,ye.createElement)(ke.Placeholder,null,(0,ye.createElement)(ke.Spinner,null))),l&&null===a&&(0,ye.createElement)("div",u,(0,ye.createElement)("div",u,(0,ye.createElement)(ke.Notice,{status:"warning",isDismissible:!1},(0,we.__)("Page List: Cannot retrieve Pages.")))),0===a&&(0,ye.createElement)("div",u,(0,ye.createElement)(ke.Notice,{status:"info",isDismissible:!1},(0,we.__)("Page List: Cannot retrieve Pages."))),a>0&&(0,ye.createElement)("ul",u,(0,ye.createElement)(tu,{context:n,pagesByParentId:r})))}};var lu=(0,ye.createElement)(fe.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,ye.createElement)(fe.Path,{d:"M18.3 4H9.9v-.1l-.9.2c-2.3.4-4 2.4-4 4.8s1.7 4.4 4 4.8l.7.1V20h1.5V5.5h2.9V20h1.5V5.5h2.7V4z"}));const iu={className:!1},su={align:{type:"string"},content:{type:"string",source:"html",selector:"p",default:""},dropCap:{type:"boolean",default:!1},placeholder:{type:"string"},textColor:{type:"string"},backgroundColor:{type:"string"},fontSize:{type:"string"},direction:{type:"string",enum:["ltr","rtl"]},style:{type:"object"}},cu=e=>{if(!e.customTextColor&&!e.customBackgroundColor&&!e.customFontSize)return e;const t={};return(e.customTextColor||e.customBackgroundColor)&&(t.color={}),e.customTextColor&&(t.color.text=e.customTextColor),e.customBackgroundColor&&(t.color.background=e.customBackgroundColor),e.customFontSize&&(t.typography={fontSize:e.customFontSize}),{...(0,Le.omit)(e,["customTextColor","customBackgroundColor","customFontSize"]),style:t}},uu=[{supports:iu,attributes:{...(0,Le.omit)(su,["style"]),customTextColor:{type:"string"},customBackgroundColor:{type:"string"},customFontSize:{type:"number"}},migrate:cu,save(e){let{attributes:t}=e;const{align:n,content:o,dropCap:r,backgroundColor:a,textColor:l,customBackgroundColor:i,customTextColor:s,fontSize:c,customFontSize:u,direction:m}=t,d=(0,Ee.getColorClassName)("color",l),p=(0,Ee.getColorClassName)("background-color",a),g=(0,Ee.getFontSizeClass)(c),h=nt()({"has-text-color":l||s,"has-background":a||i,"has-drop-cap":r,[`has-text-align-${n}`]:n,[g]:g,[d]:d,[p]:p}),v={backgroundColor:p?void 0:i,color:d?void 0:s,fontSize:g?void 0:u};return(0,ye.createElement)(Ee.RichText.Content,{tagName:"p",style:v,className:h||void 0,value:o,dir:m})}},{supports:iu,attributes:{...(0,Le.omit)(su,["style"]),customTextColor:{type:"string"},customBackgroundColor:{type:"string"},customFontSize:{type:"number"}},migrate:cu,save(e){let{attributes:t}=e;const{align:n,content:o,dropCap:r,backgroundColor:a,textColor:l,customBackgroundColor:i,customTextColor:s,fontSize:c,customFontSize:u,direction:m}=t,d=(0,Ee.getColorClassName)("color",l),p=(0,Ee.getColorClassName)("background-color",a),g=(0,Ee.getFontSizeClass)(c),h=nt()({"has-text-color":l||s,"has-background":a||i,"has-drop-cap":r,[g]:g,[d]:d,[p]:p}),v={backgroundColor:p?void 0:i,color:d?void 0:s,fontSize:g?void 0:u,textAlign:n};return(0,ye.createElement)(Ee.RichText.Content,{tagName:"p",style:v,className:h||void 0,value:o,dir:m})}},{supports:iu,attributes:{...(0,Le.omit)(su,["style"]),customTextColor:{type:"string"},customBackgroundColor:{type:"string"},customFontSize:{type:"number"},width:{type:"string"}},migrate:cu,save(e){let{attributes:t}=e;const{width:n,align:o,content:r,dropCap:a,backgroundColor:l,textColor:i,customBackgroundColor:s,customTextColor:c,fontSize:u,customFontSize:m}=t,d=(0,Ee.getColorClassName)("color",i),p=(0,Ee.getColorClassName)("background-color",l),g=u&&`is-${u}-text`,h=nt()({[`align${n}`]:n,"has-background":l||s,"has-drop-cap":a,[g]:g,[d]:d,[p]:p}),v={backgroundColor:p?void 0:s,color:d?void 0:c,fontSize:g?void 0:m,textAlign:o};return(0,ye.createElement)(Ee.RichText.Content,{tagName:"p",style:v,className:h||void 0,value:r})}},{supports:iu,attributes:(0,Le.omit)({...su,fontSize:{type:"number"}},["style"]),save(e){let{attributes:t}=e;const{width:n,align:o,content:r,dropCap:a,backgroundColor:l,textColor:i,fontSize:s}=t,c=nt()({[`align${n}`]:n,"has-background":l,"has-drop-cap":a}),u={backgroundColor:l,color:i,fontSize:s,textAlign:o};return(0,ye.createElement)("p",{style:u,className:c||void 0},r)},migrate:e=>cu((0,Le.omit)({...e,customFontSize:(0,Le.isFinite)(e.fontSize)?e.fontSize:void 0,customTextColor:e.textColor&&"#"===e.textColor[0]?e.textColor:void 0,customBackgroundColor:e.backgroundColor&&"#"===e.backgroundColor[0]?e.backgroundColor:void 0}))},{supports:iu,attributes:{...su,content:{type:"string",source:"html",default:""}},save(e){let{attributes:t}=e;return(0,ye.createElement)(ye.RawHTML,null,t.content)},migrate:e=>e}];var mu=uu;var du=(0,ye.createElement)(fe.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"-2 -2 24 24"},(0,ye.createElement)(fe.Path,{d:"M5.52 2h7.43c.55 0 1 .45 1 1s-.45 1-1 1h-1v13c0 .55-.45 1-1 1s-1-.45-1-1V5c0-.55-.45-1-1-1s-1 .45-1 1v12c0 .55-.45 1-1 1s-1-.45-1-1v-5.96h-.43C3.02 11.04 1 9.02 1 6.52S3.02 2 5.52 2zM14 14l5-4-5-4v8z"}));function pu(e){let{direction:t,setDirection:n}=e;return(0,we.isRTL)()&&(0,ye.createElement)(ke.ToolbarDropdownMenu,{controls:[{icon:du,title:(0,we._x)("Left to right","editor button"),isActive:"ltr"===t,onClick(){n("ltr"===t?void 0:"ltr")}}]})}var gu=function(e){let{attributes:t,mergeBlocks:n,onReplace:o,onRemove:r,setAttributes:a,clientId:l}=e;const{align:i,content:s,direction:c,dropCap:u,placeholder:m}=t,d=(0,Ee.useSetting)("typography.dropCap"),p=(0,Ee.useBlockProps)({className:nt()({"has-drop-cap":u,[`has-text-align-${i}`]:i}),style:{direction:c}});return(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)(Ee.BlockControls,{group:"block"},(0,ye.createElement)(Ee.AlignmentControl,{value:i,onChange:e=>a({align:e})}),(0,ye.createElement)(pu,{direction:c,setDirection:e=>a({direction:e})})),d&&(0,ye.createElement)(Ee.InspectorControls,null,(0,ye.createElement)(ke.PanelBody,{title:(0,we.__)("Text settings")},(0,ye.createElement)(ke.ToggleControl,{label:(0,we.__)("Drop cap"),checked:!!u,onChange:()=>a({dropCap:!u}),help:u?(0,we.__)("Showing large initial letter."):(0,we.__)("Toggle to show a large initial letter.")}))),(0,ye.createElement)(Ee.RichText,gt({identifier:"content",tagName:"p"},p,{value:s,onChange:e=>a({content:e}),onSplit:(e,n)=>{let o;(n||e)&&(o={...t,content:e});const r=(0,be.createBlock)("core/paragraph",o);return n&&(r.clientId=l),r},onMerge:n,onReplace:o,onRemove:r,"aria-label":s?(0,we.__)("Paragraph block"):(0,we.__)("Empty block; start writing or type forward slash to choose a block"),"data-empty":!s,placeholder:m||(0,we.__)("Type / to choose a block"),__unstableEmbedURLOnPaste:!0,__unstableAllowPrefixTransformations:!0})))};const{name:hu}={apiVersion:2,name:"core/paragraph",title:"Paragraph",category:"text",description:"Start with the building block of all narrative.",keywords:["text"],textdomain:"default",attributes:{align:{type:"string"},content:{type:"string",source:"html",selector:"p",default:"",__experimentalRole:"content"},dropCap:{type:"boolean",default:!1},placeholder:{type:"string"},direction:{type:"string",enum:["ltr","rtl"]}},supports:{anchor:!0,className:!1,color:{link:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0,__experimentalLetterSpacing:!0,__experimentalTextTransform:!0,__experimentalDefaultControls:{fontSize:!0}},__experimentalSelector:"p",__unstablePasteTextInline:!0},editorStyle:"wp-block-paragraph-editor",style:"wp-block-paragraph"},vu={from:[{type:"raw",priority:20,selector:"p",schema:e=>{let{phrasingContentSchema:t,isPaste:n}=e;return{p:{children:t,attributes:n?[]:["style","id"]}}},transform(e){const t=(0,be.getBlockAttributes)(hu,e.outerHTML),{textAlign:n}=e.style||{};return"left"!==n&&"center"!==n&&"right"!==n||(t.align=n),(0,be.createBlock)(hu,t)}}]};var bu=vu;const yu={apiVersion:2,name:"core/paragraph",title:"Paragraph",category:"text",description:"Start with the building block of all narrative.",keywords:["text"],textdomain:"default",attributes:{align:{type:"string"},content:{type:"string",source:"html",selector:"p",default:"",__experimentalRole:"content"},dropCap:{type:"boolean",default:!1},placeholder:{type:"string"},direction:{type:"string",enum:["ltr","rtl"]}},supports:{anchor:!0,className:!1,color:{link:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0,__experimentalLetterSpacing:!0,__experimentalTextTransform:!0,__experimentalDefaultControls:{fontSize:!0}},__experimentalSelector:"p",__unstablePasteTextInline:!0},editorStyle:"wp-block-paragraph-editor",style:"wp-block-paragraph"},{name:fu}=yu,_u={icon:lu,example:{attributes:{content:(0,we.__)("In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing."),style:{typography:{fontSize:28}},dropCap:!0}},__experimentalLabel(e,t){let{context:n}=t;if("accessibility"===n){const{content:t}=e;return(0,Le.isEmpty)(t)?(0,we.__)("Empty"):t}},transforms:bu,deprecated:mu,merge:(e,t)=>({content:(e.content||"")+(t.content||"")}),edit:gu,save:function(e){let{attributes:t}=e;const{align:n,content:o,dropCap:r,direction:a}=t,l=nt()({"has-drop-cap":r,[`has-text-align-${n}`]:n});return(0,ye.createElement)("p",Ee.useBlockProps.save({className:l,dir:a}),(0,ye.createElement)(Ee.RichText.Content,{value:o}))}};var ku=function(e){let{isSelected:t,context:{postType:n,postId:o,queryId:r},attributes:a,setAttributes:l}=e;const i=Number.isFinite(r),{authorId:s,authorDetails:c,authors:u}=(0,Ie.useSelect)((e=>{var t;const{getEditedEntityRecord:r,getUser:a,getUsers:l}=e(Dt.store),i=null===(t=r("postType",n,o))||void 0===t?void 0:t.author;return{authorId:i,authorDetails:i?a(i):null,authors:l({who:"authors"})}}),[n,o]),{editEntityRecord:m}=(0,Ie.useDispatch)(Dt.store),{textAlign:d,showAvatar:p,showBio:g,byline:h}=a,v=[];c&&(0,Le.forEach)(c.avatar_urls,((e,t)=>{v.push({value:t,label:`${t} x ${t}`})}));const b=(0,Ee.useBlockProps)({className:nt()({[`has-text-align-${d}`]:d})});return(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)(Ee.InspectorControls,null,(0,ye.createElement)(ke.PanelBody,{title:(0,we.__)("Author Settings")},!i&&!(null==u||!u.length)&&(0,ye.createElement)(ke.SelectControl,{label:(0,we.__)("Author"),value:s,options:u.map((e=>{let{id:t,name:n}=e;return{value:t,label:n}})),onChange:e=>{m("postType",n,o,{author:e})}}),(0,ye.createElement)(ke.ToggleControl,{label:(0,we.__)("Show avatar"),checked:p,onChange:()=>l({showAvatar:!p})}),p&&(0,ye.createElement)(ke.SelectControl,{label:(0,we.__)("Avatar size"),value:a.avatarSize,options:v,onChange:e=>{l({avatarSize:Number(e)})}}),(0,ye.createElement)(ke.ToggleControl,{label:(0,we.__)("Show bio"),checked:g,onChange:()=>l({showBio:!g})}))),(0,ye.createElement)(Ee.BlockControls,{group:"block"},(0,ye.createElement)(Ee.AlignmentControl,{value:d,onChange:e=>{l({textAlign:e})}})),(0,ye.createElement)("div",b,p&&c&&(0,ye.createElement)("div",{className:"wp-block-post-author__avatar"},(0,ye.createElement)("img",{width:a.avatarSize,src:c.avatar_urls[a.avatarSize],alt:c.name})),(0,ye.createElement)("div",{className:"wp-block-post-author__content"},(!Ee.RichText.isEmpty(h)||t)&&(0,ye.createElement)(Ee.RichText,{className:"wp-block-post-author__byline",multiline:!1,"aria-label":(0,we.__)("Post author byline text"),placeholder:(0,we.__)("Write byline"),value:h,onChange:e=>l({byline:e})}),(0,ye.createElement)("p",{className:"wp-block-post-author__name"},(null==c?void 0:c.name)||(0,we.__)("Post Author")),g&&(0,ye.createElement)("p",{className:"wp-block-post-author__bio"},null==c?void 0:c.description))))};var wu=(0,ye.createElement)(fe.SVG,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,ye.createElement)(fe.Path,{d:"M10 4.5a1 1 0 11-2 0 1 1 0 012 0zm1.5 0a2.5 2.5 0 11-5 0 2.5 2.5 0 015 0zm2.25 7.5v-1A2.75 2.75 0 0011 8.25H7A2.75 2.75 0 004.25 11v1h1.5v-1c0-.69.56-1.25 1.25-1.25h4c.69 0 1.25.56 1.25 1.25v1h1.5zM4 20h9v-1.5H4V20zm16-4H4v-1.5h16V16z",fillRule:"evenodd",clipRule:"evenodd"}));const Eu={apiVersion:2,name:"core/post-author",title:"Post Author",category:"theme",description:"Add the author of this post.",textdomain:"default",attributes:{textAlign:{type:"string"},avatarSize:{type:"number",default:48},showAvatar:{type:"boolean",default:!0},showBio:{type:"boolean"},byline:{type:"string"}},usesContext:["postType","postId","queryId"],supports:{html:!1,spacing:{margin:!0,padding:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0,__experimentalLetterSpacing:!0,__experimentalTextTransform:!0,__experimentalDefaultControls:{fontSize:!0}},color:{gradients:!0,link:!0,__experimentalDuotone:".wp-block-post-author__avatar img"}},editorStyle:"wp-block-post-author-editor",style:"wp-block-post-author"},{name:Cu}=Eu,xu={icon:wu,edit:ku};var Su=(0,ye.createElement)(fe.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,ye.createElement)(fe.Path,{d:"M14 10.1V4c0-.6-.4-1-1-1H5c-.6 0-1 .4-1 1v8.3c0 .3.2.7.6.8.1.1.2.1.3.1.2 0 .5-.1.6-.3l1.8-1.8H13c.6 0 1-.4 1-1zm-1.5-.5H6.7l-1.2 1.2V4.5h7v5.1zM19 12h-8c-.6 0-1 .4-1 1v6.1c0 .6.4 1 1 1h5.7l1.8 1.8c.1.2.4.3.6.3.1 0 .2 0 .3-.1.4-.1.6-.5.6-.8V13c0-.6-.4-1-1-1zm-.5 7.8l-1.2-1.2h-5.8v-5.1h7v6.3z"}));function Bu(e){let{postId:t}=e;return(0,Ie.useSelect)((e=>{const n=e(Dt.store).getEntityRecords("root","comment",{post:t});return n&&n.length?n.map((e=>(0,ye.createElement)(ye.RawHTML,{className:"wp-block-post-comments__comment",key:e.id},e.content.rendered))):(0,we.__)("No comments.")}),[t])}const Tu={apiVersion:2,name:"core/post-comments",title:"Post Comments",category:"theme",description:"Display a post's comments.",textdomain:"default",attributes:{textAlign:{type:"string"}},usesContext:["postId","postType"],supports:{html:!1,align:["wide","full"],typography:{fontSize:!0,lineHeight:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0,__experimentalLetterSpacing:!0,__experimentalTextTransform:!0,__experimentalDefaultControls:{fontSize:!0}},color:{gradients:!0,link:!0}},style:["wp-block-post-comments","wp-block-buttons","wp-block-button"]},{name:Nu}=Tu,zu={icon:Su,edit:function(e){let{attributes:t,setAttributes:n,context:o}=e;const{postType:r,postId:a}=o,{textAlign:l}=t,i=(0,Ee.useBlockProps)({className:nt()({[`has-text-align-${l}`]:l})});return r&&a?(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)(Ee.BlockControls,{group:"block"},(0,ye.createElement)(Ee.AlignmentControl,{value:l,onChange:e=>{n({textAlign:e})}})),(0,ye.createElement)("div",i,(0,ye.createElement)(Bu,{postId:a}))):(0,ye.createElement)("div",i,(0,ye.createElement)(Ee.Warning,null,(0,we.__)("Post comments block: no post found.")))}};var Pu=(0,ye.createElement)(fe.SVG,{xmlns:"https://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,ye.createElement)(fe.Path,{d:"M4 20h16v-1.5H4V20zm0-4.8h16v-1.5H4v1.5zm0-6.4v1.5h16V8.8H4zM16 4H4v1.5h12V4z"}));function Iu(e,t,n){return(0,Ie.useSelect)((o=>o(Dt.store).canUserEditEntityRecord(e,t,n)),[e,t,n])}function Mu(e){let{userCanEdit:t,postType:n,postId:o}=e;const[,,r]=(0,Dt.useEntityProp)("postType",n,"content",o),a=(0,Ee.useBlockProps)();return null!=r&&r.protected&&!t?(0,ye.createElement)("div",a,(0,ye.createElement)(Ee.Warning,null,(0,we.__)("This content is password protected."))):(0,ye.createElement)("div",a,(0,ye.createElement)(ye.RawHTML,{key:"html"},null==r?void 0:r.rendered))}function Ru(e){let{layout:t,context:n={}}=e;const{postType:o,postId:r}=n,a=(0,Ie.useSelect)((e=>{var t;const{getSettings:n}=e(Ee.store);return null===(t=n())||void 0===t?void 0:t.supportsLayout}),[]),l=(0,Ee.useSetting)("layout")||{},i=t&&t.inherit?l:t,[s,c,u]=(0,Dt.useEntityBlockEditor)("postType",o,{id:r}),m=(0,Ee.useInnerBlocksProps)((0,Ee.useBlockProps)({className:"entry-content"}),{value:s,onInput:c,onChange:u,__experimentalLayout:a?i:void 0});return(0,ye.createElement)("div",m)}function Lu(e){const{context:{queryId:t,postType:n,postId:o}={}}=e,r=Number.isFinite(t),a=Iu("postType",n,o);return a&&!r?(0,ye.createElement)(Ru,e):(0,ye.createElement)(Mu,{userCanEdit:a,postType:n,postId:o})}function Vu(){const e=(0,Ee.useBlockProps)();return(0,ye.createElement)("div",e,(0,ye.createElement)("p",null,(0,we.__)("Post Content")))}function Hu(){const e=(0,Ee.useBlockProps)();return(0,ye.createElement)("div",e,(0,ye.createElement)(Ee.Warning,null,(0,we.__)("Block cannot be rendered inside itself.")))}const Au={apiVersion:2,name:"core/post-content",title:"Post Content",category:"theme",description:"Displays the contents of a post or page.",textdomain:"default",usesContext:["postId","postType","queryId"],supports:{align:["wide","full"],html:!1,__experimentalLayout:!0},editorStyle:"wp-block-post-content-editor"},{name:Fu}=Au,Du={icon:Pu,edit:function(e){let{context:t,attributes:n}=e;const{postId:o,postType:r}=t,{layout:a={}}=n,[l,i]=(0,Ee.__experimentalUseNoRecursiveRenders)(o);return o&&r&&l?(0,ye.createElement)(Hu,null):(0,ye.createElement)(i,null,o&&r?(0,ye.createElement)(Lu,{context:t,layout:a}):(0,ye.createElement)(Vu,null))}};var Gu=(0,ye.createElement)(fe.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,ye.createElement)(fe.Path,{d:"M11.696 13.972c.356-.546.599-.958.728-1.235a1.79 1.79 0 00.203-.783c0-.264-.077-.47-.23-.618-.148-.153-.354-.23-.618-.23-.295 0-.569.07-.82.212a3.413 3.413 0 00-.738.571l-.147-1.188c.289-.234.59-.41.903-.526.313-.117.66-.175 1.041-.175.375 0 .695.08.959.24.264.153.46.362.59.626.135.265.203.556.203.876 0 .362-.08.734-.24 1.115-.154.381-.427.87-.82 1.466l-.756 1.152H14v1.106h-4l1.696-2.609z"}),(0,ye.createElement)(fe.Path,{d:"M19.5 7h-15v12a.5.5 0 00.5.5h14a.5.5 0 00.5-.5V7zM3 7V5a2 2 0 012-2h14a2 2 0 012 2v14a2 2 0 01-2 2H5a2 2 0 01-2-2V7z"}));var Uu=[{attributes:{textAlign:{type:"string"},format:{type:"string"},isLink:{type:"boolean",default:!1}},supports:{html:!1,color:{gradients:!0,link:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalLetterSpacing:!0}},save:()=>null,migrate:lt,isEligible(e){var t;let{style:n}=e;return null==n||null===(t=n.typography)||void 0===t?void 0:t.fontFamily}}];const Ou={apiVersion:2,name:"core/post-date",title:"Post Date",category:"theme",description:"Add the date of this post.",textdomain:"default",attributes:{textAlign:{type:"string"},format:{type:"string"},isLink:{type:"boolean",default:!1}},usesContext:["postId","postType","queryId"],supports:{html:!1,color:{gradients:!0,link:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}}}},{name:qu}=Ou,$u={icon:Gu,edit:function(e){let{attributes:{textAlign:t,format:n,isLink:o},context:{postId:r,postType:a,queryId:l},setAttributes:i}=e;const s=Number.isFinite(l),[c]=(0,Dt.useEntityProp)("root","site","date_format"),[u,m]=(0,Dt.useEntityProp)("postType",a,"date",r),d=(0,ci.__experimentalGetSettings)(),p=/a(?!\\)/i.test(d.formats.time.toLowerCase().replace(/\\\\/g,"").split("").reverse().join("")),g=Object.values(d.formats).map((e=>({key:e,name:(0,ci.dateI18n)(e,u)}))),h=n||c||d.formats.date,v=(0,Ee.useBlockProps)({className:nt()({[`has-text-align-${t}`]:t})}),b=(0,ye.useRef)();let y=u?(0,ye.createElement)("time",{dateTime:(0,ci.dateI18n)("c",u),ref:b},(0,ci.dateI18n)(h,u)):(0,we.__)("Post Date");return o&&u&&(y=(0,ye.createElement)("a",{href:"#post-date-pseudo-link",onClick:e=>e.preventDefault()},y)),(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)(Ee.BlockControls,{group:"block"},(0,ye.createElement)(Ee.AlignmentControl,{value:t,onChange:e=>{i({textAlign:e})}}),u&&!s&&(0,ye.createElement)(ke.ToolbarGroup,null,(0,ye.createElement)(ke.Dropdown,{popoverProps:{anchorRef:b.current},renderContent:()=>(0,ye.createElement)(ke.DateTimePicker,{currentDate:u,onChange:m,is12Hour:p}),renderToggle:e=>{let{isOpen:t,onToggle:n}=e;return(0,ye.createElement)(ke.ToolbarButton,{"aria-expanded":t,icon:$o,title:(0,we.__)("Change Date"),onClick:n,onKeyDown:e=>{t||e.keyCode!==ht.DOWN||(e.preventDefault(),n())}})}}))),(0,ye.createElement)(Ee.InspectorControls,null,(0,ye.createElement)(ke.PanelBody,{title:(0,we.__)("Format settings")},(0,ye.createElement)(ke.CustomSelectControl,{hideLabelFromVision:!0,label:(0,we.__)("Date Format"),options:g,onChange:e=>{let{selectedItem:t}=e;return i({format:t.key})},value:g.find((e=>e.key===h))})),(0,ye.createElement)(ke.PanelBody,{title:(0,we.__)("Link settings")},(0,ye.createElement)(ke.ToggleControl,{label:(0,we.sprintf)((0,we.__)("Link to %s"),a),onChange:()=>i({isLink:!o}),checked:o}))),(0,ye.createElement)("div",v,y))},deprecated:Uu};var Wu=(0,ye.createElement)(fe.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,ye.createElement)(fe.Path,{d:"M12.75 9.333c0 .521-.102.977-.327 1.354-.23.386-.555.628-.893.774-.545.234-1.183.227-1.544.222l-.12-.001v-1.5h.123c.414.001.715.002.948-.099a.395.395 0 00.199-.166c.05-.083.114-.253.114-.584V7.2H8.8V4h3.95v5.333zM7.95 9.333c0 .521-.102.977-.327 1.354-.23.386-.555.628-.893.774-.545.234-1.183.227-1.544.222l-.12-.001v-1.5h.123c.414.001.715.002.948-.099a.394.394 0 00.198-.166c.05-.083.115-.253.115-.584V7.2H4V4h3.95v5.333zM13 20H4v-1.5h9V20zM20 16H4v-1.5h16V16z"}));const ju={apiVersion:2,name:"core/post-excerpt",title:"Post Excerpt",category:"theme",description:"Display a post's excerpt.",textdomain:"default",attributes:{textAlign:{type:"string"},moreText:{type:"string"},showMoreOnNewLine:{type:"boolean",default:!0}},usesContext:["postId","postType","queryId"],supports:{html:!1,color:{gradients:!0,link:!0},spacing:{margin:!0,padding:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0,__experimentalLetterSpacing:!0,__experimentalTextTransform:!0,__experimentalDefaultControls:{fontSize:!0}}},editorStyle:"wp-block-post-excerpt-editor",style:"wp-block-post-excerpt"},{name:Zu}=ju,Ku={icon:Wu,edit:function(e){let{attributes:{textAlign:t,moreText:n,showMoreOnNewLine:o},setAttributes:r,isSelected:a,context:{postId:l,postType:i,queryId:s}}=e;const c=Number.isFinite(s),u=Iu("postType",i,l),m=u&&!c,[d,p,{rendered:g,protected:h}={}]=(0,Dt.useEntityProp)("postType",i,"excerpt",l),v=(0,Ee.useBlockProps)({className:nt()({[`has-text-align-${t}`]:t})}),b=(0,ye.useMemo)((()=>{if(!g)return"";const e=(new window.DOMParser).parseFromString(g,"text/html");return e.body.textContent||e.body.innerText||""}),[g]);if(!i||!l)return(0,ye.createElement)("div",v,(0,we.__)("Post Excerpt"));if(h&&!u)return(0,ye.createElement)("div",v,(0,ye.createElement)(Ee.Warning,null,(0,we.__)("There is no excerpt because this is a protected post.")));const y=(0,ye.createElement)(Ee.RichText,{className:"wp-block-post-excerpt__more-link",tagName:"a","aria-label":(0,we.__)('"Read more" link text'),placeholder:(0,we.__)('Add "read more" link text'),value:n,onChange:e=>r({moreText:e}),withoutInteractiveFormatting:!0}),f=m?(0,ye.createElement)(Ee.RichText,{className:!o&&"wp-block-post-excerpt__excerpt is-inline","aria-label":(0,we.__)("Post excerpt text"),value:d||b||(a?"":(0,we.__)("No post excerpt found")),onChange:p}):g&&(0,ye.createElement)(ke.Disabled,null,(0,ye.createElement)(ye.RawHTML,{key:"html"},g))||(0,we.__)("No post excerpt found");return(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)(Ee.BlockControls,null,(0,ye.createElement)(Ee.AlignmentToolbar,{value:t,onChange:e=>r({textAlign:e})})),(0,ye.createElement)(Ee.InspectorControls,null,(0,ye.createElement)(ke.PanelBody,{title:(0,we.__)("Post Excerpt Settings")},(0,ye.createElement)(ke.ToggleControl,{label:(0,we.__)("Show link on new line"),checked:o,onChange:e=>r({showMoreOnNewLine:e})}))),(0,ye.createElement)("div",v,f,!o&&" ",o?(0,ye.createElement)("p",{className:"wp-block-post-excerpt__more-text"},y):y))}};var Qu=(0,ye.createElement)(fe.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,ye.createElement)(fe.Path,{d:"M19 3H5c-.6 0-1 .4-1 1v7c0 .5.4 1 1 1h14c.5 0 1-.4 1-1V4c0-.6-.4-1-1-1zM5.5 10.5v-.4l1.8-1.3 1.3.8c.3.2.7.2.9-.1L11 8.1l2.4 2.4H5.5zm13 0h-2.9l-4-4c-.3-.3-.8-.3-1.1 0L8.9 8l-1.2-.8c-.3-.2-.6-.2-.9 0l-1.3 1V4.5h13v6zM4 20h9v-1.5H4V20zm0-4h16v-1.5H4V16z"}));const Ju=(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)(ke.__experimentalToggleGroupControlOption,{value:"cover",label:(0,we._x)("Cover","Scale option for Image dimension control")}),(0,ye.createElement)(ke.__experimentalToggleGroupControlOption,{value:"contain",label:(0,we._x)("Contain","Scale option for Image dimension control")}),(0,ye.createElement)(ke.__experimentalToggleGroupControlOption,{value:"fill",label:(0,we._x)("Fill","Scale option for Image dimension control")})),Yu="cover",Xu={cover:(0,we.__)("Image is scaled and cropped to fill the entire space without being distorted."),contain:(0,we.__)("Image is scaled to fill the space without clipping nor distorting."),fill:(0,we.__)("Image will be stretched and distorted to completely fill the space.")};var em=e=>{let{clientId:t,attributes:{width:n,height:o,scale:r},setAttributes:a}=e;const l=(0,ke.__experimentalUseCustomUnits)({availableUnits:(0,Ee.useSetting)("spacing.units")||["px","%","vw","em","rem"]}),i=(e,t)=>{const n=parseFloat(t);isNaN(n)&&t||a({[e]:n<0?"0":t})},s=(0,we._x)("Scale","Image scaling options");return(0,ye.createElement)(Ee.InspectorControls,{__experimentalGroup:"dimensions"},(0,ye.createElement)(ke.__experimentalToolsPanelItem,{className:"single-column",hasValue:()=>!!o,label:(0,we.__)("Height"),onDeselect:()=>a({height:void 0}),resetAllFilter:()=>({height:void 0}),isShownByDefault:!0,panelId:t},(0,ye.createElement)(ke.__experimentalUnitControl,{label:(0,we.__)("Height"),labelPosition:"top",value:o||"",min:0,onChange:e=>i("height",e),units:l})),(0,ye.createElement)(ke.__experimentalToolsPanelItem,{className:"single-column",hasValue:()=>!!n,label:(0,we.__)("Width"),onDeselect:()=>a({width:void 0}),resetAllFilter:()=>({width:void 0}),isShownByDefault:!0,panelId:t},(0,ye.createElement)(ke.__experimentalUnitControl,{label:(0,we.__)("Width"),labelPosition:"top",value:n||"",min:0,onChange:e=>i("width",e),units:l})),!!o&&(0,ye.createElement)(ke.__experimentalToolsPanelItem,{hasValue:()=>!!r&&r!==Yu,label:s,onDeselect:()=>a({scale:Yu}),resetAllFilter:()=>({scale:Yu}),isShownByDefault:!0,panelId:t},(0,ye.createElement)(ke.__experimentalToggleGroupControl,{label:s,value:r,help:Xu[r],onChange:e=>a({scale:e}),isBlock:!0},Ju)))};const tm=(0,ye.createElement)(fe.SVG,{className:"components-placeholder__illustration",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 60 60",preserveAspectRatio:"none"},(0,ye.createElement)(fe.Path,{vectorEffect:"non-scaling-stroke",d:"M60 60 0 0"})),nm=["image"],om=(0,ye.createElement)("div",{className:"wp-block-post-featured-image__placeholder"},tm);function rm(e){let{clientId:t,attributes:n,setAttributes:o,context:{postId:r,postType:a,queryId:l}}=e;const i=Number.isFinite(l),{isLink:s,height:c,width:u,scale:m}=n,[d,p]=(0,Dt.useEntityProp)("postType",a,"featured_media",r),g=(0,Ie.useSelect)((e=>d&&e(Dt.store).getMedia(d,{context:"view"})),[d]),h=(0,Ee.useBlockProps)({style:{width:u,height:c}}),v=e=>(0,ye.createElement)(ke.Placeholder,{className:"block-editor-media-placeholder"},tm,e),b=e=>{null!=e&&e.id&&p(e.id)},{createErrorNotice:y}=(0,Ie.useDispatch)(Ir.store),f=e=>{y(e[2],{type:"snackbar"})};let _;if(!d&&i)return(0,ye.createElement)("div",h,om);const k=(0,we.__)("Add a featured image");return _=d?g?(0,ye.createElement)("img",{src:g.source_url,alt:g.alt_text||(0,we.__)("Featured image"),style:{height:c,objectFit:c&&m}}):om:(0,ye.createElement)(Ee.MediaPlaceholder,{onSelect:b,accept:"image/*",allowedTypes:nm,onError:f,placeholder:v,mediaLibraryButton:e=>{let{open:t}=e;return(0,ye.createElement)(ke.Button,{icon:Ol,variant:"primary",label:k,showTooltip:!0,tooltipPosition:"top center",onClick:()=>{t()}})}}),(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)(em,{clientId:t,attributes:n,setAttributes:o}),(0,ye.createElement)(Ee.InspectorControls,null,(0,ye.createElement)(ke.PanelBody,{title:(0,we.__)("Link settings")},(0,ye.createElement)(ke.ToggleControl,{label:(0,we.sprintf)((0,we.__)("Link to %s"),a),onChange:()=>o({isLink:!s}),checked:s}))),!!g&&!i&&(0,ye.createElement)(Ee.BlockControls,{group:"other"},(0,ye.createElement)(Ee.MediaReplaceFlow,{mediaId:d,mediaURL:g.source_url,allowedTypes:nm,accept:"image/*",onSelect:b,onError:f})),(0,ye.createElement)("figure",h,_))}const am={apiVersion:2,name:"core/post-featured-image",title:"Post Featured Image",category:"theme",description:"Display a post's featured image.",textdomain:"default",attributes:{isLink:{type:"boolean",default:!1},width:{type:"string"},height:{type:"string"},scale:{type:"string",default:"cover"}},usesContext:["postId","postType","queryId"],supports:{align:["left","right","center","wide","full"],color:{__experimentalDuotone:"img",text:!1,background:!1},html:!1,spacing:{margin:!0,padding:!0}},editorStyle:"wp-block-post-featured-image-editor",style:"wp-block-post-featured-image"},{name:lm}=am,im={icon:Qu,edit:function(e){var t;const n=(0,Ee.useBlockProps)();return null!==(t=e.context)&&void 0!==t&&t.postId?(0,ye.createElement)(rm,e):(0,ye.createElement)("div",n,om)}};var sm=(0,ye.createElement)(fe.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,ye.createElement)(fe.Path,{d:"M6.6 6L5.4 7l4.5 5-4.5 5 1.1 1 5.5-6-5.4-6zm6 0l-1.1 1 4.5 5-4.5 5 1.1 1 5.5-6-5.5-6z"}));var cm=(0,ye.createElement)(fe.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,ye.createElement)(fe.Path,{d:"M11.6 7l-1.1-1L5 12l5.5 6 1.1-1L7 12l4.6-5zm6 0l-1.1-1-5.5 6 5.5 6 1.1-1-4.6-5 4.6-5z"}));const um=[{isDefault:!0,name:"post-next",title:(0,we.__)("Next post"),description:(0,we.__)("Displays the post link that follows the current post."),icon:sm,attributes:{type:"next"},scope:["inserter","transform"]},{name:"post-previous",title:(0,we.__)("Previous post"),description:(0,we.__)("Displays the post link that precedes the current post."),icon:cm,attributes:{type:"previous"},scope:["inserter","transform"]}];um.forEach((e=>{e.isActive||(e.isActive=(e,t)=>e.type===t.type)}));var mm=um;const dm={apiVersion:2,name:"core/post-navigation-link",title:"Post Navigation Link",category:"theme",description:"Displays the next or previous post link that is adjacent to the current post.",textdomain:"default",attributes:{textAlign:{type:"string"},type:{type:"string",default:"next"},label:{type:"string"},showTitle:{type:"boolean",default:!1},linkLabel:{type:"boolean",default:!1}},supports:{reusable:!1,html:!1,typography:{fontSize:!0,lineHeight:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0,__experimentalLetterSpacing:!0,__experimentalTextTransform:!0,__experimentalDefaultControls:{fontSize:!0}}}},{name:pm}=dm,gm={edit:function(e){let{attributes:{type:t,label:n,showTitle:o,textAlign:r,linkLabel:a},setAttributes:l}=e;const i="next"===t;let s=i?(0,we.__)("Next"):(0,we.__)("Previous");o&&(s=i?(0,we.__)("Next: "):(0,we.__)("Previous: "));const c=i?(0,we.__)("Next post"):(0,we.__)("Previous post"),u=(0,Ee.useBlockProps)({className:nt()({[`has-text-align-${r}`]:r})});return(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)(Ee.InspectorControls,null,(0,ye.createElement)(ke.PanelBody,null,(0,ye.createElement)(ke.ToggleControl,{label:(0,we.__)("Display the title as a link"),help:(0,we.__)("If you have entered a custom label, it will be prepended before the title."),checked:!!o,onChange:()=>l({showTitle:!o})}),o&&(0,ye.createElement)(ke.ToggleControl,{label:(0,we.__)("Include the label as part of the link"),checked:!!a,onChange:()=>l({linkLabel:!a})}))),(0,ye.createElement)(Ee.BlockControls,null,(0,ye.createElement)(Ee.AlignmentToolbar,{value:r,onChange:e=>{l({textAlign:e})}})),(0,ye.createElement)("div",u,(0,ye.createElement)(Ee.RichText,{tagName:"a","aria-label":c,placeholder:s,value:n,allowedFormats:["core/bold","core/italic"],onChange:e=>l({label:e})}),o&&(0,ye.createElement)("a",{href:"#post-navigation-pseudo-link",onClick:e=>e.preventDefault()},(0,we.__)("An example title"))))},variations:mm};var hm=(0,ye.createElement)(fe.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,ye.createElement)(fe.Path,{d:"M18 5.5H6a.5.5 0 00-.5.5v3h13V6a.5.5 0 00-.5-.5zm.5 5H10v8h8a.5.5 0 00.5-.5v-7.5zm-10 0h-3V18a.5.5 0 00.5.5h2.5v-8zM6 4h12a2 2 0 012 2v12a2 2 0 01-2 2H6a2 2 0 01-2-2V6a2 2 0 012-2z"}));const vm=[["core/post-title"],["core/post-date"],["core/post-excerpt"]];function bm(){const e=(0,Ee.useInnerBlocksProps)({},{template:vm});return(0,ye.createElement)("li",e)}const ym=(0,ye.memo)((function(e){let{blocks:t,blockContextId:n,isHidden:o,setActiveBlockContextId:r}=e;const a=(0,Ee.__experimentalUseBlockPreview)({blocks:t}),l=()=>{r(n)},i={display:o?"none":void 0};return(0,ye.createElement)("li",gt({},a,{tabIndex:0,role:"button",onClick:l,onKeyPress:l,style:i}))}));const fm={apiVersion:2,name:"core/post-template",title:"Post Template",category:"design",parent:["core/query"],description:"Contains the block elements used to render a post, like the title, date, featured image, content or excerpt, and more.",textdomain:"default",usesContext:["queryId","query","queryContext","displayLayout","templateSlug"],supports:{reusable:!1,html:!1,align:!0,__experimentalLayout:{allowEditing:!1}},style:"wp-block-post-template",editorStyle:"wp-block-post-template-editor"},{name:_m}=fm,km={icon:hm,edit:function(e){let{clientId:t,context:{query:{perPage:n,offset:o,categoryIds:r=[],postType:a,tagIds:l=[],order:i,orderBy:s,author:c,search:u,exclude:m,sticky:d,inherit:p}={},queryContext:g=[{page:1}],templateSlug:h,displayLayout:{type:v="flex",columns:b=1}={}}}=e;const[{page:y}]=g,[f,_]=(0,ye.useState)(),{posts:k,blocks:w}=(0,Ie.useSelect)((e=>{const{getEntityRecords:g}=e(Dt.store),{getBlocks:v}=e(Ee.store),b={offset:n?n*(y-1)+o:0,categories:r,tags:l,order:i,orderby:s};return n&&(b.per_page=n),c&&(b.author=c),u&&(b.search=u),null!=m&&m.length&&(b.exclude=m),d&&(b.sticky="only"===d),p&&null!=h&&h.startsWith("archive-")&&(b.postType=h.replace("archive-",""),a=b.postType),{posts:g("postType",a,b),blocks:v(t)}}),[n,y,o,r,l,i,s,t,c,u,a,m,d,p,h]),E=(0,ye.useMemo)((()=>null==k?void 0:k.map((e=>({postType:e.type,postId:e.id})))),[k]),C="flex"===v&&b>1,x=(0,Ee.useBlockProps)({className:nt()({"is-flex-container":C,[`columns-${b}`]:C})});return k?k.length?(0,ye.createElement)("ul",x,E&&E.map((e=>{var t,n;return(0,ye.createElement)(Ee.BlockContextProvider,{key:e.postId,value:e},e.postId===(f||(null===(t=E[0])||void 0===t?void 0:t.postId))?(0,ye.createElement)(bm,null):null,(0,ye.createElement)(ym,{blocks:w,blockContextId:e.postId,setActiveBlockContextId:_,isHidden:e.postId===(f||(null===(n=E[0])||void 0===n?void 0:n.postId))}))}))):(0,ye.createElement)("p",x," ",(0,we.__)("No results found.")):(0,ye.createElement)("p",x,(0,ye.createElement)(ke.Spinner,null))},save:function(){return(0,ye.createElement)(Ee.InnerBlocks.Content,null)}};var wm=(0,ye.createElement)(fe.SVG,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,ye.createElement)(fe.Path,{d:"M20 4H4v1.5h16V4zm-2 9h-3c-1.1 0-2 .9-2 2v3c0 1.1.9 2 2 2h3c1.1 0 2-.9 2-2v-3c0-1.1-.9-2-2-2zm.5 5c0 .3-.2.5-.5.5h-3c-.3 0-.5-.2-.5-.5v-3c0-.3.2-.5.5-.5h3c.3 0 .5.2.5.5v3zM4 9.5h9V8H4v1.5zM9 13H6c-1.1 0-2 .9-2 2v3c0 1.1.9 2 2 2h3c1.1 0 2-.9 2-2v-3c0-1.1-.9-2-2-2zm.5 5c0 .3-.2.5-.5.5H6c-.3 0-.5-.2-.5-.5v-3c0-.3.2-.5.5-.5h3c.3 0 .5.2.5.5v3z",fillRule:"evenodd",clipRule:"evenodd"}));const Em=[{name:"category",title:(0,we.__)("Post Categories"),description:(0,we.__)("Display a post's categories."),icon:wm,isDefault:!0,attributes:{term:"category"},isActive:e=>"category"===e.term},{name:"post_tag",title:(0,we.__)("Post Tags"),description:(0,we.__)("Display a post's tags."),icon:wm,attributes:{term:"post_tag"},isActive:e=>"post_tag"===e.term}];var Cm=Em;const xm={apiVersion:2,name:"core/post-terms",title:"Post Terms",category:"theme",description:"Post terms.",textdomain:"default",attributes:{term:{type:"string"},textAlign:{type:"string"},separator:{type:"string",default:", "}},usesContext:["postId","postType"],supports:{html:!1,color:{gradients:!0,link:!0},typography:{lineHeight:!0,fontSize:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0,__experimentalLetterSpacing:!0,__experimentalTextTransform:!0,__experimentalDefaultControls:{fontSize:!0}}},style:"wp-block-post-terms"},{name:Sm}=xm,Bm={variations:Cm,edit:function(e){var t;let{attributes:n,context:o,setAttributes:r}=e;const{term:a,textAlign:l,separator:i}=n,{postId:s,postType:c}=o,u=(0,Ie.useSelect)((e=>{var t;if(!a)return{};const{getTaxonomy:n}=e(Dt.store),o=n(a);return null!=o&&null!==(t=o.visibility)&&void 0!==t&&t.publicly_queryable?o:{}}),[a]),{postTerms:m,hasPostTerms:d,isLoading:p}=function(e){var t;let{postId:n,postType:o,term:r}=e;const{rest_base:a,slug:l}=r,[i]=(0,Dt.useEntityProp)("postType",o,a,n);return(0,Ie.useSelect)((e=>{var t,n;if(!(null==r||null===(t=r.visibility)||void 0===t?void 0:t.publicly_queryable))return{postTerms:[],_isLoading:!1,hasPostTerms:!1};if(!i)return{isLoading:null==r||null===(n=r.postTerms)||void 0===n?void 0:n.includes(o)};if(!i.length)return{isLoading:!1};const{getEntityRecords:a,isResolving:s}=e(Dt.store),c=["taxonomy",l,{include:i,context:"view"}],u=a(...c);return{postTerms:u,isLoading:s("getEntityRecords",c),hasPostTerms:!(null==u||!u.length)}}),[i,null==r||null===(t=r.visibility)||void 0===t?void 0:t.publicly_queryable])}({postId:s,postType:c,term:u}),g=s&&c,h=(0,Ee.useBlockProps)({className:nt()({[`has-text-align-${l}`]:l,[`taxonomy-${a}`]:a})});return g&&a?(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)(Ee.BlockControls,null,(0,ye.createElement)(Ee.AlignmentToolbar,{value:l,onChange:e=>{r({textAlign:e})}})),(0,ye.createElement)(Ee.InspectorControls,{__experimentalGroup:"advanced"},(0,ye.createElement)(ke.TextControl,{autoComplete:"off",label:(0,we.__)("Separator"),value:i||"",onChange:e=>{r({separator:e})},help:(0,we.__)("Enter character(s) used to separate terms.")})),(0,ye.createElement)("div",h,p&&(0,ye.createElement)(ke.Spinner,null),!p&&d&&m.map((e=>(0,ye.createElement)("a",{key:e.id,href:e.link,onClick:e=>e.preventDefault()},e.name))).reduce(((e,t)=>(0,ye.createElement)(ye.Fragment,null,e,(0,ye.createElement)("span",{className:"wp-block-post-terms__separator"},i||" "),t))),!p&&!d&&((null==u||null===(t=u.labels)||void 0===t?void 0:t.no_terms)||(0,we.__)("Term items not found.")))):(0,ye.createElement)("div",h,(0,we.__)("Post Terms"))}};var Tm=[{attributes:{textAlign:{type:"string"},level:{type:"number",default:2},isLink:{type:"boolean",default:!1},rel:{type:"string",attribute:"rel",default:""},linkTarget:{type:"string",default:"_self"}},supports:{align:["wide","full"],html:!1,color:{gradients:!0,link:!0},spacing:{margin:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0}},save:()=>null,migrate:lt,isEligible(e){var t;let{style:n}=e;return null==n||null===(t=n.typography)||void 0===t?void 0:t.fontFamily}}];const Nm={apiVersion:2,name:"core/post-title",title:"Post Title",category:"theme",description:"Displays the title of a post, page, or any other content-type.",textdomain:"default",usesContext:["postId","postType","queryId"],attributes:{textAlign:{type:"string"},level:{type:"number",default:2},isLink:{type:"boolean",default:!1},rel:{type:"string",attribute:"rel",default:""},linkTarget:{type:"string",default:"_self"}},supports:{align:["wide","full"],html:!1,color:{gradients:!0,link:!0},spacing:{margin:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontWeight:!0,__experimentalFontStyle:!0,__experimentalTextTransform:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0,fontAppearance:!0,textTransform:!0}}},style:"wp-block-post-title"},{name:zm}=Nm,Pm={icon:bc,edit:function(e){let{attributes:{level:t,textAlign:n,isLink:o,rel:r,linkTarget:a},setAttributes:l,context:{postType:i,postId:s,queryId:c}}=e;const u=0===t?"p":"h"+t,m=Number.isFinite(c),d=Iu("postType",i,s),[p="",g,h]=(0,Dt.useEntityProp)("postType",i,"title",s),[v]=(0,Dt.useEntityProp)("postType",i,"link",s),b=(0,Ee.useBlockProps)({className:nt()({[`has-text-align-${n}`]:n})});let y=(0,ye.createElement)(u,b,(0,we.__)("Post Title"));return i&&s&&(y=d&&!m?(0,ye.createElement)(Ee.PlainText,gt({tagName:u,placeholder:(0,we.__)("No Title"),value:p,onChange:g,__experimentalVersion:2},b)):(0,ye.createElement)(u,b,(0,ye.createElement)(ye.RawHTML,{key:"html"},null==h?void 0:h.rendered))),o&&i&&s&&(y=d&&!m?(0,ye.createElement)(u,b,(0,ye.createElement)(Ee.PlainText,{tagName:"a",href:v,target:a,rel:r,placeholder:p.length?null:(0,we.__)("No Title"),value:p,onChange:g,__experimentalVersion:2})):(0,ye.createElement)(u,b,(0,ye.createElement)("a",{href:v,target:a,rel:r,onClick:e=>e.preventDefault()},(0,ye.createElement)(ye.RawHTML,{key:"html"},null==h?void 0:h.rendered)))),(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)(Ee.BlockControls,{group:"block"},(0,ye.createElement)(wl,{selectedLevel:t,onChange:e=>l({level:e})}),(0,ye.createElement)(Ee.AlignmentControl,{value:n,onChange:e=>{l({textAlign:e})}})),(0,ye.createElement)(Ee.InspectorControls,null,(0,ye.createElement)(ke.PanelBody,{title:(0,we.__)("Link settings")},(0,ye.createElement)(ke.ToggleControl,{label:(0,we.__)("Make title a link"),onChange:()=>l({isLink:!o}),checked:o}),o&&(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)(ke.ToggleControl,{label:(0,we.__)("Open in new tab"),onChange:e=>l({linkTarget:e?"_blank":"_self"}),checked:"_blank"===a}),(0,ye.createElement)(ke.TextControl,{label:(0,we.__)("Link rel"),value:r,onChange:e=>l({rel:e})})))),y)},deprecated:Tm};var Im=(0,ye.createElement)(fe.SVG,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,ye.createElement)(fe.Path,{d:"M18 4H6c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm.5 14c0 .3-.2.5-.5.5H6c-.3 0-.5-.2-.5-.5V6c0-.3.2-.5.5-.5h12c.3 0 .5.2.5.5v12zM7 16.5h6V15H7v1.5zm4-4h6V11h-6v1.5zM9 11H7v1.5h2V11zm6 5.5h2V15h-2v1.5z"}));const Mm={from:[{type:"block",blocks:["core/code","core/paragraph"],transform:e=>{let{content:t,anchor:n}=e;return(0,be.createBlock)("core/preformatted",{content:t,anchor:n})}},{type:"raw",isMatch:e=>"PRE"===e.nodeName&&!(1===e.children.length&&"CODE"===e.firstChild.nodeName),schema:e=>{let{phrasingContentSchema:t}=e;return{pre:{children:t}}}}],to:[{type:"block",blocks:["core/paragraph"],transform:e=>(0,be.createBlock)("core/paragraph",e)},{type:"block",blocks:["core/code"],transform:e=>(0,be.createBlock)("core/code",e)}]};var Rm=Mm;const Lm={apiVersion:2,name:"core/preformatted",title:"Preformatted",category:"text",description:"Add text that respects your spacing and tabs, and also allows styling.",textdomain:"default",attributes:{content:{type:"string",source:"html",selector:"pre",default:"",__unstablePreserveWhiteSpace:!0,__experimentalRole:"content"}},supports:{anchor:!0,color:{gradients:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0,__experimentalLetterSpacing:!0,__experimentalTextTransform:!0,__experimentalDefaultControls:{fontSize:!0}}},style:"wp-block-preformatted"},{name:Vm}=Lm,Hm={icon:Im,example:{attributes:{content:(0,we.__)("EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)\nWindow, very small in the distance, illuminated.\nAll around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;")}},transforms:Rm,edit:function(e){let{attributes:t,mergeBlocks:n,setAttributes:o,onRemove:r,style:a}=e;const{content:l}=t,i=(0,Ee.useBlockProps)({style:a});return(0,ye.createElement)(Ee.RichText,gt({tagName:"pre",identifier:"content",preserveWhiteSpace:!0,value:l,onChange:e=>{o({content:e})},onRemove:r,"aria-label":(0,we.__)("Preformatted text"),placeholder:(0,we.__)("Write preformatted text"),onMerge:n},i,{__unstablePastePlainText:!0}))},save:function(e){let{attributes:t}=e;const{content:n}=t;return(0,ye.createElement)("pre",Ee.useBlockProps.save(),(0,ye.createElement)(Ee.RichText.Content,{value:n}))},merge:(e,t)=>({content:e.content+t.content})};var Am=(0,ye.createElement)(fe.SVG,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,ye.createElement)(fe.Path,{d:"M18 8H6c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-4c0-1.1-.9-2-2-2zm.5 6c0 .3-.2.5-.5.5H6c-.3 0-.5-.2-.5-.5v-4c0-.3.2-.5.5-.5h12c.3 0 .5.2.5.5v4zM4 4v1.5h16V4H4zm0 16h16v-1.5H4V20z"}));const Fm="is-style-solid-color",Dm={value:{type:"string",source:"html",selector:"blockquote",multiline:"p"},citation:{type:"string",source:"html",selector:"cite",default:""},mainColor:{type:"string"},customMainColor:{type:"string"},textColor:{type:"string"},customTextColor:{type:"string"}};function Gm(e){if(!e)return;const t=e.match(/border-color:([^;]+)[;]?/);return t&&t[1]?t[1]:void 0}const Um=[{attributes:{...Dm},save(e){let{attributes:t}=e;const{mainColor:n,customMainColor:o,customTextColor:r,textColor:a,value:l,citation:i,className:s}=t;let c,u;if((0,Le.includes)(s,Fm)){const e=(0,Ee.getColorClassName)("background-color",n);c=nt()({"has-background":e||o,[e]:e}),u={backgroundColor:e?void 0:o}}else o&&(u={borderColor:o});const m=(0,Ee.getColorClassName)("color",a),d=nt()({"has-text-color":a||r,[m]:m}),p=m?void 0:{color:r};return(0,ye.createElement)("figure",Ee.useBlockProps.save({className:c,style:u}),(0,ye.createElement)("blockquote",{className:d,style:p},(0,ye.createElement)(Ee.RichText.Content,{value:l,multiline:!0}),!Ee.RichText.isEmpty(i)&&(0,ye.createElement)(Ee.RichText.Content,{tagName:"cite",value:i})))},migrate(e){let{className:t,mainColor:n,customMainColor:o,customTextColor:r,...a}=e;const l=(0,Le.includes)(t,Fm);let i;return o&&(i=l?{color:{background:o}}:{border:{color:o}}),r&&i&&(i.color={...i.color,text:r}),{className:t,backgroundColor:l?n:void 0,borderColor:l?void 0:n,textAlign:l?"left":void 0,style:i,...a}}},{attributes:{...Dm,figureStyle:{source:"attribute",selector:"figure",attribute:"style"}},save(e){let{attributes:t}=e;const{mainColor:n,customMainColor:o,textColor:r,customTextColor:a,value:l,citation:i,className:s,figureStyle:c}=t;let u,m;if((0,Le.includes)(s,Fm)){const e=(0,Ee.getColorClassName)("background-color",n);u=nt()({"has-background":e||o,[e]:e}),m={backgroundColor:e?void 0:o}}else if(o)m={borderColor:o};else if(n){m={borderColor:Gm(c)}}const d=(0,Ee.getColorClassName)("color",r),p=(r||a)&&nt()("has-text-color",{[d]:d}),g=d?void 0:{color:a};return(0,ye.createElement)("figure",{className:u,style:m},(0,ye.createElement)("blockquote",{className:p,style:g},(0,ye.createElement)(Ee.RichText.Content,{value:l,multiline:!0}),!Ee.RichText.isEmpty(i)&&(0,ye.createElement)(Ee.RichText.Content,{tagName:"cite",value:i})))},migrate(e){let{className:t,figureStyle:n,mainColor:o,customMainColor:r,customTextColor:a,...l}=e;const i=(0,Le.includes)(t,Fm);let s;if(r&&(s=i?{color:{background:r}}:{border:{color:r}}),a&&s&&(s.color={...s.color,text:a}),!i&&o&&n){const e=Gm(n);if(e)return{...l,className:t,style:{border:{color:e}}}}return{className:t,backgroundColor:i?o:void 0,borderColor:i?void 0:o,textAlign:i?"left":void 0,style:s,...l}}},{attributes:Dm,save(e){let{attributes:t}=e;const{mainColor:n,customMainColor:o,textColor:r,customTextColor:a,value:l,citation:i,className:s}=t;let c,u;if((0,Le.includes)(s,Fm))c=(0,Ee.getColorClassName)("background-color",n),c||(u={backgroundColor:o});else if(o)u={borderColor:o};else if(n){const e=(0,Le.get)((0,Ie.select)(Ee.store).getSettings(),["colors"],[]);u={borderColor:(0,Ee.getColorObjectByAttributeValues)(e,n).color}}const m=(0,Ee.getColorClassName)("color",r),d=r||a?nt()("has-text-color",{[m]:m}):void 0,p=m?void 0:{color:a};return(0,ye.createElement)("figure",{className:c,style:u},(0,ye.createElement)("blockquote",{className:d,style:p},(0,ye.createElement)(Ee.RichText.Content,{value:l,multiline:!0}),!Ee.RichText.isEmpty(i)&&(0,ye.createElement)(Ee.RichText.Content,{tagName:"cite",value:i})))},migrate(e){let{className:t,mainColor:n,customMainColor:o,customTextColor:r,...a}=e;const l=(0,Le.includes)(t,Fm);let i={};return o&&(i=l?{color:{background:o}}:{border:{color:o}}),r&&i&&(i.color={...i.color,text:r}),{className:t,backgroundColor:l?n:void 0,borderColor:l?void 0:n,textAlign:l?"left":void 0,style:i,...a}}},{attributes:{...Dm},save(e){let{attributes:t}=e;const{value:n,citation:o}=t;return(0,ye.createElement)("blockquote",null,(0,ye.createElement)(Ee.RichText.Content,{value:n,multiline:!0}),!Ee.RichText.isEmpty(o)&&(0,ye.createElement)(Ee.RichText.Content,{tagName:"cite",value:o}))}},{attributes:{...Dm,citation:{type:"string",source:"html",selector:"footer"},align:{type:"string",default:"none"}},save(e){let{attributes:t}=e;const{value:n,citation:o,align:r}=t;return(0,ye.createElement)("blockquote",{className:`align${r}`},(0,ye.createElement)(Ee.RichText.Content,{value:n,multiline:!0}),!Ee.RichText.isEmpty(o)&&(0,ye.createElement)(Ee.RichText.Content,{tagName:"footer",value:o}))}}];var Om=Um;var qm=function(e){let{attributes:t,setAttributes:n,isSelected:o,insertBlocksAfter:r}=e;const{textAlign:a,citation:l,value:i}=t,s=(0,Ee.useBlockProps)({className:nt()({[`has-text-align-${a}`]:a})}),c=!Ee.RichText.isEmpty(l)||o;return(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)(Ee.BlockControls,{group:"block"},(0,ye.createElement)(Ee.AlignmentControl,{value:a,onChange:e=>{n({textAlign:e})}})),(0,ye.createElement)("figure",s,(0,ye.createElement)("blockquote",null,(0,ye.createElement)(Ee.RichText,{identifier:"value",multiline:!0,value:i,onChange:e=>n({value:e}),"aria-label":(0,we.__)("Pullquote text"),placeholder:(0,we.__)("Add quote"),textAlign:"center"}),c&&(0,ye.createElement)(Ee.RichText,{identifier:"citation",value:l,"aria-label":(0,we.__)("Pullquote citation text"),placeholder:(0,we.__)("Add citation"),onChange:e=>n({citation:e}),className:"wp-block-pullquote__citation",__unstableMobileNoFocusOnMount:!0,textAlign:"center",__unstableOnSplitAtEnd:()=>r((0,be.createBlock)("core/paragraph"))}))))};const $m={from:[{type:"block",isMultiBlock:!0,blocks:["core/paragraph"],transform:e=>(0,be.createBlock)("core/pullquote",{value:(0,Tt.toHTMLString)({value:(0,Tt.join)(e.map((e=>{let{content:t}=e;return(0,Tt.create)({html:t})})),"\u2028"),multilineTag:"p"}),anchor:e.anchor})},{type:"block",blocks:["core/heading"],transform:e=>{let{content:t,anchor:n}=e;return(0,be.createBlock)("core/pullquote",{value:`<p>${t}</p>`,anchor:n})}}],to:[{type:"block",blocks:["core/paragraph"],transform:e=>{let{value:t,citation:n}=e;const o=[];return t&&"<p></p>"!==t&&o.push(...(0,Tt.split)((0,Tt.create)({html:t,multilineTag:"p"}),"\u2028").map((e=>(0,be.createBlock)("core/paragraph",{content:(0,Tt.toHTMLString)({value:e})})))),n&&"<p></p>"!==n&&o.push((0,be.createBlock)("core/paragraph",{content:n})),0===o.length?(0,be.createBlock)("core/paragraph",{content:""}):o}},{type:"block",blocks:["core/heading"],transform:e=>{let{value:t,citation:n,...o}=e;if("<p></p>"===t)return(0,be.createBlock)("core/heading",{content:n});const r=(0,Tt.split)((0,Tt.create)({html:t,multilineTag:"p"}),"\u2028"),a=(0,be.createBlock)("core/heading",{content:(0,Tt.toHTMLString)({value:r[0]})});if(!n&&1===r.length)return a;const l=r.slice(1);return[a,(0,be.createBlock)("core/pullquote",{...o,citation:n,value:(0,Tt.toHTMLString)({value:l.length?(0,Tt.join)(r.slice(1),"\u2028"):(0,Tt.create)(),multilineTag:"p"})})]}}]};var Wm=$m;const jm={apiVersion:2,name:"core/pullquote",title:"Pullquote",category:"text",description:"Give special visual emphasis to a quote from your text.",textdomain:"default",attributes:{value:{type:"string",source:"html",selector:"blockquote",multiline:"p",__experimentalRole:"content"},citation:{type:"string",source:"html",selector:"cite",default:"",__experimentalRole:"content"},textAlign:{type:"string"}},supports:{anchor:!0,align:["left","right","wide","full"],color:{gradients:!0,background:!0,link:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0,__experimentalLetterSpacing:!0,__experimentalTextTransform:!0,__experimentalDefaultControls:{fontSize:!0,fontAppearance:!0}},__experimentalBorder:{color:!0,radius:!0,style:!0,width:!0}},editorStyle:"wp-block-pullquote-editor",style:"wp-block-pullquote"},{name:Zm}=jm,Km={icon:Am,example:{attributes:{value:"<p>"+(0,we.__)("One of the hardest things to do in technology is disrupt yourself.")+"</p>",citation:(0,we.__)("Matt Mullenweg")}},transforms:Wm,edit:qm,save:function(e){let{attributes:t}=e;const{textAlign:n,citation:o,value:r}=t,a=!Ee.RichText.isEmpty(o);return(0,ye.createElement)("figure",Ee.useBlockProps.save({className:nt()({[`has-text-align-${n}`]:n})}),(0,ye.createElement)("blockquote",null,(0,ye.createElement)(Ee.RichText.Content,{value:r,multiline:!0}),a&&(0,ye.createElement)(Ee.RichText.Content,{tagName:"cite",value:o})))},deprecated:Om};var Qm=(0,ye.createElement)(fe.SVG,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,ye.createElement)(fe.Path,{d:"M18.1823 11.6392C18.1823 13.0804 17.0139 14.2487 15.5727 14.2487C14.3579 14.2487 13.335 13.4179 13.0453 12.2922L13.0377 12.2625L13.0278 12.2335L12.3985 10.377L12.3942 10.3785C11.8571 8.64997 10.246 7.39405 8.33961 7.39405C5.99509 7.39405 4.09448 9.29465 4.09448 11.6392C4.09448 13.9837 5.99509 15.8843 8.33961 15.8843C8.88499 15.8843 9.40822 15.781 9.88943 15.5923L9.29212 14.0697C8.99812 14.185 8.67729 14.2487 8.33961 14.2487C6.89838 14.2487 5.73003 13.0804 5.73003 11.6392C5.73003 10.1979 6.89838 9.02959 8.33961 9.02959C9.55444 9.02959 10.5773 9.86046 10.867 10.9862L10.8772 10.9836L11.4695 12.7311C11.9515 14.546 13.6048 15.8843 15.5727 15.8843C17.9172 15.8843 19.8178 13.9837 19.8178 11.6392C19.8178 9.29465 17.9172 7.39404 15.5727 7.39404C15.0287 7.39404 14.5066 7.4968 14.0264 7.6847L14.6223 9.20781C14.9158 9.093 15.2358 9.02959 15.5727 9.02959C17.0139 9.02959 18.1823 10.1979 18.1823 11.6392Z"}));var Jm=(0,ye.createElement)(fe.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,ye.createElement)(fe.Path,{d:"M14.5 13.8c-1.1 0-2.1.7-2.4 1.8H4V17h8.1c.3 1 1.3 1.8 2.4 1.8s2.1-.7 2.4-1.8H20v-1.5h-3.1c-.3-1-1.3-1.7-2.4-1.7zM11.9 7c-.3-1-1.3-1.8-2.4-1.8S7.4 6 7.1 7H4v1.5h3.1c.3 1 1.3 1.8 2.4 1.8s2.1-.7 2.4-1.8H20V7h-8.1z"}));function Ym(e){let{attributes:{query:t,displayLayout:n},setQuery:o,setDisplayLayout:r}=e;const a=(0,ot.useInstanceId)(Ym,"blocks-query-pagination-max-page-input"),l=[{icon:ui,title:(0,we.__)("List view"),onClick:()=>r({type:"list"}),isActive:"list"===(null==n?void 0:n.type)},{icon:mi,title:(0,we.__)("Grid view"),onClick:()=>r({type:"flex",columns:(null==n?void 0:n.columns)||3}),isActive:"flex"===(null==n?void 0:n.type)}];return(0,ye.createElement)(ye.Fragment,null,!t.inherit&&(0,ye.createElement)(ke.ToolbarGroup,null,(0,ye.createElement)(ke.Dropdown,{contentClassName:"block-library-query-toolbar__popover",renderToggle:e=>{let{onToggle:t}=e;return(0,ye.createElement)(ke.ToolbarButton,{icon:Jm,label:(0,we.__)("Display settings"),onClick:t})},renderContent:()=>(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)(ke.BaseControl,null,(0,ye.createElement)(ke.__experimentalNumberControl,{__unstableInputWidth:"60px",label:(0,we.__)("Items per Page"),labelPosition:"edge",min:1,max:100,onChange:e=>{isNaN(e)||e<1||e>100||o({perPage:e})},step:"1",value:t.perPage,isDragEnabled:!1})),(0,ye.createElement)(ke.BaseControl,null,(0,ye.createElement)(ke.__experimentalNumberControl,{__unstableInputWidth:"60px",label:(0,we.__)("Offset"),labelPosition:"edge",min:0,max:100,onChange:e=>{isNaN(e)||e<0||e>100||o({offset:e})},step:"1",value:t.offset,isDragEnabled:!1})),(0,ye.createElement)(ke.BaseControl,{id:a,help:(0,we.__)("Limit the pages you want to show, even if the query has more results. To show all pages use 0 (zero).")},(0,ye.createElement)(ke.__experimentalNumberControl,{id:a,__unstableInputWidth:"60px",label:(0,we.__)("Max page to show"),labelPosition:"edge",min:0,onChange:e=>{isNaN(e)||e<0||o({pages:e})},step:"1",value:t.pages,isDragEnabled:!1})))})),(0,ye.createElement)(ke.ToolbarGroup,{controls:l}))}const Xm=e=>{const t=null==e?void 0:e.reduce(((e,t)=>{const{mapById:n,mapByName:o,names:r}=e;return n[t.id]=t,o[t.name]=t,r.push(t.name),e}),{mapById:{},mapByName:{},names:[]});return{terms:e,...t}};const ed=[{label:(0,we.__)("Include"),value:""},{label:(0,we.__)("Exclude"),value:"exclude"},{label:(0,we.__)("Only"),value:"only"}];function td(e){var t,n;let{attributes:{query:o,displayLayout:r},setQuery:a,setDisplayLayout:l}=e;const{order:i,orderBy:s,author:c,postType:u,sticky:m,inherit:d}=o,[p,g]=(0,ye.useState)(!0),[h,v]=(0,ye.useState)(!0),[b,y]=(0,ye.useState)("post"===u),{postTypesTaxonomiesMap:f,postTypesSelectOptions:_}=(()=>{const{postTypes:e}=(0,Ie.useSelect)((e=>{var t;const{getPostTypes:n}=e(Dt.store),o=["attachment"];return{postTypes:null===(t=n({per_page:-1}))||void 0===t?void 0:t.filter((e=>{let{viewable:t,slug:n}=e;return t&&!o.includes(n)}))}}),[]);return{postTypesTaxonomiesMap:(0,ye.useMemo)((()=>{if(null!=e&&e.length)return e.reduce(((e,t)=>(e[t.slug]=t.taxonomies,e)),{})}),[e]),postTypesSelectOptions:(0,ye.useMemo)((()=>(e||[]).map((e=>{let{labels:t,slug:n}=e;return{label:t.singular_name,value:n}}))),[e])}})(),{authorList:k,categories:w,tags:E}=(0,Ie.useSelect)((e=>{const{getEntityRecords:t}=e(Dt.store),n={per_page:100},o=t("taxonomy","category",n),r=t("taxonomy","post_tag",n);return{categories:Xm(o),tags:Xm(r),authorList:t("root","user",{per_page:-1})}}),[]);(0,ye.useEffect)((()=>{if(!f)return;const e=f[u];g(e.includes("category")),v(e.includes("post_tag"))}),[u,f]),(0,ye.useEffect)((()=>{y("post"===u)}),[u]);const C=(e,t)=>n=>{const o=Array.from(n.reduce(((t,n)=>{const o=((e,t)=>{var n;const o=(null==t?void 0:t.id)||(null===(n=e[t])||void 0===n?void 0:n.id);if(o)return o;const r=t.toLocaleLowerCase();for(const t in e)if(t.toLocaleLowerCase()===r)return e[t].id})(e.mapByName,n);return o&&t.add(o),t}),new Set));a({[t]:o})},x=C(w,"categoryIds"),S=C(E,"tagIds"),[B,T]=(0,ye.useState)(o.search),N=(0,ye.useCallback)((0,Le.debounce)((()=>{o.search!==B&&a({search:B})}),250),[B,o.search]);(0,ye.useEffect)((()=>(N(),N.cancel)),[B,N]);const z=e=>{const t={category:{queryProp:"categoryIds",terms:w},post_tag:{queryProp:"tagIds",terms:E}}[e];return(o[t.queryProp]||[]).reduce(((e,n)=>{const o=t.terms.mapById[n];return o&&e.push({id:n,value:o.name}),e}),[])};return(0,ye.createElement)(Ee.InspectorControls,null,(0,ye.createElement)(ke.PanelBody,{title:(0,we.__)("Settings")},(0,ye.createElement)(ke.ToggleControl,{label:(0,we.__)("Inherit query from template"),help:(0,we.__)("Toggle to use the global query context that is set with the current template, such as an archive or search. Disable to customize the settings independently."),checked:!!d,onChange:e=>a({inherit:!!e})}),!d&&(0,ye.createElement)(ke.SelectControl,{options:_,value:u,label:(0,we.__)("Post Type"),onChange:e=>{const t={postType:e};f[e].includes("category")||(t.categoryIds=[]),f[e].includes("post_tag")||(t.tagIds=[]),"post"!==e&&(t.sticky=""),a(t)},help:(0,we.__)('WordPress contains different types of content and they are divided into collections called "Post Types". By default there are a few different ones such as blog posts and pages, but plugins could add more.')}),"flex"===(null==r?void 0:r.type)&&(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)(ke.RangeControl,{label:(0,we.__)("Columns"),value:r.columns,onChange:e=>l({columns:e}),min:2,max:Math.max(6,r.columns)}),r.columns>6&&(0,ye.createElement)(ke.Notice,{status:"warning",isDismissible:!1},(0,we.__)("This column count exceeds the recommended amount and may cause visual breakage."))),!d&&(0,ye.createElement)(ke.QueryControls,{order:i,orderBy:s,onOrderChange:e=>a({order:e}),onOrderByChange:e=>a({orderBy:e})}),b&&(0,ye.createElement)(ke.SelectControl,{label:(0,we.__)("Sticky posts"),options:ed,value:m,onChange:e=>a({sticky:e}),help:(0,we.__)('Blog posts can be "stickied", a feature that places them at the top of the front page of posts, keeping it there until new sticky posts are published.')})),!d&&(0,ye.createElement)(ke.PanelBody,{title:(0,we.__)("Filters")},p&&(null==w||null===(t=w.terms)||void 0===t?void 0:t.length)>0&&(0,ye.createElement)(ke.FormTokenField,{label:(0,we.__)("Categories"),value:z("category"),suggestions:w.names,onChange:x}),h&&(null==E||null===(n=E.terms)||void 0===n?void 0:n.length)>0&&(0,ye.createElement)(ke.FormTokenField,{label:(0,we.__)("Tags"),value:z("post_tag"),suggestions:E.names,onChange:S}),(0,ye.createElement)(ke.QueryControls,{selectedAuthorId:c,authorList:k,onAuthorChange:e=>a({author:""!==e?+e:void 0})}),(0,ye.createElement)(ke.TextControl,{label:(0,we.__)("Keyword"),value:B,onChange:T})))}var nd=e=>{var t;let{clientId:n,name:o,attributes:r,setAttributes:a}=e;const{blockType:l,defaultVariation:i,scopeVariations:s,allVariations:c}=(0,Ie.useSelect)((e=>{const{getBlockVariations:t,getBlockType:n,getDefaultBlockVariation:r}=e(be.store);return{blockType:n(o),defaultVariation:r(o,"block"),scopeVariations:t(o,"block"),allVariations:t(o)}}),[o]),{replaceInnerBlocks:u}=(0,Ie.useDispatch)(Ee.store),m=(0,Ee.useBlockProps)(),d=(0,Ee.__experimentalGetMatchingVariation)(r,c),p=(null==d?void 0:d.icon)||(null==l||null===(t=l.icon)||void 0===t?void 0:t.src),g=(null==d?void 0:d.title)||(null==l?void 0:l.title);return(0,ye.createElement)("div",m,(0,ye.createElement)(Ee.__experimentalBlockVariationPicker,{icon:p,label:g,variations:s,onSelect:function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:i;e.attributes&&a(e.attributes),e.innerBlocks&&u(n,(0,be.createBlocksFromInnerBlocksTemplate)(e.innerBlocks),!1)}}))};const od=[["core/post-template"]];function rd(e){let{attributes:t,setAttributes:n}=e;const{queryId:o,query:r,displayLayout:a,tagName:l="div",layout:i={}}=t,{__unstableMarkNextChangeAsNotPersistent:s}=(0,Ie.useDispatch)(Ee.store),c=(0,ot.useInstanceId)(rd),{themeSupportsLayout:u}=(0,Ie.useSelect)((e=>{var t;const{getSettings:n}=e(Ee.store);return{themeSupportsLayout:null===(t=n())||void 0===t?void 0:t.supportsLayout}}),[]),m=(0,Ee.useSetting)("layout")||{},d=i&&i.inherit?m:i,p=(0,Ee.useBlockProps)(),g=(0,Ee.useInnerBlocksProps)(p,{template:od,__experimentalLayout:u?d:void 0}),{postsPerPage:h}=(0,Ie.useSelect)((e=>{const{getSettings:t}=e(Ee.store);return{postsPerPage:+t().postsPerPage||3}}),[]);(0,ye.useEffect)((()=>{const e={};!r.perPage&&h&&(e.perPage=h),Object.keys(e).length&&(s(),v(e))}),[r.perPage]),(0,ye.useEffect)((()=>{o||(s(),n({queryId:c}))}),[o,c]);const v=e=>n({query:{...r,...e}}),b=e=>n({displayLayout:{...a,...e}});return(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)(td,{attributes:t,setQuery:v,setDisplayLayout:b}),(0,ye.createElement)(Ee.BlockControls,null,(0,ye.createElement)(Ym,{attributes:t,setQuery:v,setDisplayLayout:b})),(0,ye.createElement)(Ee.InspectorControls,{__experimentalGroup:"advanced"},(0,ye.createElement)(ke.SelectControl,{label:(0,we.__)("HTML element"),options:[{label:(0,we.__)("Default (<div>)"),value:"div"},{label:"<main>",value:"main"},{label:"<section>",value:"section"},{label:"<aside>",value:"aside"}],value:l,onChange:e=>n({tagName:e})})),(0,ye.createElement)(l,g))}function ad(e){const{clientId:t,name:n}=e,o=(0,Ee.useBlockProps)(),{replaceBlock:r,selectBlock:a}=(0,Ie.useDispatch)(Ee.store);return(0,ye.createElement)("div",o,(0,ye.createElement)(Ee.__experimentalBlockPatternSetup,{blockName:n,clientId:t,startBlankComponent:(0,ye.createElement)(nd,e),onBlockPatternSelect:e=>{const n=e.map((e=>(0,be.cloneBlock)(e))),o=(e=>{const t=[...e];for(;t.length>0;){var n;const e=t.shift();if("core/query"===e.name)return e.clientId;null===(n=e.innerBlocks)||void 0===n||n.forEach((e=>{t.push(e)}))}})(n);r(t,n),o&&a(o)}}))}var ld=e=>{const{clientId:t}=e,n=(0,Ie.useSelect)((e=>!!e(Ee.store).getBlocks(t).length),[t])?rd:ad;return(0,ye.createElement)(n,e)};const id=(0,ye.createElement)(ke.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,ye.createElement)(ke.Path,{d:"M41 9H7v3h34V9zm-22 5H7v1h12v-1zM7 26h12v1H7v-1zm34-5H7v3h34v-3zM7 38h12v1H7v-1zm34-5H7v3h34v-3z"})),sd=(0,ye.createElement)(ke.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,ye.createElement)(ke.Path,{d:"M41 9H7v3h34V9zm-4 5H7v1h30v-1zm4 3H7v1h34v-1zM7 20h30v1H7v-1zm0 12h30v1H7v-1zm34 3H7v1h34v-1zM7 38h30v1H7v-1zm34-11H7v3h34v-3z"})),cd=(0,ye.createElement)(ke.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,ye.createElement)(ke.Path,{d:"M41 9H7v3h34V9zm-22 5H7v1h12v-1zm22 3H7v1h34v-1zM7 20h34v1H7v-1zm0 12h12v1H7v-1zm34 3H7v1h34v-1zM7 38h34v1H7v-1zm34-11H7v3h34v-3z"})),ud=(0,ye.createElement)(ke.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48"},(0,ye.createElement)(ke.Path,{d:"M7 9h34v6H7V9zm12 8H7v1h12v-1zm18 3H7v1h30v-1zm0 18H7v1h30v-1zM7 35h12v1H7v-1zm34-8H7v6h34v-6z"})),md={query:{perPage:3,pages:0,offset:0,postType:"post",categoryIds:[],tagIds:[],order:"desc",orderBy:"date",author:"",search:"",exclude:[],sticky:"",inherit:!1}};var dd=[{name:"posts-list",title:(0,we.__)("Posts List"),description:(0,we.__)("Display a list of your most recent posts, excluding sticky posts."),icon:li,attributes:{query:{perPage:4,pages:1,offset:0,postType:"post",categoryIds:[],tagIds:[],order:"desc",orderBy:"date",author:"",search:"",sticky:"exclude",inherit:!1}},scope:["inserter"]},{name:"title-date",title:(0,we.__)("Title & Date"),icon:id,attributes:{...md},innerBlocks:[["core/post-template",{},[["core/post-title"],["core/post-date"]]],["core/query-pagination"]],scope:["block"]},{name:"title-excerpt",title:(0,we.__)("Title & Excerpt"),icon:sd,attributes:{...md},innerBlocks:[["core/post-template",{},[["core/post-title"],["core/post-excerpt"]]],["core/query-pagination"]],scope:["block"]},{name:"title-date-excerpt",title:(0,we.__)("Title, Date, & Excerpt"),icon:cd,attributes:{...md},innerBlocks:[["core/post-template",{},[["core/post-title"],["core/post-date"],["core/post-excerpt"]]],["core/query-pagination"]],scope:["block"]},{name:"image-date-title",title:(0,we.__)("Image, Date, & Title"),icon:ud,attributes:{...md},innerBlocks:[["core/post-template",{},[["core/post-featured-image"],["core/post-date"],["core/post-title"]]],["core/query-pagination"]],scope:["block"]}];const pd=[{attributes:{queryId:{type:"number"},query:{type:"object",default:{perPage:null,pages:0,offset:0,postType:"post",categoryIds:[],tagIds:[],order:"desc",orderBy:"date",author:"",search:"",exclude:[],sticky:"",inherit:!0}},layout:{type:"object",default:{type:"list"}}},supports:{html:!1},migrate:e=>({...(0,Le.omit)(e,["layout"]),displayLayout:e.layout}),save:()=>(0,ye.createElement)(Ee.InnerBlocks.Content,null)}];var gd=pd;const hd=e=>{let{attributes:{query:{postType:t}={}}={}}=e;if(!t)return null;const n=(0,Dr.addQueryArgs)("post-new.php",{post_type:t});return(0,ye.createElement)("div",{className:"wp-block-query__create-new-link"},(0,ye.createInterpolateElement)((0,we.__)("<a>Create a new post</a> for this feed."),{a:(0,ye.createElement)("a",{href:n})}))};var vd=(0,ot.createHigherOrderComponent)((e=>t=>{const{name:n,isSelected:o}=t;return"core/query"===n&&o?(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)(Ee.InspectorControls,null,(0,ye.createElement)(hd,t)),(0,ye.createElement)(e,gt({key:"edit"},t))):(0,ye.createElement)(e,gt({key:"edit"},t))}),"withInspectorControls");const bd={apiVersion:2,name:"core/query",title:"Query Loop",category:"theme",description:"An advanced block that allows displaying post types based on different query parameters and visual configurations.",textdomain:"default",attributes:{queryId:{type:"number"},query:{type:"object",default:{perPage:null,pages:0,offset:0,postType:"post",categoryIds:[],tagIds:[],order:"desc",orderBy:"date",author:"",search:"",exclude:[],sticky:"",inherit:!0}},tagName:{type:"string",default:"div"},displayLayout:{type:"object",default:{type:"list"}}},providesContext:{queryId:"queryId",query:"query",displayLayout:"displayLayout"},supports:{align:["wide","full"],html:!1,color:{gradients:!0,link:!0},__experimentalLayout:!0},editorStyle:"wp-block-query-editor"},{name:yd}=bd,fd={icon:Qm,edit:ld,save:function(e){let{attributes:{tagName:t="div"}}=e;const n=Ee.useBlockProps.save(),o=Ee.useInnerBlocksProps.save(n);return(0,ye.createElement)(t,o)},variations:dd,deprecated:gd};(0,ja.addFilter)("editor.BlockEdit","core/query",vd);var _d=(0,ye.createElement)(fe.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,ye.createElement)(fe.Rect,{x:"4",y:"10.5",width:"6",height:"3",rx:"1.5",fill:"#000"}),(0,ye.createElement)(fe.Rect,{x:"12",y:"10.5",width:"3",height:"3",rx:"1.5",fill:"#000"}),(0,ye.createElement)(fe.Rect,{x:"17",y:"10.5",width:"3",height:"3",rx:"1.5",fill:"#000"}));function kd(e){let{value:t,onChange:n}=e;return(0,ye.createElement)(ke.__experimentalToggleGroupControl,{label:(0,we.__)("Arrow"),value:t,onChange:n,help:(0,we.__)("A decorative arrow appended to the next and previous page link."),isBlock:!0},(0,ye.createElement)(ke.__experimentalToggleGroupControlOption,{value:"none",label:(0,we._x)("None","Arrow option for Query Pagination Next/Previous blocks")}),(0,ye.createElement)(ke.__experimentalToggleGroupControlOption,{value:"arrow",label:(0,we._x)("Arrow","Arrow option for Query Pagination Next/Previous blocks")}),(0,ye.createElement)(ke.__experimentalToggleGroupControlOption,{value:"chevron",label:(0,we._x)("Chevron","Arrow option for Query Pagination Next/Previous blocks")}))}const wd=[["core/query-pagination-previous"],["core/query-pagination-numbers"],["core/query-pagination-next"]];var Ed=[{save:()=>(0,ye.createElement)("div",Ee.useBlockProps.save(),(0,ye.createElement)(Ee.InnerBlocks.Content,null))}];const Cd={apiVersion:2,name:"core/query-pagination",title:"Pagination",category:"design",parent:["core/query"],description:"Displays a paginated navigation to next/previous set of posts, when applicable.",textdomain:"default",attributes:{paginationArrow:{type:"string",default:"none"}},usesContext:["queryId","query"],providesContext:{paginationArrow:"paginationArrow"},supports:{align:!0,reusable:!1,html:!1,color:{gradients:!0,link:!0},__experimentalLayout:{allowSwitching:!1,allowInheriting:!1,default:{type:"flex"}}},editorStyle:"wp-block-query-pagination-editor",style:"wp-block-query-pagination"},{name:xd}=Cd,Sd={icon:_d,edit:function(e){let{attributes:{paginationArrow:t,layout:n},setAttributes:o,clientId:r,name:a}=e;const l=n||(e=>{const t=(0,be.getBlockSupport)(e,"__experimentalLayout");return null==t?void 0:t.default})(a),i=(0,Ie.useSelect)((e=>{const{getBlocks:t}=e(Ee.store),n=t(r);return null==n?void 0:n.find((e=>["core/query-pagination-next","core/query-pagination-previous"].includes(e.name)))}),[]),s=(0,Ee.useBlockProps)(),c=(0,Ee.useInnerBlocksProps)(s,{template:wd,allowedBlocks:["core/query-pagination-previous","core/query-pagination-numbers","core/query-pagination-next"],__experimentalLayout:l});return(0,ye.createElement)(ye.Fragment,null,i&&(0,ye.createElement)(Ee.InspectorControls,null,(0,ye.createElement)(ke.PanelBody,{title:(0,we.__)("Settings")},(0,ye.createElement)(kd,{value:t,onChange:e=>{o({paginationArrow:e})}}))),(0,ye.createElement)("div",c))},save:function(){return(0,ye.createElement)(Ee.InnerBlocks.Content,null)},deprecated:Ed};var Bd=(0,ye.createElement)(fe.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,ye.createElement)(fe.Rect,{x:"6",y:"10.5",width:"3",height:"3",rx:"1.5",fill:"#000"}),(0,ye.createElement)(fe.Rect,{x:"11",y:"10.5",width:"3",height:"3",rx:"1.5",fill:"#000"}),(0,ye.createElement)(fe.Path,{d:"M16.5 9.5L19 12l-2.5 2.5",stroke:"#1E1E1E",strokeWidth:"1.5"}));const Td={none:"",arrow:"",chevron:"»"};const Nd={apiVersion:2,name:"core/query-pagination-next",title:"Next Page",category:"design",parent:["core/query-pagination"],description:"Displays the next posts page link.",textdomain:"default",attributes:{label:{type:"string"}},usesContext:["queryId","query","paginationArrow"],supports:{reusable:!1,html:!1,color:{gradients:!0,text:!1},typography:{fontSize:!0,lineHeight:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0,__experimentalLetterSpacing:!0,__experimentalTextTransform:!0,__experimentalDefaultControls:{fontSize:!0}}}},{name:zd}=Nd,Pd={icon:Bd,edit:function(e){let{attributes:{label:t},setAttributes:n,context:{paginationArrow:o}}=e;const r=Td[o];return(0,ye.createElement)("a",gt({href:"#pagination-next-pseudo-link",onClick:e=>e.preventDefault()},(0,Ee.useBlockProps)()),(0,ye.createElement)(Ee.PlainText,{__experimentalVersion:2,tagName:"span","aria-label":(0,we.__)("Next page link"),placeholder:(0,we.__)("Next Page"),value:t,onChange:e=>n({label:e})}),r&&(0,ye.createElement)("span",{className:`wp-block-query-pagination-next-arrow is-arrow-${o}`},r))}};var Id=(0,ye.createElement)(fe.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,ye.createElement)(fe.Rect,{x:"4",y:"10.5",width:"6",height:"3",rx:"1.5",fill:"#000"}),(0,ye.createElement)(fe.Path,{d:"M13.5 14v-4l-1.5.5",stroke:"#1E1E1E"}),(0,ye.createElement)(fe.Path,{d:"M19.266 9.805c-.473-.611-1.22-.51-1.702-.367a3.854 3.854 0 00-.718.307l.13 1.082c.192-.17.47-.422.782-.515.34-.1.578.025.668.141.21.27-.034.835-.16 1.055-.49.85-.93 1.594-1.45 2.492H19.5v-1h-.914c.277-.574.814-1.443.914-2.106.052-.343.02-.762-.234-1.09z",fill:"#1E1E1E"}));const Md=function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"a",n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"";return(0,ye.createElement)(t,{className:`page-numbers ${n}`},e)};const Rd={apiVersion:2,name:"core/query-pagination-numbers",title:"Page Numbers",category:"design",parent:["core/query-pagination"],description:"Displays a list of page numbers for pagination",textdomain:"default",usesContext:["queryId","query"],supports:{reusable:!1,html:!1},editorStyle:"query-pagination-numbers-editor"},{name:Ld}=Rd,Vd={icon:Id,edit:function(){const e=(0,ye.createElement)(ye.Fragment,null,Md(1),Md(2),Md(3,"span","current"),Md(4),Md(5),Md("...","span","dots"),Md(8));return(0,ye.createElement)("div",(0,Ee.useBlockProps)(),e)}};var Hd=(0,ye.createElement)(fe.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,ye.createElement)(fe.Rect,{x:"18",y:"13.5",width:"3",height:"3",rx:"1.5",transform:"rotate(-180 18 13.5)",fill:"#000"}),(0,ye.createElement)(fe.Rect,{x:"13",y:"13.5",width:"3",height:"3",rx:"1.5",transform:"rotate(-180 13 13.5)",fill:"#000"}),(0,ye.createElement)(fe.Path,{d:"M7.5 14.5L5 12l2.5-2.5",stroke:"#1E1E1E",strokeWidth:"1.5"}));const Ad={none:"",arrow:"",chevron:"«"};const Fd={apiVersion:2,name:"core/query-pagination-previous",title:"Previous Page",category:"design",parent:["core/query-pagination"],description:"Displays the previous posts page link.",textdomain:"default",attributes:{label:{type:"string"}},usesContext:["queryId","query","paginationArrow"],supports:{reusable:!1,html:!1,color:{gradients:!0,text:!1},typography:{fontSize:!0,lineHeight:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0,__experimentalLetterSpacing:!0,__experimentalTextTransform:!0,__experimentalDefaultControls:{fontSize:!0}}}},{name:Dd}=Fd,Gd={icon:Hd,edit:function(e){let{attributes:{label:t},setAttributes:n,context:{paginationArrow:o}}=e;const r=Ad[o];return(0,ye.createElement)("a",gt({href:"#pagination-previous-pseudo-link",onClick:e=>e.preventDefault()},(0,Ee.useBlockProps)()),r&&(0,ye.createElement)("span",{className:`wp-block-query-pagination-previous-arrow is-arrow-${o}`},r),(0,ye.createElement)(Ee.PlainText,{__experimentalVersion:2,tagName:"span","aria-label":(0,we.__)("Previous page link"),placeholder:(0,we.__)("Previous Page"),value:t,onChange:e=>n({label:e})}))}},Ud=["archive"];var Od=(0,ye.createElement)(fe.SVG,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,ye.createElement)(fe.Path,{stroke:"#1E1E1E",strokeWidth:"1.5",d:"M4 19.25h9M4 15.25h16"}),(0,ye.createElement)(fe.Path,{d:"M8.994 10.103H6.08L5.417 12H4l2.846-8h1.383l2.845 8H9.657l-.663-1.897zm-.457-1.28l-.994-2.857-1.006 2.857h2z",fill:"#1E1E1E"}));const qd=[{isDefault:!0,name:"archive-title",title:(0,we.__)("Archive Title"),description:(0,we.__)("Display the archive title based on the queried object."),icon:Od,attributes:{type:"archive"},scope:["inserter"]}];qd.forEach((e=>{e.isActive||(e.isActive=(e,t)=>e.type===t.type)}));var $d=qd;var Wd=[{attributes:{type:{type:"string"},textAlign:{type:"string"},level:{type:"number",default:1}},supports:{align:["wide","full"],html:!1,color:{gradients:!0},spacing:{margin:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0}},save:()=>null,migrate:lt,isEligible(e){var t;let{style:n}=e;return null==n||null===(t=n.typography)||void 0===t?void 0:t.fontFamily}}];const jd={apiVersion:2,name:"core/query-title",title:"Query Title",category:"theme",description:"Display the query title.",textdomain:"default",attributes:{type:{type:"string"},textAlign:{type:"string"},level:{type:"number",default:1}},supports:{align:["wide","full"],html:!1,color:{gradients:!0},spacing:{margin:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0,__experimentalLetterSpacing:!0,__experimentalTextTransform:!0,__experimentalDefaultControls:{fontSize:!0,fontAppearance:!0,textTransform:!0}}},editorStyle:"wp-block-query-title-editor"},{name:Zd}=jd,Kd={edit:function(e){let{attributes:{type:t,level:n,textAlign:o},setAttributes:r}=e;const a=`h${n}`,l=(0,Ee.useBlockProps)({className:nt()({[`has-text-align-${o}`]:o,"wp-block-query-title__placeholder":"archive"===t})});if(!Ud.includes(t))return(0,ye.createElement)("div",l,(0,ye.createElement)(Ee.Warning,null,(0,we.__)("Provided type is not supported.")));let i;return"archive"===t&&(i=(0,ye.createElement)(a,l,(0,we.__)("Archive title"))),(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)(Ee.BlockControls,{group:"block"},(0,ye.createElement)(wl,{selectedLevel:n,onChange:e=>r({level:e})}),(0,ye.createElement)(Ee.AlignmentControl,{value:o,onChange:e=>{r({textAlign:e})}})),i)},variations:$d,deprecated:Wd};var Qd=(0,ye.createElement)(fe.SVG,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,ye.createElement)(fe.Path,{d:"M13 6v6h5.2v4c0 .8-.2 1.4-.5 1.7-.6.6-1.6.6-2.5.5h-.3v1.5h.5c1 0 2.3-.1 3.3-1 .6-.6 1-1.6 1-2.8V6H13zm-9 6h5.2v4c0 .8-.2 1.4-.5 1.7-.6.6-1.6.6-2.5.5h-.3v1.5h.5c1 0 2.3-.1 3.3-1 .6-.6 1-1.6 1-2.8V6H4v6z"}));const Jd={value:{type:"string",source:"html",selector:"blockquote",multiline:"p",default:""},citation:{type:"string",source:"html",selector:"cite",default:""},align:{type:"string"}},Yd=[{attributes:Jd,save(e){let{attributes:t}=e;const{align:n,value:o,citation:r}=t;return(0,ye.createElement)("blockquote",{style:{textAlign:n||null}},(0,ye.createElement)(Ee.RichText.Content,{multiline:!0,value:o}),!Ee.RichText.isEmpty(r)&&(0,ye.createElement)(Ee.RichText.Content,{tagName:"cite",value:r}))}},{attributes:{...Jd,style:{type:"number",default:1}},migrate:e=>2===e.style?{...(0,Le.omit)(e,["style"]),className:e.className?e.className+" is-style-large":"is-style-large"}:e,save(e){let{attributes:t}=e;const{align:n,value:o,citation:r,style:a}=t;return(0,ye.createElement)("blockquote",{className:2===a?"is-large":"",style:{textAlign:n||null}},(0,ye.createElement)(Ee.RichText.Content,{multiline:!0,value:o}),!Ee.RichText.isEmpty(r)&&(0,ye.createElement)(Ee.RichText.Content,{tagName:"cite",value:r}))}},{attributes:{...Jd,citation:{type:"string",source:"html",selector:"footer",default:""},style:{type:"number",default:1}},migrate:e=>isNaN(parseInt(e.style))?e:{...(0,Le.omit)(e,["style"])},save(e){let{attributes:t}=e;const{align:n,value:o,citation:r,style:a}=t;return(0,ye.createElement)("blockquote",{className:`blocks-quote-style-${a}`,style:{textAlign:n||null}},(0,ye.createElement)(Ee.RichText.Content,{multiline:!0,value:o}),!Ee.RichText.isEmpty(r)&&(0,ye.createElement)(Ee.RichText.Content,{tagName:"footer",value:r}))}}];var Xd=Yd;const ep="web"===ye.Platform.OS;const tp={from:[{type:"block",isMultiBlock:!0,blocks:["core/paragraph"],transform:e=>(0,be.createBlock)("core/quote",{value:(0,Tt.toHTMLString)({value:(0,Tt.join)(e.map((e=>{let{content:t}=e;return(0,Tt.create)({html:t})})),"\u2028"),multilineTag:"p"}),anchor:e.anchor})},{type:"block",blocks:["core/heading"],transform:e=>{let{content:t,anchor:n}=e;return(0,be.createBlock)("core/quote",{value:`<p>${t}</p>`,anchor:n})}},{type:"block",blocks:["core/pullquote"],transform:e=>{let{value:t,citation:n,anchor:o}=e;return(0,be.createBlock)("core/quote",{value:t,citation:n,anchor:o})}},{type:"prefix",prefix:">",transform:e=>(0,be.createBlock)("core/quote",{value:`<p>${e}</p>`})},{type:"raw",isMatch:e=>{const t=(()=>{let e=!1;return t=>"P"===t.nodeName||(e||"CITE"!==t.nodeName?void 0:(e=!0,!0))})();return"BLOCKQUOTE"===e.nodeName&&Array.from(e.childNodes).every(t)},schema:e=>{let{phrasingContentSchema:t}=e;return{blockquote:{children:{p:{children:t},cite:{children:t}}}}}}],to:[{type:"block",blocks:["core/paragraph"],transform:e=>{let{value:t,citation:n}=e;const o=[];return t&&"<p></p>"!==t&&o.push(...(0,Tt.split)((0,Tt.create)({html:t,multilineTag:"p"}),"\u2028").map((e=>(0,be.createBlock)("core/paragraph",{content:(0,Tt.toHTMLString)({value:e})})))),n&&"<p></p>"!==n&&o.push((0,be.createBlock)("core/paragraph",{content:n})),0===o.length?(0,be.createBlock)("core/paragraph",{content:""}):o}},{type:"block",blocks:["core/heading"],transform:e=>{let{value:t,citation:n,...o}=e;if("<p></p>"===t)return(0,be.createBlock)("core/heading",{content:n});const r=(0,Tt.split)((0,Tt.create)({html:t,multilineTag:"p"}),"\u2028"),a=(0,be.createBlock)("core/heading",{content:(0,Tt.toHTMLString)({value:r[0]})});if(!n&&1===r.length)return a;const l=r.slice(1);return[a,(0,be.createBlock)("core/quote",{...o,citation:n,value:(0,Tt.toHTMLString)({value:l.length?(0,Tt.join)(r.slice(1),"\u2028"):(0,Tt.create)(),multilineTag:"p"})})]}},{type:"block",blocks:["core/pullquote"],transform:e=>{let{value:t,citation:n,anchor:o}=e;return(0,be.createBlock)("core/pullquote",{value:t,citation:n,anchor:o})}}]};var np=tp;const op={apiVersion:2,name:"core/quote",title:"Quote",category:"text",description:'Give quoted text visual emphasis. "In quoting others, we cite ourselves." Julio Cortázar',keywords:["blockquote","cite"],textdomain:"default",attributes:{value:{type:"string",source:"html",selector:"blockquote",multiline:"p",default:"",__experimentalRole:"content"},citation:{type:"string",source:"html",selector:"cite",default:"",__experimentalRole:"content"},align:{type:"string"}},supports:{anchor:!0,__experimentalSlashInserter:!0,typography:{fontSize:!0,lineHeight:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0,__experimentalLetterSpacing:!0,__experimentalTextTransform:!0,__experimentalDefaultControls:{fontSize:!0,fontAppearance:!0}}},styles:[{name:"default",label:"Default",isDefault:!0},{name:"plain",label:"Plain"},{name:"large",label:"Large"}],editorStyle:"wp-block-quote-editor",style:"wp-block-quote"},{name:rp}=op,ap={icon:Qd,example:{attributes:{value:"<p>"+(0,we.__)("In quoting others, we cite ourselves.")+"</p>",citation:"Julio Cortázar",className:"is-style-large"}},transforms:np,edit:function(e){let{attributes:t,setAttributes:n,isSelected:o,mergeBlocks:r,onReplace:a,className:l,insertBlocksAfter:i,style:s}=e;const{align:c,value:u,citation:m}=t,d=(0,Ee.useBlockProps)({className:nt()(l,{[`has-text-align-${c}`]:c}),style:s});return(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)(Ee.BlockControls,{group:"block"},(0,ye.createElement)(Ee.AlignmentControl,{value:c,onChange:e=>{n({align:e})}})),(0,ye.createElement)(ke.BlockQuotation,d,(0,ye.createElement)(Ee.RichText,{identifier:"value",multiline:!0,value:u,onChange:e=>n({value:e}),onMerge:r,onRemove:e=>{const t=!m||0===m.length;!e&&t&&a([])},"aria-label":(0,we.__)("Quote text"),placeholder:(0,we.__)("Add quote"),onReplace:a,onSplit:e=>(0,be.createBlock)("core/quote",{...t,value:e}),__unstableOnSplitMiddle:()=>(0,be.createBlock)("core/paragraph"),textAlign:c}),(!Ee.RichText.isEmpty(m)||o)&&(0,ye.createElement)(Ee.RichText,{identifier:"citation",tagName:ep?"cite":void 0,style:{display:"block"},value:m,onChange:e=>n({citation:e}),__unstableMobileNoFocusOnMount:!0,"aria-label":(0,we.__)("Quote citation text"),placeholder:(0,we.__)("Add citation"),className:"wp-block-quote__citation",textAlign:c,__unstableOnSplitAtEnd:()=>i((0,be.createBlock)("core/paragraph"))})))},save:function(e){let{attributes:t}=e;const{align:n,value:o,citation:r}=t,a=nt()({[`has-text-align-${n}`]:n});return(0,ye.createElement)("blockquote",Ee.useBlockProps.save({className:a}),(0,ye.createElement)(Ee.RichText.Content,{multiline:!0,value:o}),!Ee.RichText.isEmpty(r)&&(0,ye.createElement)(Ee.RichText.Content,{tagName:"cite",value:r}))},merge(e,t){let{value:n,citation:o}=t;return o||(o=e.citation),n&&"<p></p>"!==n?{...e,value:e.value+n,citation:o}:{...e,citation:o}},deprecated:Xd};var lp=(0,ye.createElement)(fe.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,ye.createElement)(fe.Path,{d:"M21.3 10.8l-5.6-5.6c-.7-.7-1.8-.7-2.5 0l-5.6 5.6c-.7.7-.7 1.8 0 2.5l5.6 5.6c.3.3.8.5 1.2.5s.9-.2 1.2-.5l5.6-5.6c.8-.7.8-1.9.1-2.5zm-1 1.4l-5.6 5.6c-.1.1-.3.1-.4 0l-5.6-5.6c-.1-.1-.1-.3 0-.4l5.6-5.6s.1-.1.2-.1.1 0 .2.1l5.6 5.6c.1.1.1.3 0 .4zm-16.6-.4L10 5.5l-1-1-6.3 6.3c-.7.7-.7 1.8 0 2.5L9 19.5l1.1-1.1-6.3-6.3c-.2 0-.2-.2-.1-.3z"})),ip=window.wp.reusableBlocks;var sp=(0,ye.createElement)(fe.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,ye.createElement)(fe.Path,{d:"M18 4h-7c-1.1 0-2 .9-2 2v7c0 1.1.9 2 2 2h7c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm.5 9c0 .3-.2.5-.5.5h-7c-.3 0-.5-.2-.5-.5V6c0-.3.2-.5.5-.5h7c.3 0 .5.2.5.5v7zm-5 5c0 .3-.2.5-.5.5H6c-.3 0-.5-.2-.5-.5v-7c0-.3.2-.5.5-.5h1V9H6c-1.1 0-2 .9-2 2v7c0 1.1.9 2 2 2h7c1.1 0 2-.9 2-2v-1h-1.5v1z"}));const cp={apiVersion:2,name:"core/block",title:"Reusable block",category:"reusable",description:"Create and save content to reuse across your site. Update the block, and the changes apply everywhere its used.",textdomain:"default",attributes:{ref:{type:"number"}},supports:{customClassName:!1,html:!1,inserter:!1},editorStyle:"wp-block-editor"},{name:up}=cp,mp={edit:function(e){let{attributes:{ref:t},clientId:n}=e;const[o,r]=(0,Ee.__experimentalUseNoRecursiveRenders)(t),{isMissing:a,hasResolved:l}=(0,Ie.useSelect)((e=>{const n=e(Dt.store).getEntityRecord("postType","wp_block",t),o=e(Dt.store).hasFinishedResolution("getEntityRecord",["postType","wp_block",t]);return{hasResolved:o,isMissing:o&&!n}}),[t,n]),{__experimentalConvertBlockToStatic:i}=(0,Ie.useDispatch)(ip.store),[s,c,u]=(0,Dt.useEntityBlockEditor)("postType","wp_block",{id:t}),[m,d]=(0,Dt.useEntityProp)("postType","wp_block","title",t),p=(0,Ee.useBlockProps)(),g=(0,Ee.useInnerBlocksProps)({},{value:s,onInput:c,onChange:u,renderAppender:null!=s&&s.length?void 0:Ee.InnerBlocks.ButtonBlockAppender});return o?(0,ye.createElement)("div",p,(0,ye.createElement)(Ee.Warning,null,(0,we.__)("Block cannot be rendered inside itself."))):a?(0,ye.createElement)("div",p,(0,ye.createElement)(Ee.Warning,null,(0,we.__)("Block has been deleted or is unavailable."))):l?(0,ye.createElement)(r,null,(0,ye.createElement)("div",p,(0,ye.createElement)(Ee.BlockControls,null,(0,ye.createElement)(ke.ToolbarGroup,null,(0,ye.createElement)(ke.ToolbarButton,{onClick:()=>i(n),label:(0,we.__)("Convert to regular blocks"),icon:sp,showTooltip:!0}))),(0,ye.createElement)(Ee.InspectorControls,null,(0,ye.createElement)(ke.PanelBody,null,(0,ye.createElement)(ke.TextControl,{label:(0,we.__)("Name"),value:m,onChange:d}))),(0,ye.createElement)(Ee.__experimentalBlockContentOverlay,{clientId:n,wrapperProps:g,className:"block-library-block__reusable-block-container"}))):(0,ye.createElement)("div",p,(0,ye.createElement)(ke.Placeholder,null,(0,ye.createElement)(ke.Spinner,null)))},icon:lp};var dp=(0,ye.createElement)(fe.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,ye.createElement)(fe.Path,{d:"M5 10.2h-.8v1.5H5c1.9 0 3.8.8 5.1 2.1 1.4 1.4 2.1 3.2 2.1 5.1v.8h1.5V19c0-2.3-.9-4.5-2.6-6.2-1.6-1.6-3.8-2.6-6.1-2.6zm10.4-1.6C12.6 5.8 8.9 4.2 5 4.2h-.8v1.5H5c3.5 0 6.9 1.4 9.4 3.9s3.9 5.8 3.9 9.4v.8h1.5V19c0-3.9-1.6-7.6-4.4-10.4zM4 20h3v-3H4v3z"}));const pp={apiVersion:2,name:"core/rss",title:"RSS",category:"widgets",description:"Display entries from any RSS or Atom feed.",keywords:["atom","feed"],textdomain:"default",attributes:{columns:{type:"number",default:2},blockLayout:{type:"string",default:"list"},feedURL:{type:"string",default:""},itemsToShow:{type:"number",default:5},displayExcerpt:{type:"boolean",default:!1},displayAuthor:{type:"boolean",default:!1},displayDate:{type:"boolean",default:!1},excerptLength:{type:"number",default:55}},supports:{align:!0,html:!1},editorStyle:"wp-block-rss-editor",style:"wp-block-rss"},{name:gp}=pp,hp={icon:dp,example:{attributes:{feedURL:"https://wordpress.org"}},edit:function(e){let{attributes:t,setAttributes:n}=e;const[o,r]=(0,ye.useState)(!t.feedURL),{blockLayout:a,columns:l,displayAuthor:i,displayDate:s,displayExcerpt:c,excerptLength:u,feedURL:m,itemsToShow:d}=t;function p(e){return()=>{const o=t[e];n({[e]:!o})}}const g=(0,Ee.useBlockProps)();if(o)return(0,ye.createElement)("div",g,(0,ye.createElement)(ke.Placeholder,{icon:dp,label:"RSS"},(0,ye.createElement)("form",{onSubmit:function(e){e.preventDefault(),m&&r(!1)},className:"wp-block-rss__placeholder-form"},(0,ye.createElement)(ke.TextControl,{placeholder:(0,we.__)("Enter URL here"),value:m,onChange:e=>n({feedURL:e}),className:"wp-block-rss__placeholder-input"}),(0,ye.createElement)(ke.Button,{variant:"primary",type:"submit"},(0,we.__)("Use URL")))));const h=[{icon:$o,title:(0,we.__)("Edit RSS URL"),onClick:()=>r(!0)},{icon:ui,title:(0,we.__)("List view"),onClick:()=>n({blockLayout:"list"}),isActive:"list"===a},{icon:mi,title:(0,we.__)("Grid view"),onClick:()=>n({blockLayout:"grid"}),isActive:"grid"===a}];return(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)(Ee.BlockControls,null,(0,ye.createElement)(ke.ToolbarGroup,{controls:h})),(0,ye.createElement)(Ee.InspectorControls,null,(0,ye.createElement)(ke.PanelBody,{title:(0,we.__)("RSS settings")},(0,ye.createElement)(ke.RangeControl,{label:(0,we.__)("Number of items"),value:d,onChange:e=>n({itemsToShow:e}),min:1,max:10,required:!0}),(0,ye.createElement)(ke.ToggleControl,{label:(0,we.__)("Display author"),checked:i,onChange:p("displayAuthor")}),(0,ye.createElement)(ke.ToggleControl,{label:(0,we.__)("Display date"),checked:s,onChange:p("displayDate")}),(0,ye.createElement)(ke.ToggleControl,{label:(0,we.__)("Display excerpt"),checked:c,onChange:p("displayExcerpt")}),c&&(0,ye.createElement)(ke.RangeControl,{label:(0,we.__)("Max number of words in excerpt"),value:u,onChange:e=>n({excerptLength:e}),min:10,max:100,required:!0}),"grid"===a&&(0,ye.createElement)(ke.RangeControl,{label:(0,we.__)("Columns"),value:l,onChange:e=>n({columns:e}),min:2,max:6,required:!0}))),(0,ye.createElement)("div",g,(0,ye.createElement)(ke.Disabled,null,(0,ye.createElement)(xe(),{block:"core/rss",attributes:t}))))}},vp=(0,ye.createElement)(ke.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,ye.createElement)(ke.Rect,{x:"7",y:"10",width:"10",height:"4",rx:"1",fill:"currentColor"})),bp=(0,ye.createElement)(ke.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,ye.createElement)(ke.Rect,{x:"4.75",y:"15.25",width:"6.5",height:"9.5",transform:"rotate(-90 4.75 15.25)",stroke:"currentColor",strokeWidth:"1.5",fill:"none"}),(0,ye.createElement)(ke.Rect,{x:"16",y:"10",width:"4",height:"4",rx:"1",fill:"currentColor"})),yp=(0,ye.createElement)(ke.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,ye.createElement)(ke.Rect,{x:"4.75",y:"15.25",width:"6.5",height:"14.5",transform:"rotate(-90 4.75 15.25)",stroke:"currentColor",strokeWidth:"1.5",fill:"none"}),(0,ye.createElement)(ke.Rect,{x:"14",y:"10",width:"4",height:"4",rx:"1",fill:"currentColor"})),fp=(0,ye.createElement)(ke.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,ye.createElement)(ke.Rect,{x:"4.75",y:"15.25",width:"6.5",height:"14.5",transform:"rotate(-90 4.75 15.25)",stroke:"currentColor",fill:"none",strokeWidth:"1.5"})),_p=(0,ye.createElement)(ke.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,ye.createElement)(ke.Rect,{x:"4.75",y:"7.75",width:"14.5",height:"8.5",rx:"1.25",stroke:"currentColor",fill:"none",strokeWidth:"1.5"}),(0,ye.createElement)(ke.Rect,{x:"8",y:"11",width:"8",height:"2",fill:"currentColor"})),kp=(0,ye.createElement)(ke.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,ye.createElement)(ke.Rect,{x:"4.75",y:"17.25",width:"5.5",height:"14.5",transform:"rotate(-90 4.75 17.25)",stroke:"currentColor",fill:"none",strokeWidth:"1.5"}),(0,ye.createElement)(ke.Rect,{x:"4",y:"7",width:"10",height:"2",fill:"currentColor"}));var Ep=[{name:"default",isDefault:!0,attributes:{buttonText:(0,we.__)("Search"),label:(0,we.__)("Search")}}];const Cp={apiVersion:2,name:"core/search",title:"Search",category:"widgets",description:"Help visitors find your content.",keywords:["find"],textdomain:"default",attributes:{label:{type:"string",__experimentalRole:"content"},showLabel:{type:"boolean",default:!0},placeholder:{type:"string",default:"",__experimentalRole:"content"},width:{type:"number"},widthUnit:{type:"string"},buttonText:{type:"string",__experimentalRole:"content"},buttonPosition:{type:"string",default:"button-outside"},buttonUseIcon:{type:"boolean",default:!1}},supports:{align:["left","center","right"],color:{gradients:!0,__experimentalSkipSerialization:!0},__experimentalBorder:{color:!0,radius:!0,__experimentalSkipSerialization:!0},html:!1},editorStyle:"wp-block-search-editor",style:"wp-block-search"},{name:xp}=Cp,Sp={icon:Ts,example:{},variations:Ep,edit:function(e){var t,n;let{className:o,attributes:r,setAttributes:a,toggleSelection:l,isSelected:i,clientId:s}=e;const{label:c,showLabel:u,placeholder:m,width:d,widthUnit:p,align:g,buttonText:h,buttonPosition:v,buttonUseIcon:b,style:y}=r,f=(0,Ie.useSelect)((e=>{var t;const{getBlockParentsByBlockName:n,wasBlockJustInserted:o}=e(Ee.store);return!(null===(t=n(s,"core/navigation"))||void 0===t||!t.length)&&o(s)}),[s]),{__unstableMarkNextChangeAsNotPersistent:_}=(0,Ie.useDispatch)(Ee.store);(0,ye.useEffect)((()=>{f&&(_(),a({showLabel:!1,buttonUseIcon:!0,buttonPosition:"button-inside"}))}),[f]);const k=null==y||null===(t=y.border)||void 0===t?void 0:t.radius,w=null==y||null===(n=y.border)||void 0===n?void 0:n.color,E=(0,Ee.__experimentalUseBorderProps)(r);"number"==typeof k&&(E.style.borderRadius=`${k}px`);const C=(0,Ee.__experimentalUseColorProps)(r),x=`wp-block-search__width-${(0,ot.useInstanceId)(Ee.__experimentalUnitControl)}`,S="button-inside"===v,B="button-outside"===v,T="no-button"===v,N="button-only"===v,z=(0,ke.__experimentalUseCustomUnits)({availableUnits:["%","px"],defaultValues:{"%":50,px:350}}),P=[{role:"menuitemradio",title:(0,we.__)("Button outside"),isActive:"button-outside"===v,icon:bp,onClick:()=>{a({buttonPosition:"button-outside"})}},{role:"menuitemradio",title:(0,we.__)("Button inside"),isActive:"button-inside"===v,icon:yp,onClick:()=>{a({buttonPosition:"button-inside"})}},{role:"menuitemradio",title:(0,we.__)("No button"),isActive:"no-button"===v,icon:fp,onClick:()=>{a({buttonPosition:"no-button"})}}],I=()=>{const e=nt()("wp-block-search__input",S?void 0:E.className),t=S?{borderRadius:k}:E.style;return(0,ye.createElement)("input",{className:e,style:t,"aria-label":(0,we.__)("Optional placeholder text"),placeholder:m?void 0:(0,we.__)("Optional placeholder"),value:m,onChange:e=>a({placeholder:e.target.value})})},M=()=>{const e=nt()("wp-block-search__button",C.className,S?void 0:E.className,b?"has-icon":void 0),t={...C.style,...S?{borderRadius:k}:E.style};return(0,ye.createElement)(ye.Fragment,null,b&&(0,ye.createElement)("button",{type:"button",className:e,style:t},(0,ye.createElement)(Ss,{icon:Ts})),!b&&(0,ye.createElement)(Ee.RichText,{className:e,style:t,"aria-label":(0,we.__)("Button text"),placeholder:(0,we.__)("Add button text"),withoutInteractiveFormatting:!0,value:h,onChange:e=>a({buttonText:e})}))},R=(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)(Ee.BlockControls,null,(0,ye.createElement)(ke.ToolbarGroup,null,(0,ye.createElement)(ke.ToolbarButton,{title:(0,we.__)("Toggle search label"),icon:kp,onClick:()=>{a({showLabel:!u})},className:u?"is-pressed":void 0}),(0,ye.createElement)(ke.ToolbarDropdownMenu,{icon:(()=>{switch(v){case"button-inside":return yp;case"button-outside":return bp;case"no-button":return fp;case"button-only":return vp}})(),label:(0,we.__)("Change button position"),controls:P}),!T&&(0,ye.createElement)(ke.ToolbarButton,{title:(0,we.__)("Use button with icon"),icon:_p,onClick:()=>{a({buttonUseIcon:!b})},className:b?"is-pressed":void 0}))),(0,ye.createElement)(Ee.InspectorControls,null,(0,ye.createElement)(ke.PanelBody,{title:(0,we.__)("Display Settings")},(0,ye.createElement)(ke.BaseControl,{label:(0,we.__)("Width"),id:x},(0,ye.createElement)(Ee.__experimentalUnitControl,{id:x,min:"220px",onChange:e=>{const t="%"===p&&parseInt(e,10)>100?100:e;a({width:parseInt(t,10)})},onUnitChange:e=>{a({width:"%"===e?50:350,widthUnit:e})},style:{maxWidth:80},value:`${d}${p}`,unit:p,units:z}),(0,ye.createElement)(ke.ButtonGroup,{className:"wp-block-search__components-button-group","aria-label":(0,we.__)("Percentage Width")},[25,50,75,100].map((e=>(0,ye.createElement)(ke.Button,{key:e,isSmall:!0,variant:`${e}%`==`${d}${p}`?0:void 0,onClick:()=>a({width:e,widthUnit:"%"})},e,"%")))))))),L=e=>e?`calc(${e} + 4px)`:void 0,V=(0,Ee.useBlockProps)({className:nt()(o,S?void 0:E.className,S?"wp-block-search__button-inside":void 0,B?"wp-block-search__button-outside":void 0,T?"wp-block-search__no-button":void 0,N?"wp-block-search__button-only":void 0,b||T?void 0:"wp-block-search__text-button",b&&!T?"wp-block-search__icon-button":void 0)});return(0,ye.createElement)("div",V,R,u&&(0,ye.createElement)(Ee.RichText,{className:"wp-block-search__label","aria-label":(0,we.__)("Label text"),placeholder:(0,we.__)("Add label"),withoutInteractiveFormatting:!0,value:c,onChange:e=>a({label:e})}),(0,ye.createElement)(ke.ResizableBox,{size:{width:`${d}${p}`},className:nt()("wp-block-search__inside-wrapper",S?E.className:void 0),style:(()=>{const e={borderColor:w},t=0!==parseInt(k,10);if(S&&t){if("object"==typeof k){const{topLeft:t,topRight:n,bottomLeft:o,bottomRight:r}=k;return{borderTopLeftRadius:L(t),borderTopRightRadius:L(n),borderBottomLeftRadius:L(o),borderBottomRightRadius:L(r),...e}}const t=Number.isInteger(k)?`${k}px`:k;e.borderRadius=`calc(${t} + 4px)`}return e})(),minWidth:220,enable:N?{}:{right:"right"!==g,left:"right"===g},onResizeStart:(e,t,n)=>{a({width:parseInt(n.offsetWidth,10),widthUnit:"px"}),l(!1)},onResizeStop:(e,t,n,o)=>{a({width:parseInt(d+o.width,10)}),l(!0)},showHandle:i},(S||B)&&(0,ye.createElement)(ye.Fragment,null,I(),M()),N&&M(),T&&I()))}};var Bp=(0,ye.createElement)(fe.SVG,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,ye.createElement)(fe.Path,{d:"M20.2 7v4H3.8V7H2.2v9h1.6v-3.5h16.4V16h1.6V7z"}));var Tp=e=>{let{color:t,setColor:n}=e;return(0,ye.createElement)(Ee.InspectorControls,null,(0,ye.createElement)(Ee.PanelColorSettings,{__experimentalHasMultipleOrigins:!0,__experimentalIsRenderedInSidebar:!0,title:(0,we.__)("Color"),colorSettings:[{value:t.color,onChange:n,label:(0,we.__)("Color")}]}))};var Np=(0,Ee.withColors)("color",{textColor:"color"})((function(e){let{color:t,setColor:n,className:o}=e;return(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)(ke.HorizontalRule,(0,Ee.useBlockProps)({className:nt()(o,{"has-background":t.color,[t.class]:t.class}),style:{backgroundColor:t.color,color:t.color}})),(0,ye.createElement)(Tp,{color:t,setColor:n}))}));var zp={from:[{type:"enter",regExp:/^-{3,}$/,transform:()=>(0,be.createBlock)("core/separator")},{type:"raw",selector:"hr",schema:{hr:{}}}]};const Pp={apiVersion:2,name:"core/separator",title:"Separator",category:"design",description:"Create a break between ideas or sections with a horizontal separator.",keywords:["horizontal-line","hr","divider"],textdomain:"default",attributes:{color:{type:"string"},customColor:{type:"string"}},supports:{anchor:!0,align:["center","wide","full"]},styles:[{name:"default",label:"Default",isDefault:!0},{name:"wide",label:"Wide Line"},{name:"dots",label:"Dots"}],editorStyle:"wp-block-separator-editor",style:"wp-block-separator"},{name:Ip}=Pp,Mp={icon:Bp,example:{attributes:{customColor:"#065174",className:"is-style-wide"}},transforms:zp,edit:Np,save:function(e){let{attributes:t}=e;const{color:n,customColor:o}=t,r=(0,Ee.getColorClassName)("background-color",n),a=(0,Ee.getColorClassName)("color",n),l=nt()({"has-text-color has-background":n||o,[r]:r,[a]:a}),i={backgroundColor:r?void 0:o,color:a?void 0:o};return(0,ye.createElement)("hr",Ee.useBlockProps.save({className:l,style:i}))}};var Rp=(0,ye.createElement)(fe.SVG,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,ye.createElement)(fe.Path,{d:"M16 4.2v1.5h2.5v12.5H16v1.5h4V4.2h-4zM4.2 19.8h4v-1.5H5.8V5.8h2.5V4.2h-4l-.1 15.6zm5.1-3.1l1.4.6 4-10-1.4-.6-4 10z"}));var Lp=window.wp.autop;var Vp={from:[{type:"shortcode",tag:"[a-z][a-z0-9_-]*",attributes:{text:{type:"string",shortcode:(e,t)=>{let{content:n}=t;return(0,Lp.removep)((0,Lp.autop)(n))}}},priority:20}]};const Hp={apiVersion:2,name:"core/shortcode",title:"Shortcode",category:"widgets",description:"Insert additional custom elements with a WordPress shortcode.",textdomain:"default",attributes:{text:{type:"string",source:"html"}},supports:{className:!1,customClassName:!1,html:!1},editorStyle:"wp-block-shortcode-editor"},{name:Ap}=Hp,Fp={icon:Rp,transforms:Vp,edit:function e(t){let{attributes:n,setAttributes:o}=t;const r=`blocks-shortcode-input-${(0,ot.useInstanceId)(e)}`;return(0,ye.createElement)("div",(0,Ee.useBlockProps)({className:"components-placeholder"}),(0,ye.createElement)("label",{htmlFor:r,className:"components-placeholder__label"},(0,ye.createElement)(Ss,{icon:Rp}),(0,we.__)("Shortcode")),(0,ye.createElement)(Ee.PlainText,{className:"blocks-shortcode__textarea",id:r,value:n.text,"aria-label":(0,we.__)("Shortcode text"),placeholder:(0,we.__)("Write shortcode here"),onChange:e=>o({text:e})}))},save:function(e){let{attributes:t}=e;return(0,ye.createElement)(ye.RawHTML,null,t.text)}};var Dp=(0,ye.createElement)(fe.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,ye.createElement)(fe.Path,{d:"M12 3c-5 0-9 4-9 9s4 9 9 9 9-4 9-9-4-9-9-9zm0 1.5c4.1 0 7.5 3.4 7.5 7.5v.1c-1.4-.8-3.3-1.7-3.4-1.8-.2-.1-.5-.1-.8.1l-2.9 2.1L9 11.3c-.2-.1-.4 0-.6.1l-3.7 2.2c-.1-.5-.2-1-.2-1.5 0-4.2 3.4-7.6 7.5-7.6zm0 15c-3.1 0-5.7-1.9-6.9-4.5l3.7-2.2 3.5 1.2c.2.1.5 0 .7-.1l2.9-2.1c.8.4 2.5 1.2 3.5 1.9-.9 3.3-3.9 5.8-7.4 5.8z"}));const Gp=["image"],Up="image/*",Op=e=>{let{alt:t,attributes:{align:n,width:o,height:r,isLink:a,linkTarget:l,shouldSyncIcon:i},containerRef:s,isSelected:c,setAttributes:u,setLogo:m,logoUrl:d,siteUrl:p,logoId:g,iconId:h,setIcon:v,canUserEdit:b}=e;const y=$l(s,[n]),f=(0,ot.useViewportMatch)("medium"),_=!(0,Le.includes)(["wide","full"],n)&&f,[{naturalWidth:k,naturalHeight:w},E]=(0,ye.useState)({}),[C,x]=(0,ye.useState)(!1),{toggleSelection:S}=(0,Ie.useDispatch)(Ee.store),B=nt()("custom-logo-link",{"is-transient":(0,Pe.isBlobURL)(d)}),{imageEditing:T,maxWidth:N,title:z}=(0,Ie.useSelect)((e=>{const{getSettings:t}=e(Ee.store);return{title:e(Dt.store).getEditedEntityRecord("root","site").title,...(0,Le.pick)(t(),["imageEditing","maxWidth"])}}),[]);(0,ye.useEffect)((()=>{i&&g!==h&&u({shouldSyncIcon:!1})}),[]),(0,ye.useEffect)((()=>{c||x(!1)}),[c]);const P=(0,ye.createElement)("img",{className:"custom-logo",src:d,alt:t,onLoad:e=>{E((0,Le.pick)(e.target,["naturalWidth","naturalHeight"]))}});let I,M=P;if(a&&(M=(0,ye.createElement)("a",{href:p,className:B,rel:"home",title:z,onClick:e=>e.preventDefault()},P)),y&&k&&w){I=k>y?y:k}if(!_||!I)return(0,ye.createElement)("div",{style:{width:o,height:r}},M);const R=o||120,L=k/w,V=R/L,H=k<w?ma:Math.ceil(ma*L),A=w<k?ma:Math.ceil(ma/L),F=2.5*N;let D=!1,G=!1;"center"===n?(D=!0,G=!0):(0,we.isRTL)()?"left"===n?D=!0:G=!0:"right"===n?G=!0:D=!0;const U=g&&k&&w&&T,O=U&&C?(0,ye.createElement)(Ee.__experimentalImageEditingProvider,{id:g,url:d,naturalWidth:k,naturalHeight:w,clientWidth:y,onSaveImage:e=>{m(e.id)},isEditing:C,onFinishEditing:()=>x(!1)},(0,ye.createElement)(Ee.__experimentalImageEditor,{url:d,width:R,height:V,clientWidth:y,naturalHeight:w,naturalWidth:k})):(0,ye.createElement)(ke.ResizableBox,{size:{width:R,height:V},showHandle:c,minWidth:H,maxWidth:F,minHeight:A,maxHeight:F/L,lockAspectRatio:!0,enable:{top:!1,right:D,bottom:!0,left:G},onResizeStart:function(){S(!1)},onResizeStop:(e,t,n,o)=>{S(!0),u({width:parseInt(R+o.width,10),height:parseInt(V+o.height,10)})}},M),q=(0,ye.createInterpolateElement)((0,we.__)("Site Icons are what you see in browser tabs, bookmark bars, and within the WordPress mobile apps. To use a custom icon that is different from your site logo, use the <a>Site Icon settings</a>."),{a:(0,ye.createElement)("a",{href:p+"/wp-admin/customize.php?autofocus[section]=title_tagline",target:"_blank",rel:"noopener noreferrer"})});return(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)(Ee.InspectorControls,null,(0,ye.createElement)(ke.PanelBody,{title:(0,we.__)("Settings")},(0,ye.createElement)(ke.RangeControl,{label:(0,we.__)("Image width"),onChange:e=>u({width:e}),min:H,max:F,initialPosition:Math.min(120,F),value:o||"",disabled:!_}),(0,ye.createElement)(ke.ToggleControl,{label:(0,we.__)("Link image to home"),onChange:()=>u({isLink:!a}),checked:a}),a&&(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)(ke.ToggleControl,{label:(0,we.__)("Open in new tab"),onChange:e=>u({linkTarget:e?"_blank":"_self"}),checked:"_blank"===l})),b&&(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)(ke.ToggleControl,{label:(0,we.__)("Use as site icon"),onChange:e=>{u({shouldSyncIcon:e}),v(e?g:void 0)},checked:!!i,help:q})))),(0,ye.createElement)(Ee.BlockControls,{group:"block"},U&&!C&&(0,ye.createElement)(ke.ToolbarButton,{onClick:()=>x(!0),icon:Ul,label:(0,we.__)("Crop")})),O)};const qp={apiVersion:2,name:"core/site-logo",title:"Site Logo",category:"theme",description:"Display a graphic to represent this site. Update the block, and the changes apply everywhere its used. This is different than the site icon, which is the smaller image visible in your dashboard, browser tabs, etc used to help others recognize this site.",textdomain:"default",attributes:{width:{type:"number"},isLink:{type:"boolean",default:!0},linkTarget:{type:"string",default:"_self"},shouldSyncIcon:{type:"boolean"}},example:{viewportWidth:500,attributes:{width:350,className:"block-editor-block-types-list__site-logo-example"}},supports:{html:!1,align:!0,alignWide:!1,color:{__experimentalDuotone:"img",text:!1,background:!1}},styles:[{name:"default",label:"Default",isDefault:!0},{name:"rounded",label:"Rounded"}],editorStyle:"wp-block-site-logo-editor",style:"wp-block-site-logo"},{name:$p}=qp,Wp={icon:Dp,edit:function(e){let{attributes:t,className:n,setAttributes:o,isSelected:r}=e;const{width:a,shouldSyncIcon:l}=t,[i,s]=(0,ye.useState)(),c=(0,ye.useRef)(),{siteLogoId:u,canUserEdit:m,url:d,siteIconId:p,mediaItemData:g,isRequestingMediaItem:h}=(0,Ie.useSelect)((e=>{const{canUser:t,getEntityRecord:n,getEditedEntityRecord:o}=e(Dt.store),r=o("root","site"),a=n("root","__unstableBase"),l=null==r?void 0:r.site_logo,i=null==a?void 0:a.site_logo,s=t("update","settings"),c=s?l:i,u=null==r?void 0:r.site_icon,m=c&&e(Dt.store).getMedia(c,{context:"view"}),d=c&&!e(Dt.store).hasFinishedResolution("getMedia",[c,{context:"view"}]);return{siteLogoId:c,canUserEdit:s,url:null==a?void 0:a.url,mediaItemData:m&&{id:m.id,url:m.source_url,alt:m.alt_text},isRequestingMediaItem:d,siteIconId:u}}),[]),{editEntityRecord:v}=(0,Ie.useDispatch)(Dt.store),b=function(e){let t=arguments.length>1&&void 0!==arguments[1]&&arguments[1];(l||t)&&y(e),v("root","site",void 0,{site_logo:e})},y=e=>v("root","site",void 0,{site_icon:e});let f=null;g&&(f=g.alt,i!==g.url&&s(g.url));const _=function(e){let t=arguments.length>1&&void 0!==arguments[1]&&arguments[1];if(e)return!e.id&&e.url?(b(void 0),void s(e.url)):void b(e.id,t)},{createErrorNotice:k}=(0,Ie.useDispatch)(Ir.store),w=e=>{k(e[2],{type:"snackbar"})},E=m&&i&&(0,ye.createElement)(Ee.BlockControls,{group:"other"},(0,ye.createElement)(Ee.MediaReplaceFlow,{mediaURL:i,allowedTypes:Gp,accept:Up,onSelect:_,onError:w},(0,ye.createElement)(ke.MenuItem,{onClick:()=>{b(null),s(void 0),o({width:void 0})}},(0,we.__)("Reset"))));let C;const x=void 0===u||h;x&&(C=(0,ye.createElement)(ke.Spinner,null)),i&&(C=(0,ye.createElement)(Op,{alt:f,attributes:t,className:n,containerRef:c,isSelected:r,setAttributes:o,logoUrl:i,setLogo:b,logoId:(null==g?void 0:g.id)||u,siteUrl:d,setIcon:y,iconId:p,canUserEdit:m}));const S=nt()(n,{"is-default-size":!a}),B=(0,Ee.useBlockProps)({ref:c,className:S}),T=(0,we.__)("Add a site logo");return(0,ye.createElement)("div",B,E,!!i&&C,!i&&!m&&(0,ye.createElement)(ke.Placeholder,{className:"site-logo_placeholder"},x&&(0,ye.createElement)("span",{className:"components-placeholder__preview"},(0,ye.createElement)(ke.Spinner,null))),!i&&m&&(0,ye.createElement)(Ee.MediaPlaceholder,{onSelect:e=>{if(void 0===l){const t=!p;return o({shouldSyncIcon:t}),void _(e,t)}_(e)},accept:Up,allowedTypes:Gp,onError:w,placeholder:e=>{const t=nt()("block-editor-media-placeholder",n);return(0,ye.createElement)(ke.Placeholder,{className:t,preview:C},(0,ye.createElement)(fe.SVG,{className:"components-placeholder__illustration",fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 60 60"},(0,ye.createElement)(fe.Path,{vectorEffect:"non-scaling-stroke",d:"m61 32.622-13.555-9.137-15.888 9.859a5 5 0 0 1-5.386-.073l-9.095-5.989L1 37.5"})),e)},mediaLibraryButton:e=>{let{open:t}=e;return(0,ye.createElement)(ke.Button,{icon:Ol,variant:"primary",label:T,showTooltip:!0,tooltipPosition:"top center",onClick:()=>{t()}})}}))}};var jp=(0,ye.createElement)(ke.SVG,{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24"},(0,ye.createElement)(ke.Path,{fill:"none",d:"M0 0h24v24H0z"}),(0,ye.createElement)(ke.Path,{d:"M4 9h16v2H4V9zm0 4h10v2H4v-2z"}));var Zp=[{attributes:{textAlign:{type:"string"}},supports:{align:["wide","full"],html:!1,color:{gradients:!0},spacing:{margin:!0,padding:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalTextTransform:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0,__experimentalLetterSpacing:!0}},save:()=>null,migrate:lt,isEligible(e){var t;let{style:n}=e;return null==n||null===(t=n.typography)||void 0===t?void 0:t.fontFamily}}];const Kp={apiVersion:2,name:"core/site-tagline",title:"Site Tagline",category:"theme",description:"Describe in a few words what the website is about. The tagline can be used in search results or when sharing on social networks even if it's not displayed in the theme design.",keywords:["description"],textdomain:"default",attributes:{textAlign:{type:"string"}},supports:{align:["wide","full"],html:!1,color:{gradients:!0},spacing:{margin:!0,padding:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalTextTransform:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0}}},editorStyle:"wp-block-site-tagline-editor"},{name:Qp}=Kp,Jp={icon:jp,edit:function(e){let{attributes:t,setAttributes:n}=e;const{textAlign:o}=t,[r,a]=(0,Dt.useEntityProp)("root","site","description"),{canUserEdit:l,readOnlySiteTagLine:i}=(0,Ie.useSelect)((e=>{const{canUser:t,getEntityRecord:n}=e(Dt.store),o=n("root","__unstableBase");return{canUserEdit:t("update","settings"),readOnlySiteTagLine:null==o?void 0:o.description}}),[]),s=(0,Ee.useBlockProps)({className:nt()({[`has-text-align-${o}`]:o,"wp-block-site-tagline__placeholder":!l&&!i})}),c=l?(0,ye.createElement)(Ee.RichText,gt({allowedFormats:[],onChange:a,"aria-label":(0,we.__)("Site tagline text"),placeholder:(0,we.__)("Write site tagline"),tagName:"p",value:r},s)):(0,ye.createElement)("p",s,i||(0,we.__)("Site Tagline placeholder"));return(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)(Ee.BlockControls,{group:"block"},(0,ye.createElement)(Ee.AlignmentControl,{onChange:e=>n({textAlign:e}),value:o})),c)},deprecated:Zp};var Yp=(0,ye.createElement)(fe.SVG,{xmlns:"https://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,ye.createElement)(fe.Path,{d:"M12 9c-.8 0-1.5.7-1.5 1.5S11.2 12 12 12s1.5-.7 1.5-1.5S12.8 9 12 9zm0-5c-3.6 0-6.5 2.8-6.5 6.2 0 .8.3 1.8.9 3.1.5 1.1 1.2 2.3 2 3.6.7 1 3 3.8 3.2 3.9l.4.5.4-.5c.2-.2 2.6-2.9 3.2-3.9.8-1.2 1.5-2.5 2-3.6.6-1.3.9-2.3.9-3.1C18.5 6.8 15.6 4 12 4zm4.3 8.7c-.5 1-1.1 2.2-1.9 3.4-.5.7-1.7 2.2-2.4 3-.7-.8-1.9-2.3-2.4-3-.8-1.2-1.4-2.3-1.9-3.3-.6-1.4-.7-2.2-.7-2.5 0-2.6 2.2-4.7 5-4.7s5 2.1 5 4.7c0 .2-.1 1-.7 2.4z"}));function Xp(e){let{level:t,isPressed:n=!1}=e;if(0===t)return lu;return(0,ye.createElement)(ke.SVG,{width:"20",height:"20",viewBox:"0 0 20 20",xmlns:"http://www.w3.org/2000/svg",isPressed:n},(0,ye.createElement)(ke.Path,{d:{1:"M9 5h2v10H9v-4H5v4H3V5h2v4h4V5zm6.6 0c-.6.9-1.5 1.7-2.6 2v1h2v7h2V5h-1.4z",2:"M7 5h2v10H7v-4H3v4H1V5h2v4h4V5zm8 8c.5-.4.6-.6 1.1-1.1.4-.4.8-.8 1.2-1.3.3-.4.6-.8.9-1.3.2-.4.3-.8.3-1.3 0-.4-.1-.9-.3-1.3-.2-.4-.4-.7-.8-1-.3-.3-.7-.5-1.2-.6-.5-.2-1-.2-1.5-.2-.4 0-.7 0-1.1.1-.3.1-.7.2-1 .3-.3.1-.6.3-.9.5-.3.2-.6.4-.8.7l1.2 1.2c.3-.3.6-.5 1-.7.4-.2.7-.3 1.2-.3s.9.1 1.3.4c.3.3.5.7.5 1.1 0 .4-.1.8-.4 1.1-.3.5-.6.9-1 1.2-.4.4-1 .9-1.6 1.4-.6.5-1.4 1.1-2.2 1.6V15h8v-2H15z",3:"M12.1 12.2c.4.3.8.5 1.2.7.4.2.9.3 1.4.3.5 0 1-.1 1.4-.3.3-.1.5-.5.5-.8 0-.2 0-.4-.1-.6-.1-.2-.3-.3-.5-.4-.3-.1-.7-.2-1-.3-.5-.1-1-.1-1.5-.1V9.1c.7.1 1.5-.1 2.2-.4.4-.2.6-.5.6-.9 0-.3-.1-.6-.4-.8-.3-.2-.7-.3-1.1-.3-.4 0-.8.1-1.1.3-.4.2-.7.4-1.1.6l-1.2-1.4c.5-.4 1.1-.7 1.6-.9.5-.2 1.2-.3 1.8-.3.5 0 1 .1 1.6.2.4.1.8.3 1.2.5.3.2.6.5.8.8.2.3.3.7.3 1.1 0 .5-.2.9-.5 1.3-.4.4-.9.7-1.5.9v.1c.6.1 1.2.4 1.6.8.4.4.7.9.7 1.5 0 .4-.1.8-.3 1.2-.2.4-.5.7-.9.9-.4.3-.9.4-1.3.5-.5.1-1 .2-1.6.2-.8 0-1.6-.1-2.3-.4-.6-.2-1.1-.6-1.6-1l1.1-1.4zM7 9H3V5H1v10h2v-4h4v4h2V5H7v4z",4:"M9 15H7v-4H3v4H1V5h2v4h4V5h2v10zm10-2h-1v2h-2v-2h-5v-2l4-6h3v6h1v2zm-3-2V7l-2.8 4H16z",5:"M12.1 12.2c.4.3.7.5 1.1.7.4.2.9.3 1.3.3.5 0 1-.1 1.4-.4.4-.3.6-.7.6-1.1 0-.4-.2-.9-.6-1.1-.4-.3-.9-.4-1.4-.4H14c-.1 0-.3 0-.4.1l-.4.1-.5.2-1-.6.3-5h6.4v1.9h-4.3L14 8.8c.2-.1.5-.1.7-.2.2 0 .5-.1.7-.1.5 0 .9.1 1.4.2.4.1.8.3 1.1.6.3.2.6.6.8.9.2.4.3.9.3 1.4 0 .5-.1 1-.3 1.4-.2.4-.5.8-.9 1.1-.4.3-.8.5-1.3.7-.5.2-1 .3-1.5.3-.8 0-1.6-.1-2.3-.4-.6-.2-1.1-.6-1.6-1-.1-.1 1-1.5 1-1.5zM9 15H7v-4H3v4H1V5h2v4h4V5h2v10z",6:"M9 15H7v-4H3v4H1V5h2v4h4V5h2v10zm8.6-7.5c-.2-.2-.5-.4-.8-.5-.6-.2-1.3-.2-1.9 0-.3.1-.6.3-.8.5l-.6.9c-.2.5-.2.9-.2 1.4.4-.3.8-.6 1.2-.8.4-.2.8-.3 1.3-.3.4 0 .8 0 1.2.2.4.1.7.3 1 .6.3.3.5.6.7.9.2.4.3.8.3 1.3s-.1.9-.3 1.4c-.2.4-.5.7-.8 1-.4.3-.8.5-1.2.6-1 .3-2 .3-3 0-.5-.2-1-.5-1.4-.9-.4-.4-.8-.9-1-1.5-.2-.6-.3-1.3-.3-2.1s.1-1.6.4-2.3c.2-.6.6-1.2 1-1.6.4-.4.9-.7 1.4-.9.6-.3 1.1-.4 1.7-.4.7 0 1.4.1 2 .3.5.2 1 .5 1.4.8 0 .1-1.3 1.4-1.3 1.4zm-2.4 5.8c.2 0 .4 0 .6-.1.2 0 .4-.1.5-.2.1-.1.3-.3.4-.5.1-.2.1-.5.1-.7 0-.4-.1-.8-.4-1.1-.3-.2-.7-.3-1.1-.3-.3 0-.7.1-1 .2-.4.2-.7.4-1 .7 0 .3.1.7.3 1 .1.2.3.4.4.6.2.1.3.3.5.3.2.1.5.2.7.1z"}[t]}))}function eg(e){let{level:t,onChange:n}=e;const o=[1,2,3,4,5,6,0].map((e=>{const o=e===t;return{icon:(0,ye.createElement)(Xp,{level:e,isPressed:o}),title:0===e?(0,we.__)("Paragraph"):(0,we.sprintf)((0,we.__)("Heading %d"),e),isActive:o,onClick:()=>n(e)}}));return(0,ye.createElement)(ke.ToolbarDropdownMenu,{label:(0,we.__)("Change heading level"),icon:(0,ye.createElement)(Xp,{level:t}),controls:o})}var tg=[{attributes:{level:{type:"number",default:1},textAlign:{type:"string"},isLink:{type:"boolean",default:!0},linkTarget:{type:"string",default:"_self"}},supports:{align:["wide","full"],html:!1,color:{gradients:!0,link:!0},spacing:{padding:!0,margin:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalTextTransform:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0,__experimentalLetterSpacing:!0}},save:()=>null,migrate:lt,isEligible(e){var t;let{style:n}=e;return null==n||null===(t=n.typography)||void 0===t?void 0:t.fontFamily}}];const ng={apiVersion:2,name:"core/site-title",title:"Site Title",category:"theme",description:"Displays the name of this site. Update the block, and the changes apply everywhere its used. This will also appear in the browser title bar and in search results.",textdomain:"default",attributes:{level:{type:"number",default:1},textAlign:{type:"string"},isLink:{type:"boolean",default:!0},linkTarget:{type:"string",default:"_self"}},example:{viewportWidth:500},supports:{align:["wide","full"],html:!1,color:{gradients:!0,link:!0},spacing:{padding:!0,margin:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontFamily:!0,__experimentalTextTransform:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0,__experimentalLetterSpacing:!0,__experimentalDefaultControls:{fontSize:!0,lineHeight:!0,fontAppearance:!0,letterSpacing:!0,textTransform:!0}}},editorStyle:"wp-block-site-title-editor"},{name:og}=ng,rg={icon:Yp,edit:function(e){let{attributes:t,setAttributes:n,insertBlocksAfter:o}=e;const{level:r,textAlign:a,isLink:l,linkTarget:i}=t,[s,c]=(0,Dt.useEntityProp)("root","site","title"),{canUserEdit:u,readOnlyTitle:m}=(0,Ie.useSelect)((e=>{const{canUser:t,getEntityRecord:n}=e(Dt.store),o=n("root","__unstableBase");return{canUserEdit:t("update","settings"),readOnlyTitle:(0,Bs.decodeEntities)(null==o?void 0:o.name)}}),[]),d=0===r?"p":`h${r}`,p=(0,Ee.useBlockProps)({className:nt()({[`has-text-align-${a}`]:a,"wp-block-site-title__placeholder":!u&&!m})}),g=u?(0,ye.createElement)(d,p,(0,ye.createElement)(Ee.RichText,{tagName:l?"a":"span",href:l?"#site-title-pseudo-link":void 0,"aria-label":(0,we.__)("Site title text"),placeholder:(0,we.__)("Write site title"),value:s,onChange:c,allowedFormats:[],disableLineBreaks:!0,__unstableOnSplitAtEnd:()=>o((0,be.createBlock)((0,be.getDefaultBlockName)()))})):(0,ye.createElement)(d,p,l?(0,ye.createElement)("a",{href:"#site-title-pseudo-link",onClick:e=>e.preventDefault()},m||(0,we.__)("Site Title placeholder")):(0,ye.createElement)("span",null,s||m));return(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)(Ee.BlockControls,{group:"block"},(0,ye.createElement)(eg,{level:r,onChange:e=>n({level:e})}),(0,ye.createElement)(Ee.AlignmentControl,{value:a,onChange:e=>{n({textAlign:e})}})),(0,ye.createElement)(Ee.InspectorControls,null,(0,ye.createElement)(ke.PanelBody,{title:(0,we.__)("Link settings")},(0,ye.createElement)(ke.ToggleControl,{label:(0,we.__)("Make title link to home"),onChange:()=>n({isLink:!l}),checked:l}),l&&(0,ye.createElement)(ke.ToggleControl,{label:(0,we.__)("Open in new tab"),onChange:e=>n({linkTarget:e?"_blank":"_self"}),checked:"_blank"===i}))),g)},deprecated:tg};var ag=(0,ye.createElement)(fe.SVG,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,ye.createElement)(fe.Path,{d:"M9 11.8l6.1-4.5c.1.4.4.7.9.7h2c.6 0 1-.4 1-1V5c0-.6-.4-1-1-1h-2c-.6 0-1 .4-1 1v.4l-6.4 4.8c-.2-.1-.4-.2-.6-.2H6c-.6 0-1 .4-1 1v2c0 .6.4 1 1 1h2c.2 0 .4-.1.6-.2l6.4 4.8v.4c0 .6.4 1 1 1h2c.6 0 1-.4 1-1v-2c0-.6-.4-1-1-1h-2c-.5 0-.8.3-.9.7L9 12.2v-.4z"}));var lg=(0,ye.createElement)(fe.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"-2 -2 24 24"},(0,ye.createElement)(fe.Path,{d:"M6.734 16.106l2.176-2.38-1.093-1.028-3.846 4.158 3.846 4.157 1.093-1.027-2.176-2.38h2.811c1.125 0 2.25.03 3.374 0 1.428-.001 3.362-.25 4.963-1.277 1.66-1.065 2.868-2.906 2.868-5.859 0-2.479-1.327-4.896-3.65-5.93-1.82-.813-3.044-.8-4.806-.788l-.567.002v1.5c.184 0 .368 0 .553-.002 1.82-.007 2.704-.014 4.21.657 1.854.827 2.76 2.657 2.76 4.561 0 2.472-.973 3.824-2.178 4.596-1.258.807-2.864 1.04-4.163 1.04h-.02c-1.115.03-2.229 0-3.344 0H6.734z"}));const ig=()=>(0,ye.createElement)(fe.SVG,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1"},(0,ye.createElement)(fe.Path,{d:"M19.647,16.706a1.134,1.134,0,0,0-.343-.833l-2.549-2.549a1.134,1.134,0,0,0-.833-.343,1.168,1.168,0,0,0-.883.392l.233.226q.2.189.264.264a2.922,2.922,0,0,1,.184.233.986.986,0,0,1,.159.312,1.242,1.242,0,0,1,.043.337,1.172,1.172,0,0,1-1.176,1.176,1.237,1.237,0,0,1-.337-.043,1,1,0,0,1-.312-.159,2.76,2.76,0,0,1-.233-.184q-.073-.068-.264-.264l-.226-.233a1.19,1.19,0,0,0-.4.895,1.134,1.134,0,0,0,.343.833L15.837,19.3a1.13,1.13,0,0,0,.833.331,1.18,1.18,0,0,0,.833-.318l1.8-1.789a1.12,1.12,0,0,0,.343-.821Zm-8.615-8.64a1.134,1.134,0,0,0-.343-.833L8.163,4.7a1.134,1.134,0,0,0-.833-.343,1.184,1.184,0,0,0-.833.331L4.7,6.473a1.12,1.12,0,0,0-.343.821,1.134,1.134,0,0,0,.343.833l2.549,2.549a1.13,1.13,0,0,0,.833.331,1.184,1.184,0,0,0,.883-.38L8.728,10.4q-.2-.189-.264-.264A2.922,2.922,0,0,1,8.28,9.9a.986.986,0,0,1-.159-.312,1.242,1.242,0,0,1-.043-.337A1.172,1.172,0,0,1,9.254,8.079a1.237,1.237,0,0,1,.337.043,1,1,0,0,1,.312.159,2.761,2.761,0,0,1,.233.184q.073.068.264.264l.226.233a1.19,1.19,0,0,0,.4-.895ZM22,16.706a3.343,3.343,0,0,1-1.042,2.488l-1.8,1.789a3.536,3.536,0,0,1-4.988-.025l-2.525-2.537a3.384,3.384,0,0,1-1.017-2.488,3.448,3.448,0,0,1,1.078-2.561l-1.078-1.078a3.434,3.434,0,0,1-2.549,1.078,3.4,3.4,0,0,1-2.5-1.029L3.029,9.794A3.4,3.4,0,0,1,2,7.294,3.343,3.343,0,0,1,3.042,4.806l1.8-1.789A3.384,3.384,0,0,1,7.331,2a3.357,3.357,0,0,1,2.5,1.042l2.525,2.537a3.384,3.384,0,0,1,1.017,2.488,3.448,3.448,0,0,1-1.078,2.561l1.078,1.078a3.551,3.551,0,0,1,5.049-.049l2.549,2.549A3.4,3.4,0,0,1,22,16.706Z"})),sg=[{isDefault:!0,name:"wordpress",attributes:{service:"wordpress"},title:"WordPress",icon:()=>(0,ye.createElement)(fe.SVG,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1",xmlns:"http://www.w3.org/2000/svg"},(0,ye.createElement)(fe.Path,{d:"M12.158,12.786L9.46,20.625c0.806,0.237,1.657,0.366,2.54,0.366c1.047,0,2.051-0.181,2.986-0.51 c-0.024-0.038-0.046-0.079-0.065-0.124L12.158,12.786z M3.009,12c0,3.559,2.068,6.634,5.067,8.092L3.788,8.341 C3.289,9.459,3.009,10.696,3.009,12z M18.069,11.546c0-1.112-0.399-1.881-0.741-2.48c-0.456-0.741-0.883-1.368-0.883-2.109 c0-0.826,0.627-1.596,1.51-1.596c0.04,0,0.078,0.005,0.116,0.007C16.472,3.904,14.34,3.009,12,3.009 c-3.141,0-5.904,1.612-7.512,4.052c0.211,0.007,0.41,0.011,0.579,0.011c0.94,0,2.396-0.114,2.396-0.114 C7.947,6.93,8.004,7.642,7.52,7.699c0,0-0.487,0.057-1.029,0.085l3.274,9.739l1.968-5.901l-1.401-3.838 C9.848,7.756,9.389,7.699,9.389,7.699C8.904,7.67,8.961,6.93,9.446,6.958c0,0,1.484,0.114,2.368,0.114 c0.94,0,2.397-0.114,2.397-0.114c0.485-0.028,0.542,0.684,0.057,0.741c0,0-0.488,0.057-1.029,0.085l3.249,9.665l0.897-2.996 C17.841,13.284,18.069,12.316,18.069,11.546z M19.889,7.686c0.039,0.286,0.06,0.593,0.06,0.924c0,0.912-0.171,1.938-0.684,3.22 l-2.746,7.94c2.673-1.558,4.47-4.454,4.47-7.771C20.991,10.436,20.591,8.967,19.889,7.686z M12,22C6.486,22,2,17.514,2,12 C2,6.486,6.486,2,12,2c5.514,0,10,4.486,10,10C22,17.514,17.514,22,12,22z"}))},{name:"fivehundredpx",attributes:{service:"fivehundredpx"},title:"500px",icon:()=>(0,ye.createElement)(fe.SVG,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1"},(0,ye.createElement)(fe.Path,{d:"M6.94026,15.1412c.00437.01213.108.29862.168.44064a6.55008,6.55008,0,1,0,6.03191-9.09557,6.68654,6.68654,0,0,0-2.58357.51467A8.53914,8.53914,0,0,0,8.21268,8.61344L8.209,8.61725V3.22948l9.0504-.00008c.32934-.0036.32934-.46353.32934-.61466s0-.61091-.33035-.61467L7.47248,2a.43.43,0,0,0-.43131.42692v7.58355c0,.24466.30476.42131.58793.4819.553.11812.68074-.05864.81617-.2457l.018-.02481A10.52673,10.52673,0,0,1,9.32258,9.258a5.35268,5.35268,0,1,1,7.58985,7.54976,5.417,5.417,0,0,1-3.80867,1.56365,5.17483,5.17483,0,0,1-2.69822-.74478l.00342-4.61111a2.79372,2.79372,0,0,1,.71372-1.78792,2.61611,2.61611,0,0,1,1.98282-.89477,2.75683,2.75683,0,0,1,1.95525.79477,2.66867,2.66867,0,0,1,.79656,1.909,2.724,2.724,0,0,1-2.75849,2.748,4.94651,4.94651,0,0,1-.86254-.13719c-.31234-.093-.44519.34058-.48892.48349-.16811.54966.08453.65862.13687.67489a3.75751,3.75751,0,0,0,1.25234.18375,3.94634,3.94634,0,1,0-2.82444-6.742,3.67478,3.67478,0,0,0-1.13028,2.584l-.00041.02323c-.0035.11667-.00579,2.881-.00644,3.78811l-.00407-.00451a6.18521,6.18521,0,0,1-1.0851-1.86092c-.10544-.27856-.34358-.22925-.66857-.12917-.14192.04372-.57386.17677-.47833.489Zm4.65165-1.08338a.51346.51346,0,0,0,.19513.31818l.02276.022a.52945.52945,0,0,0,.3517.18416.24242.24242,0,0,0,.16577-.0611c.05473-.05082.67382-.67812.73287-.738l.69041.68819a.28978.28978,0,0,0,.21437.11032.53239.53239,0,0,0,.35708-.19486c.29792-.30419.14885-.46821.07676-.54751l-.69954-.69975.72952-.73469c.16-.17311.01874-.35708-.12218-.498-.20461-.20461-.402-.25742-.52855-.14083l-.7254.72665-.73354-.73375a.20128.20128,0,0,0-.14179-.05695.54135.54135,0,0,0-.34379.19648c-.22561.22555-.274.38149-.15656.5059l.73374.7315-.72942.73072A.26589.26589,0,0,0,11.59191,14.05782Zm1.59866-9.915A8.86081,8.86081,0,0,0,9.854,4.776a.26169.26169,0,0,0-.16938.22759.92978.92978,0,0,0,.08619.42094c.05682.14524.20779.531.50006.41955a8.40969,8.40969,0,0,1,2.91968-.55484,7.87875,7.87875,0,0,1,3.086.62286,8.61817,8.61817,0,0,1,2.30562,1.49315.2781.2781,0,0,0,.18318.07586c.15529,0,.30425-.15253.43167-.29551.21268-.23861.35873-.4369.1492-.63538a8.50425,8.50425,0,0,0-2.62312-1.694A9.0177,9.0177,0,0,0,13.19058,4.14283ZM19.50945,18.6236h0a.93171.93171,0,0,0-.36642-.25406.26589.26589,0,0,0-.27613.06613l-.06943.06929A7.90606,7.90606,0,0,1,7.60639,18.505a7.57284,7.57284,0,0,1-1.696-2.51537,8.58715,8.58715,0,0,1-.5147-1.77754l-.00871-.04864c-.04939-.25873-.28755-.27684-.62981-.22448-.14234.02178-.5755.088-.53426.39969l.001.00712a9.08807,9.08807,0,0,0,15.406,4.99094c.00193-.00192.04753-.04718.0725-.07436C19.79425,19.16234,19.87422,18.98728,19.50945,18.6236Z"}))},{name:"amazon",attributes:{service:"amazon"},title:"Amazon",icon:()=>(0,ye.createElement)(fe.SVG,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1"},(0,ye.createElement)(fe.Path,{d:"M13.582,8.182C11.934,8.367,9.78,8.49,8.238,9.166c-1.781,0.769-3.03,2.337-3.03,4.644 c0,2.953,1.86,4.429,4.253,4.429c2.02,0,3.125-0.477,4.685-2.065c0.516,0.747,0.685,1.109,1.629,1.894 c0.212,0.114,0.483,0.103,0.672-0.066l0.006,0.006c0.567-0.505,1.599-1.401,2.18-1.888c0.231-0.188,0.19-0.496,0.009-0.754 c-0.52-0.718-1.072-1.303-1.072-2.634V8.305c0-1.876,0.133-3.599-1.249-4.891C15.23,2.369,13.422,2,12.04,2 C9.336,2,6.318,3.01,5.686,6.351C5.618,6.706,5.877,6.893,6.109,6.945l2.754,0.298C9.121,7.23,9.308,6.977,9.357,6.72 c0.236-1.151,1.2-1.706,2.284-1.706c0.584,0,1.249,0.215,1.595,0.738c0.398,0.584,0.346,1.384,0.346,2.061V8.182z M13.049,14.088 c-0.451,0.8-1.169,1.291-1.967,1.291c-1.09,0-1.728-0.83-1.728-2.061c0-2.42,2.171-2.86,4.227-2.86v0.615 C13.582,12.181,13.608,13.104,13.049,14.088z M20.683,19.339C18.329,21.076,14.917,22,11.979,22c-4.118,0-7.826-1.522-10.632-4.057 c-0.22-0.199-0.024-0.471,0.241-0.317c3.027,1.762,6.771,2.823,10.639,2.823c2.608,0,5.476-0.541,8.115-1.66 C20.739,18.62,21.072,19.051,20.683,19.339z M21.336,21.043c-0.194,0.163-0.379,0.076-0.293-0.139 c0.284-0.71,0.92-2.298,0.619-2.684c-0.301-0.386-1.99-0.183-2.749-0.092c-0.23,0.027-0.266-0.173-0.059-0.319 c1.348-0.946,3.555-0.673,3.811-0.356C22.925,17.773,22.599,19.986,21.336,21.043z"}))},{name:"bandcamp",attributes:{service:"bandcamp"},title:"Bandcamp",icon:()=>(0,ye.createElement)(fe.SVG,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1"},(0,ye.createElement)(fe.Path,{d:"M15.27 17.289 3 17.289 8.73 6.711 21 6.711 15.27 17.289"}))},{name:"behance",attributes:{service:"behance"},title:"Behance",icon:()=>(0,ye.createElement)(fe.SVG,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1"},(0,ye.createElement)(fe.Path,{d:"M7.799,5.698c0.589,0,1.12,0.051,1.606,0.156c0.482,0.102,0.894,0.273,1.241,0.507c0.344,0.235,0.612,0.546,0.804,0.938 c0.188,0.387,0.281,0.871,0.281,1.443c0,0.619-0.141,1.137-0.421,1.551c-0.284,0.413-0.7,0.751-1.255,1.014 c0.756,0.218,1.317,0.601,1.689,1.146c0.374,0.549,0.557,1.205,0.557,1.975c0,0.623-0.12,1.161-0.359,1.612 c-0.241,0.457-0.569,0.828-0.973,1.114c-0.408,0.288-0.876,0.5-1.399,0.637C9.052,17.931,8.514,18,7.963,18H2V5.698H7.799 M7.449,10.668c0.481,0,0.878-0.114,1.192-0.345c0.311-0.228,0.463-0.603,0.463-1.119c0-0.286-0.051-0.523-0.152-0.707 C8.848,8.315,8.711,8.171,8.536,8.07C8.362,7.966,8.166,7.894,7.94,7.854c-0.224-0.044-0.457-0.06-0.697-0.06H4.709v2.874H7.449z M7.6,15.905c0.267,0,0.521-0.024,0.759-0.077c0.243-0.053,0.457-0.137,0.637-0.261c0.182-0.12,0.332-0.283,0.441-0.491 C9.547,14.87,9.6,14.602,9.6,14.278c0-0.633-0.18-1.084-0.533-1.357c-0.356-0.27-0.83-0.404-1.413-0.404H4.709v3.388L7.6,15.905z M16.162,15.864c0.367,0.358,0.897,0.538,1.583,0.538c0.493,0,0.92-0.125,1.277-0.374c0.354-0.248,0.571-0.514,0.654-0.79h2.155 c-0.347,1.072-0.872,1.838-1.589,2.299C19.534,18,18.67,18.23,17.662,18.23c-0.701,0-1.332-0.113-1.899-0.337 c-0.567-0.227-1.041-0.544-1.439-0.958c-0.389-0.415-0.689-0.907-0.904-1.484c-0.213-0.574-0.32-1.21-0.32-1.899 c0-0.666,0.11-1.288,0.329-1.863c0.222-0.577,0.529-1.075,0.933-1.492c0.406-0.42,0.885-0.751,1.444-0.994 c0.558-0.241,1.175-0.363,1.857-0.363c0.754,0,1.414,0.145,1.98,0.44c0.563,0.291,1.026,0.686,1.389,1.181 c0.363,0.493,0.622,1.057,0.783,1.69c0.16,0.632,0.217,1.292,0.171,1.983h-6.428C15.557,14.84,15.795,15.506,16.162,15.864 M18.973,11.184c-0.291-0.321-0.783-0.496-1.384-0.496c-0.39,0-0.714,0.066-0.973,0.2c-0.254,0.132-0.461,0.297-0.621,0.491 c-0.157,0.197-0.265,0.405-0.328,0.628c-0.063,0.217-0.101,0.413-0.111,0.587h3.98C19.478,11.969,19.265,11.509,18.973,11.184z M15.057,7.738h4.985V6.524h-4.985L15.057,7.738z"}))},{name:"chain",attributes:{service:"chain"},title:"Link",icon:ig},{name:"codepen",attributes:{service:"codepen"},title:"CodePen",icon:()=>(0,ye.createElement)(fe.SVG,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1"},(0,ye.createElement)(fe.Path,{d:"M22.016,8.84c-0.002-0.013-0.005-0.025-0.007-0.037c-0.005-0.025-0.008-0.048-0.015-0.072 c-0.003-0.015-0.01-0.028-0.013-0.042c-0.008-0.02-0.015-0.04-0.023-0.062c-0.007-0.015-0.013-0.028-0.02-0.042 c-0.008-0.02-0.018-0.037-0.03-0.057c-0.007-0.013-0.017-0.027-0.025-0.038c-0.012-0.018-0.023-0.035-0.035-0.052 c-0.01-0.013-0.02-0.025-0.03-0.037c-0.015-0.017-0.028-0.032-0.043-0.045c-0.01-0.012-0.022-0.023-0.035-0.035 c-0.015-0.015-0.032-0.028-0.048-0.04c-0.012-0.01-0.025-0.02-0.037-0.03c-0.005-0.003-0.01-0.008-0.015-0.012l-9.161-6.096 c-0.289-0.192-0.666-0.192-0.955,0L2.359,8.237C2.354,8.24,2.349,8.245,2.344,8.249L2.306,8.277 c-0.017,0.013-0.033,0.027-0.048,0.04C2.246,8.331,2.234,8.342,2.222,8.352c-0.015,0.015-0.028,0.03-0.042,0.047 c-0.012,0.013-0.022,0.023-0.03,0.037C2.139,8.453,2.125,8.471,2.115,8.488C2.107,8.501,2.099,8.514,2.09,8.526 C2.079,8.548,2.069,8.565,2.06,8.585C2.054,8.6,2.047,8.613,2.04,8.626C2.032,8.648,2.025,8.67,2.019,8.69 c-0.005,0.013-0.01,0.027-0.013,0.042C1.999,8.755,1.995,8.778,1.99,8.803C1.989,8.817,1.985,8.828,1.984,8.84 C1.978,8.879,1.975,8.915,1.975,8.954v6.093c0,0.037,0.003,0.075,0.008,0.112c0.002,0.012,0.005,0.025,0.007,0.038 c0.005,0.023,0.008,0.047,0.015,0.072c0.003,0.015,0.008,0.028,0.013,0.04c0.007,0.022,0.013,0.042,0.022,0.063 c0.007,0.015,0.013,0.028,0.02,0.04c0.008,0.02,0.018,0.038,0.03,0.058c0.007,0.013,0.015,0.027,0.025,0.038 c0.012,0.018,0.023,0.035,0.035,0.052c0.01,0.013,0.02,0.025,0.03,0.037c0.013,0.015,0.028,0.032,0.042,0.045 c0.012,0.012,0.023,0.023,0.035,0.035c0.015,0.013,0.032,0.028,0.048,0.04l0.038,0.03c0.005,0.003,0.01,0.007,0.013,0.01 l9.163,6.095C11.668,21.953,11.833,22,12,22c0.167,0,0.332-0.047,0.478-0.144l9.163-6.095l0.015-0.01 c0.013-0.01,0.027-0.02,0.037-0.03c0.018-0.013,0.035-0.028,0.048-0.04c0.013-0.012,0.025-0.023,0.035-0.035 c0.017-0.015,0.03-0.032,0.043-0.045c0.01-0.013,0.02-0.025,0.03-0.037c0.013-0.018,0.025-0.035,0.035-0.052 c0.008-0.013,0.018-0.027,0.025-0.038c0.012-0.02,0.022-0.038,0.03-0.058c0.007-0.013,0.013-0.027,0.02-0.04 c0.008-0.022,0.015-0.042,0.023-0.063c0.003-0.013,0.01-0.027,0.013-0.04c0.007-0.025,0.01-0.048,0.015-0.072 c0.002-0.013,0.005-0.027,0.007-0.037c0.003-0.042,0.007-0.079,0.007-0.117V8.954C22.025,8.915,22.022,8.879,22.016,8.84z M12.862,4.464l6.751,4.49l-3.016,2.013l-3.735-2.492V4.464z M11.138,4.464v4.009l-3.735,2.494L4.389,8.954L11.138,4.464z M3.699,10.562L5.853,12l-2.155,1.438V10.562z M11.138,19.536l-6.749-4.491l3.015-2.011l3.735,2.492V19.536z M12,14.035L8.953,12 L12,9.966L15.047,12L12,14.035z M12.862,19.536v-4.009l3.735-2.492l3.016,2.011L12.862,19.536z M20.303,13.438L18.147,12 l2.156-1.438L20.303,13.438z"}))},{name:"deviantart",attributes:{service:"deviantart"},title:"DeviantArt",icon:()=>(0,ye.createElement)(fe.SVG,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1"},(0,ye.createElement)(fe.Path,{d:"M 18.19 5.636 18.19 2 18.188 2 14.553 2 14.19 2.366 12.474 5.636 11.935 6 5.81 6 5.81 10.994 9.177 10.994 9.477 11.357 5.81 18.363 5.81 22 5.811 22 9.447 22 9.81 21.634 11.526 18.364 12.065 18 18.19 18 18.19 13.006 14.823 13.006 14.523 12.641 18.19 5.636z"}))},{name:"dribbble",attributes:{service:"dribbble"},title:"Dribbble",icon:()=>(0,ye.createElement)(fe.SVG,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1"},(0,ye.createElement)(fe.Path,{d:"M12,22C6.486,22,2,17.514,2,12S6.486,2,12,2c5.514,0,10,4.486,10,10S17.514,22,12,22z M20.434,13.369 c-0.292-0.092-2.644-0.794-5.32-0.365c1.117,3.07,1.572,5.57,1.659,6.09C18.689,17.798,20.053,15.745,20.434,13.369z M15.336,19.876c-0.127-0.749-0.623-3.361-1.822-6.477c-0.019,0.006-0.038,0.013-0.056,0.019c-4.818,1.679-6.547,5.02-6.701,5.334 c1.448,1.129,3.268,1.803,5.243,1.803C13.183,20.555,14.311,20.313,15.336,19.876z M5.654,17.724 c0.193-0.331,2.538-4.213,6.943-5.637c0.111-0.036,0.224-0.07,0.337-0.102c-0.214-0.485-0.448-0.971-0.692-1.45 c-4.266,1.277-8.405,1.223-8.778,1.216c-0.003,0.087-0.004,0.174-0.004,0.261C3.458,14.207,4.29,16.21,5.654,17.724z M3.639,10.264 c0.382,0.005,3.901,0.02,7.897-1.041c-1.415-2.516-2.942-4.631-3.167-4.94C5.979,5.41,4.193,7.613,3.639,10.264z M9.998,3.709 c0.236,0.316,1.787,2.429,3.187,5c3.037-1.138,4.323-2.867,4.477-3.085C16.154,4.286,14.17,3.471,12,3.471 C11.311,3.471,10.641,3.554,9.998,3.709z M18.612,6.612C18.432,6.855,17,8.69,13.842,9.979c0.199,0.407,0.389,0.821,0.567,1.237 c0.063,0.148,0.124,0.295,0.184,0.441c2.842-0.357,5.666,0.215,5.948,0.275C20.522,9.916,19.801,8.065,18.612,6.612z"}))},{name:"dropbox",attributes:{service:"dropbox"},title:"Dropbox",icon:()=>(0,ye.createElement)(fe.SVG,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1"},(0,ye.createElement)(fe.Path,{d:"M12,6.134L6.069,9.797L2,6.54l5.883-3.843L12,6.134z M2,13.054l5.883,3.843L12,13.459L6.069,9.797L2,13.054z M12,13.459 l4.116,3.439L22,13.054l-4.069-3.257L12,13.459z M22,6.54l-5.884-3.843L12,6.134l5.931,3.663L22,6.54z M12.011,14.2l-4.129,3.426 l-1.767-1.153v1.291l5.896,3.539l5.897-3.539v-1.291l-1.769,1.153L12.011,14.2z"}))},{name:"etsy",attributes:{service:"etsy"},title:"Etsy",icon:()=>(0,ye.createElement)(fe.SVG,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1"},(0,ye.createElement)(fe.Path,{d:"M9.16033,4.038c0-.27174.02717-.43478.48913-.43478h6.22283c1.087,0,1.68478.92391,2.11957,2.663l.35326,1.38587h1.05978C19.59511,3.712,19.75815,2,19.75815,2s-2.663.29891-4.23913.29891h-7.962L3.29076,2.163v1.1413L4.731,3.57609c1.00543.19022,1.25.40761,1.33152,1.33152,0,0,.08152,2.71739.08152,7.20109s-.08152,7.17391-.08152,7.17391c0,.81522-.32609,1.11413-1.33152,1.30435l-1.44022.27174V22l4.2663-.13587h7.11957c1.60326,0,5.32609.13587,5.32609.13587.08152-.97826.625-5.40761.70652-5.89674H19.7038L18.644,18.52174c-.84239,1.90217-2.06522,2.038-3.42391,2.038H11.1712c-1.3587,0-2.01087-.54348-2.01087-1.712V12.65217s3.0163,0,3.99457.08152c.76087.05435,1.22283.27174,1.46739,1.33152l.32609,1.413h1.16848l-.08152-3.55978.163-3.587H15.02989l-.38043,1.57609c-.24457,1.03261-.40761,1.22283-1.46739,1.33152-1.38587.13587-4.02174.1087-4.02174.1087Z"}))},{name:"facebook",attributes:{service:"facebook"},title:"Facebook",icon:()=>(0,ye.createElement)(fe.SVG,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1"},(0,ye.createElement)(fe.Path,{d:"M12 2C6.5 2 2 6.5 2 12c0 5 3.7 9.1 8.4 9.9v-7H7.9V12h2.5V9.8c0-2.5 1.5-3.9 3.8-3.9 1.1 0 2.2.2 2.2.2v2.5h-1.3c-1.2 0-1.6.8-1.6 1.6V12h2.8l-.4 2.9h-2.3v7C18.3 21.1 22 17 22 12c0-5.5-4.5-10-10-10z"}))},{name:"feed",attributes:{service:"feed"},title:"RSS Feed",icon:()=>(0,ye.createElement)(fe.SVG,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1"},(0,ye.createElement)(fe.Path,{d:"M2,8.667V12c5.515,0,10,4.485,10,10h3.333C15.333,14.637,9.363,8.667,2,8.667z M2,2v3.333 c9.19,0,16.667,7.477,16.667,16.667H22C22,10.955,13.045,2,2,2z M4.5,17C3.118,17,2,18.12,2,19.5S3.118,22,4.5,22S7,20.88,7,19.5 S5.882,17,4.5,17z"}))},{name:"flickr",attributes:{service:"flickr"},title:"Flickr",icon:()=>(0,ye.createElement)(fe.SVG,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1"},(0,ye.createElement)(fe.Path,{d:"M6.5,7c-2.75,0-5,2.25-5,5s2.25,5,5,5s5-2.25,5-5S9.25,7,6.5,7z M17.5,7c-2.75,0-5,2.25-5,5s2.25,5,5,5s5-2.25,5-5 S20.25,7,17.5,7z"}))},{name:"foursquare",attributes:{service:"foursquare"},title:"Foursquare",icon:()=>(0,ye.createElement)(fe.SVG,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1"},(0,ye.createElement)(fe.Path,{d:"M17.573,2c0,0-9.197,0-10.668,0S5,3.107,5,3.805s0,16.948,0,16.948c0,0.785,0.422,1.077,0.66,1.172 c0.238,0.097,0.892,0.177,1.285-0.275c0,0,5.035-5.843,5.122-5.93c0.132-0.132,0.132-0.132,0.262-0.132h3.26 c1.368,0,1.588-0.977,1.732-1.552c0.078-0.318,0.692-3.428,1.225-6.122l0.675-3.368C19.56,2.893,19.14,2,17.573,2z M16.495,7.22 c-0.053,0.252-0.372,0.518-0.665,0.518c-0.293,0-4.157,0-4.157,0c-0.467,0-0.802,0.318-0.802,0.787v0.508 c0,0.467,0.337,0.798,0.805,0.798c0,0,3.197,0,3.528,0s0.655,0.362,0.583,0.715c-0.072,0.353-0.407,2.102-0.448,2.295 c-0.04,0.193-0.262,0.523-0.655,0.523c-0.33,0-2.88,0-2.88,0c-0.523,0-0.683,0.068-1.033,0.503 c-0.35,0.437-3.505,4.223-3.505,4.223c-0.032,0.035-0.063,0.027-0.063-0.015V4.852c0-0.298,0.26-0.648,0.648-0.648 c0,0,8.228,0,8.562,0c0.315,0,0.61,0.297,0.528,0.683L16.495,7.22z"}))},{name:"goodreads",attributes:{service:"goodreads"},title:"Goodreads",icon:()=>(0,ye.createElement)(fe.SVG,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1"},(0,ye.createElement)(fe.Path,{d:"M17.3,17.5c-0.2,0.8-0.5,1.4-1,1.9c-0.4,0.5-1,0.9-1.7,1.2C13.9,20.9,13.1,21,12,21c-0.6,0-1.3-0.1-1.9-0.2 c-0.6-0.1-1.1-0.4-1.6-0.7c-0.5-0.3-0.9-0.7-1.2-1.2c-0.3-0.5-0.5-1.1-0.5-1.7h1.5c0.1,0.5,0.2,0.9,0.5,1.2 c0.2,0.3,0.5,0.6,0.9,0.8c0.3,0.2,0.7,0.3,1.1,0.4c0.4,0.1,0.8,0.1,1.2,0.1c1.4,0,2.5-0.4,3.1-1.2c0.6-0.8,1-2,1-3.5v-1.7h0 c-0.4,0.8-0.9,1.4-1.6,1.9c-0.7,0.5-1.5,0.7-2.4,0.7c-1,0-1.9-0.2-2.6-0.5C8.7,15,8.1,14.5,7.7,14c-0.5-0.6-0.8-1.3-1-2.1 c-0.2-0.8-0.3-1.6-0.3-2.5c0-0.9,0.1-1.7,0.4-2.5c0.3-0.8,0.6-1.5,1.1-2c0.5-0.6,1.1-1,1.8-1.4C10.3,3.2,11.1,3,12,3 c0.5,0,0.9,0.1,1.3,0.2c0.4,0.1,0.8,0.3,1.1,0.5c0.3,0.2,0.6,0.5,0.9,0.8c0.3,0.3,0.5,0.6,0.6,1h0V3.4h1.5V15 C17.6,15.9,17.5,16.7,17.3,17.5z M13.8,14.1c0.5-0.3,0.9-0.7,1.3-1.1c0.3-0.5,0.6-1,0.8-1.6c0.2-0.6,0.3-1.2,0.3-1.9 c0-0.6-0.1-1.2-0.2-1.9c-0.1-0.6-0.4-1.2-0.7-1.7c-0.3-0.5-0.7-0.9-1.3-1.2c-0.5-0.3-1.1-0.5-1.9-0.5s-1.4,0.2-1.9,0.5 c-0.5,0.3-1,0.7-1.3,1.2C8.5,6.4,8.3,7,8.1,7.6C8,8.2,7.9,8.9,7.9,9.5c0,0.6,0.1,1.3,0.2,1.9C8.3,12,8.6,12.5,8.9,13 c0.3,0.5,0.8,0.8,1.3,1.1c0.5,0.3,1.1,0.4,1.9,0.4C12.7,14.5,13.3,14.4,13.8,14.1z"}))},{name:"google",attributes:{service:"google"},title:"Google",icon:()=>(0,ye.createElement)(fe.SVG,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1"},(0,ye.createElement)(fe.Path,{d:"M12.02,10.18v3.72v0.01h5.51c-0.26,1.57-1.67,4.22-5.5,4.22c-3.31,0-6.01-2.75-6.01-6.12s2.7-6.12,6.01-6.12 c1.87,0,3.13,0.8,3.85,1.48l2.84-2.76C16.99,2.99,14.73,2,12.03,2c-5.52,0-10,4.48-10,10s4.48,10,10,10c5.77,0,9.6-4.06,9.6-9.77 c0-0.83-0.11-1.42-0.25-2.05H12.02z"}))},{name:"github",attributes:{service:"github"},title:"GitHub",icon:()=>(0,ye.createElement)(fe.SVG,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1"},(0,ye.createElement)(fe.Path,{d:"M12,2C6.477,2,2,6.477,2,12c0,4.419,2.865,8.166,6.839,9.489c0.5,0.09,0.682-0.218,0.682-0.484 c0-0.236-0.009-0.866-0.014-1.699c-2.782,0.602-3.369-1.34-3.369-1.34c-0.455-1.157-1.11-1.465-1.11-1.465 c-0.909-0.62,0.069-0.608,0.069-0.608c1.004,0.071,1.532,1.03,1.532,1.03c0.891,1.529,2.341,1.089,2.91,0.833 c0.091-0.647,0.349-1.086,0.635-1.337c-2.22-0.251-4.555-1.111-4.555-4.943c0-1.091,0.39-1.984,1.03-2.682 C6.546,8.54,6.202,7.524,6.746,6.148c0,0,0.84-0.269,2.75,1.025C10.295,6.95,11.15,6.84,12,6.836 c0.85,0.004,1.705,0.114,2.504,0.336c1.909-1.294,2.748-1.025,2.748-1.025c0.546,1.376,0.202,2.394,0.1,2.646 c0.64,0.699,1.026,1.591,1.026,2.682c0,3.841-2.337,4.687-4.565,4.935c0.359,0.307,0.679,0.917,0.679,1.852 c0,1.335-0.012,2.415-0.012,2.741c0,0.269,0.18,0.579,0.688,0.481C19.138,20.161,22,16.416,22,12C22,6.477,17.523,2,12,2z"}))},{name:"instagram",attributes:{service:"instagram"},title:"Instagram",icon:()=>(0,ye.createElement)(fe.SVG,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1"},(0,ye.createElement)(fe.Path,{d:"M12,4.622c2.403,0,2.688,0.009,3.637,0.052c0.877,0.04,1.354,0.187,1.671,0.31c0.42,0.163,0.72,0.358,1.035,0.673 c0.315,0.315,0.51,0.615,0.673,1.035c0.123,0.317,0.27,0.794,0.31,1.671c0.043,0.949,0.052,1.234,0.052,3.637 s-0.009,2.688-0.052,3.637c-0.04,0.877-0.187,1.354-0.31,1.671c-0.163,0.42-0.358,0.72-0.673,1.035 c-0.315,0.315-0.615,0.51-1.035,0.673c-0.317,0.123-0.794,0.27-1.671,0.31c-0.949,0.043-1.233,0.052-3.637,0.052 s-2.688-0.009-3.637-0.052c-0.877-0.04-1.354-0.187-1.671-0.31c-0.42-0.163-0.72-0.358-1.035-0.673 c-0.315-0.315-0.51-0.615-0.673-1.035c-0.123-0.317-0.27-0.794-0.31-1.671C4.631,14.688,4.622,14.403,4.622,12 s0.009-2.688,0.052-3.637c0.04-0.877,0.187-1.354,0.31-1.671c0.163-0.42,0.358-0.72,0.673-1.035 c0.315-0.315,0.615-0.51,1.035-0.673c0.317-0.123,0.794-0.27,1.671-0.31C9.312,4.631,9.597,4.622,12,4.622 M12,3 C9.556,3,9.249,3.01,8.289,3.054C7.331,3.098,6.677,3.25,6.105,3.472C5.513,3.702,5.011,4.01,4.511,4.511 c-0.5,0.5-0.808,1.002-1.038,1.594C3.25,6.677,3.098,7.331,3.054,8.289C3.01,9.249,3,9.556,3,12c0,2.444,0.01,2.751,0.054,3.711 c0.044,0.958,0.196,1.612,0.418,2.185c0.23,0.592,0.538,1.094,1.038,1.594c0.5,0.5,1.002,0.808,1.594,1.038 c0.572,0.222,1.227,0.375,2.185,0.418C9.249,20.99,9.556,21,12,21s2.751-0.01,3.711-0.054c0.958-0.044,1.612-0.196,2.185-0.418 c0.592-0.23,1.094-0.538,1.594-1.038c0.5-0.5,0.808-1.002,1.038-1.594c0.222-0.572,0.375-1.227,0.418-2.185 C20.99,14.751,21,14.444,21,12s-0.01-2.751-0.054-3.711c-0.044-0.958-0.196-1.612-0.418-2.185c-0.23-0.592-0.538-1.094-1.038-1.594 c-0.5-0.5-1.002-0.808-1.594-1.038c-0.572-0.222-1.227-0.375-2.185-0.418C14.751,3.01,14.444,3,12,3L12,3z M12,7.378 c-2.552,0-4.622,2.069-4.622,4.622S9.448,16.622,12,16.622s4.622-2.069,4.622-4.622S14.552,7.378,12,7.378z M12,15 c-1.657,0-3-1.343-3-3s1.343-3,3-3s3,1.343,3,3S13.657,15,12,15z M16.804,6.116c-0.596,0-1.08,0.484-1.08,1.08 s0.484,1.08,1.08,1.08c0.596,0,1.08-0.484,1.08-1.08S17.401,6.116,16.804,6.116z"}))},{name:"lastfm",attributes:{service:"lastfm"},title:"Last.fm",icon:()=>(0,ye.createElement)(fe.SVG,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1"},(0,ye.createElement)(fe.Path,{d:"M 12.0002 1.5 C 6.2006 1.5 1.5 6.2011 1.5 11.9998 C 1.5 17.799 6.2006 22.5 12.0002 22.5 C 17.799 22.5 22.5 17.799 22.5 11.9998 C 22.5 6.2011 17.799 1.5 12.0002 1.5 Z M 16.1974 16.2204 C 14.8164 16.2152 13.9346 15.587 13.3345 14.1859 L 13.1816 13.8451 L 11.8541 10.8101 C 11.4271 9.7688 10.3526 9.0712 9.1801 9.0712 C 7.5695 9.0712 6.2593 10.3851 6.2593 12.001 C 6.2593 13.6165 7.5695 14.9303 9.1801 14.9303 C 10.272 14.9303 11.2651 14.3275 11.772 13.3567 C 11.7893 13.3235 11.8239 13.302 11.863 13.3038 C 11.9007 13.3054 11.9353 13.3288 11.9504 13.3632 L 12.4865 14.6046 C 12.5016 14.639 12.4956 14.6778 12.4723 14.7069 C 11.6605 15.6995 10.4602 16.2683 9.1801 16.2683 C 6.8331 16.2683 4.9234 14.3536 4.9234 12.001 C 4.9234 9.6468 6.833 7.732 9.1801 7.732 C 10.9572 7.732 12.3909 8.6907 13.1138 10.3636 C 13.1206 10.3802 13.8412 12.0708 14.4744 13.5191 C 14.8486 14.374 15.1462 14.896 16.1288 14.9292 C 17.0663 14.9613 17.7538 14.4122 17.7538 13.6485 C 17.7538 12.9691 17.3321 12.8004 16.3803 12.4822 C 14.7365 11.9398 13.845 11.3861 13.845 10.0182 C 13.845 8.6809 14.7667 7.8162 16.192 7.8162 C 17.1288 7.8162 17.8155 8.2287 18.2921 9.0768 C 18.305 9.1006 18.3079 9.1281 18.3004 9.1542 C 18.2929 9.1803 18.2748 9.2021 18.2507 9.2138 L 17.3614 9.669 C 17.3178 9.692 17.2643 9.6781 17.2356 9.6385 C 16.9329 9.2135 16.5956 9.0251 16.1423 9.0251 C 15.5512 9.0251 15.122 9.429 15.122 9.9865 C 15.122 10.6738 15.6529 10.8414 16.5339 11.1192 C 16.6491 11.1558 16.7696 11.194 16.8939 11.2343 C 18.2763 11.6865 19.0768 12.2311 19.0768 13.6836 C 19.0769 15.1297 17.8389 16.2204 16.1974 16.2204 Z"}))},{name:"linkedin",attributes:{service:"linkedin"},title:"LinkedIn",icon:()=>(0,ye.createElement)(fe.SVG,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1"},(0,ye.createElement)(fe.Path,{d:"M19.7,3H4.3C3.582,3,3,3.582,3,4.3v15.4C3,20.418,3.582,21,4.3,21h15.4c0.718,0,1.3-0.582,1.3-1.3V4.3 C21,3.582,20.418,3,19.7,3z M8.339,18.338H5.667v-8.59h2.672V18.338z M7.004,8.574c-0.857,0-1.549-0.694-1.549-1.548 c0-0.855,0.691-1.548,1.549-1.548c0.854,0,1.547,0.694,1.547,1.548C8.551,7.881,7.858,8.574,7.004,8.574z M18.339,18.338h-2.669 v-4.177c0-0.996-0.017-2.278-1.387-2.278c-1.389,0-1.601,1.086-1.601,2.206v4.249h-2.667v-8.59h2.559v1.174h0.037 c0.356-0.675,1.227-1.387,2.526-1.387c2.703,0,3.203,1.779,3.203,4.092V18.338z"}))},{name:"mail",attributes:{service:"mail"},title:"Mail",keywords:["email","e-mail"],icon:()=>(0,ye.createElement)(fe.SVG,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1"},(0,ye.createElement)(fe.Path,{d:"M20,4H4C2.895,4,2,4.895,2,6v12c0,1.105,0.895,2,2,2h16c1.105,0,2-0.895,2-2V6C22,4.895,21.105,4,20,4z M20,8.236l-8,4.882 L4,8.236V6h16V8.236z"}))},{name:"mastodon",attributes:{service:"mastodon"},title:"Mastodon",icon:()=>(0,ye.createElement)(fe.SVG,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1"},(0,ye.createElement)(fe.Path,{d:"M23.193 7.879c0-5.206-3.411-6.732-3.411-6.732C18.062.357 15.108.025 12.041 0h-.076c-3.068.025-6.02.357-7.74 1.147 0 0-3.411 1.526-3.411 6.732 0 1.192-.023 2.618.015 4.129.124 5.092.934 10.109 5.641 11.355 2.17.574 4.034.695 5.535.612 2.722-.15 4.25-.972 4.25-.972l-.09-1.975s-1.945.613-4.129.539c-2.165-.074-4.449-.233-4.799-2.891a5.499 5.499 0 0 1-.048-.745s2.125.52 4.817.643c1.646.075 3.19-.097 4.758-.283 3.007-.359 5.625-2.212 5.954-3.905.517-2.665.475-6.507.475-6.507zm-4.024 6.709h-2.497V8.469c0-1.29-.543-1.944-1.628-1.944-1.2 0-1.802.776-1.802 2.312v3.349h-2.483v-3.35c0-1.536-.602-2.312-1.802-2.312-1.085 0-1.628.655-1.628 1.944v6.119H4.832V8.284c0-1.289.328-2.313.987-3.07.68-.758 1.569-1.146 2.674-1.146 1.278 0 2.246.491 2.886 1.474L12 6.585l.622-1.043c.64-.983 1.608-1.474 2.886-1.474 1.104 0 1.994.388 2.674 1.146.658.757.986 1.781.986 3.07v6.304z"}))},{name:"meetup",attributes:{service:"meetup"},title:"Meetup",icon:()=>(0,ye.createElement)(fe.SVG,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1"},(0,ye.createElement)(fe.Path,{d:"M19.24775,14.722a3.57032,3.57032,0,0,1-2.94457,3.52073,3.61886,3.61886,0,0,1-.64652.05634c-.07314-.0008-.10187.02846-.12507.09547A2.38881,2.38881,0,0,1,13.49453,20.094a2.33092,2.33092,0,0,1-1.827-.50716.13635.13635,0,0,0-.19878-.00408,3.191,3.191,0,0,1-2.104.60248,3.26309,3.26309,0,0,1-3.00324-2.71993,2.19076,2.19076,0,0,1-.03512-.30865c-.00156-.08579-.03413-.1189-.11608-.13493a2.86421,2.86421,0,0,1-1.23189-.56111,2.945,2.945,0,0,1-1.166-2.05749,2.97484,2.97484,0,0,1,.87524-2.50774.112.112,0,0,0,.02091-.16107,2.7213,2.7213,0,0,1-.36648-1.48A2.81256,2.81256,0,0,1,6.57673,7.58838a.35764.35764,0,0,0,.28869-.22819,4.2208,4.2208,0,0,1,6.02892-1.90111.25161.25161,0,0,0,.22023.0243,3.65608,3.65608,0,0,1,3.76031.90678A3.57244,3.57244,0,0,1,17.95918,8.626a2.97339,2.97339,0,0,1,.01829.57356.10637.10637,0,0,0,.0853.12792,1.97669,1.97669,0,0,1,1.27939,1.33733,2.00266,2.00266,0,0,1-.57112,2.12652c-.05284.05166-.04168.08328-.01173.13489A3.51189,3.51189,0,0,1,19.24775,14.722Zm-6.35959-.27836a1.6984,1.6984,0,0,0,1.14556,1.61113,3.82039,3.82039,0,0,0,1.036.17935,1.46888,1.46888,0,0,0,.73509-.12255.44082.44082,0,0,0,.26057-.44274.45312.45312,0,0,0-.29211-.43375.97191.97191,0,0,0-.20678-.063c-.21326-.03806-.42754-.0701-.63973-.11215a.54787.54787,0,0,1-.50172-.60926,2.75864,2.75864,0,0,1,.1773-.901c.1763-.535.414-1.045.64183-1.55913A12.686,12.686,0,0,0,15.85,10.47863a1.58461,1.58461,0,0,0,.04861-.87208,1.04531,1.04531,0,0,0-.85432-.83981,1.60658,1.60658,0,0,0-1.23654.16594.27593.27593,0,0,1-.36286-.03413c-.085-.0747-.16594-.15379-.24918-.23055a.98682.98682,0,0,0-1.33577-.04933,6.1468,6.1468,0,0,1-.4989.41615.47762.47762,0,0,1-.51535.03566c-.17448-.09307-.35512-.175-.53531-.25665a1.74949,1.74949,0,0,0-.56476-.2016,1.69943,1.69943,0,0,0-1.61654.91787,8.05815,8.05815,0,0,0-.32952.80126c-.45471,1.2557-.82507,2.53825-1.20838,3.81639a1.24151,1.24151,0,0,0,.51532,1.44389,1.42659,1.42659,0,0,0,1.22008.17166,1.09728,1.09728,0,0,0,.66994-.69764c.44145-1.04111.839-2.09989,1.25981-3.14926.11581-.28876.22792-.57874.35078-.86438a.44548.44548,0,0,1,.69189-.19539.50521.50521,0,0,1,.15044.43836,1.75625,1.75625,0,0,1-.14731.50453c-.27379.69219-.55265,1.38236-.82766,2.074a2.0836,2.0836,0,0,0-.14038.42876.50719.50719,0,0,0,.27082.57722.87236.87236,0,0,0,.66145.02739.99137.99137,0,0,0,.53406-.532q.61571-1.20914,1.228-2.42031.28423-.55863.57585-1.1133a.87189.87189,0,0,1,.29055-.35253.34987.34987,0,0,1,.37634-.01265.30291.30291,0,0,1,.12434.31459.56716.56716,0,0,1-.04655.1915c-.05318.12739-.10286.25669-.16183.38156-.34118.71775-.68754,1.43273-1.02568,2.152A2.00213,2.00213,0,0,0,12.88816,14.44366Zm4.78568,5.28972a.88573.88573,0,0,0-1.77139.00465.8857.8857,0,0,0,1.77139-.00465Zm-14.83838-7.296a.84329.84329,0,1,0,.00827-1.68655.8433.8433,0,0,0-.00827,1.68655Zm10.366-9.43673a.83506.83506,0,1,0-.0091,1.67.83505.83505,0,0,0,.0091-1.67Zm6.85014,5.22a.71651.71651,0,0,0-1.433.0093.71656.71656,0,0,0,1.433-.0093ZM5.37528,6.17908A.63823.63823,0,1,0,6.015,5.54483.62292.62292,0,0,0,5.37528,6.17908Zm6.68214,14.80843a.54949.54949,0,1,0-.55052.541A.54556.54556,0,0,0,12.05742,20.98752Zm8.53235-8.49689a.54777.54777,0,0,0-.54027.54023.53327.53327,0,0,0,.532.52293.51548.51548,0,0,0,.53272-.5237A.53187.53187,0,0,0,20.58977,12.49063ZM7.82846,2.4715a.44927.44927,0,1,0,.44484.44766A.43821.43821,0,0,0,7.82846,2.4715Zm13.775,7.60492a.41186.41186,0,0,0-.40065.39623.40178.40178,0,0,0,.40168.40168A.38994.38994,0,0,0,22,10.48172.39946.39946,0,0,0,21.60349,10.07642ZM5.79193,17.96207a.40469.40469,0,0,0-.397-.39646.399.399,0,0,0-.396.405.39234.39234,0,0,0,.39939.389A.39857.39857,0,0,0,5.79193,17.96207Z"}))},{name:"medium",attributes:{service:"medium"},title:"Medium",icon:()=>(0,ye.createElement)(fe.SVG,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1"},(0,ye.createElement)(fe.Path,{d:"M20.962,7.257l-5.457,8.867l-3.923-6.375l3.126-5.08c0.112-0.182,0.319-0.286,0.527-0.286c0.05,0,0.1,0.008,0.149,0.02 c0.039,0.01,0.078,0.023,0.114,0.041l5.43,2.715l0.006,0.003c0.004,0.002,0.007,0.006,0.011,0.008 C20.971,7.191,20.98,7.227,20.962,7.257z M9.86,8.592v5.783l5.14,2.57L9.86,8.592z M15.772,17.331l4.231,2.115 C20.554,19.721,21,19.529,21,19.016V8.835L15.772,17.331z M8.968,7.178L3.665,4.527C3.569,4.479,3.478,4.456,3.395,4.456 C3.163,4.456,3,4.636,3,4.938v11.45c0,0.306,0.224,0.669,0.498,0.806l4.671,2.335c0.12,0.06,0.234,0.088,0.337,0.088 c0.29,0,0.494-0.225,0.494-0.602V7.231C9,7.208,8.988,7.188,8.968,7.178z"}))},{name:"patreon",attributes:{service:"patreon"},title:"Patreon",icon:()=>(0,ye.createElement)(fe.SVG,{width:"24",height:"24",viewBox:"0 0 569 546",version:"1.1"},(0,ye.createElement)(fe.Circle,{cx:"363",cy:"205",r:"205"}),(0,ye.createElement)(fe.Rect,{width:"100",height:"546",x:"0",y:"0"}))},{name:"pinterest",attributes:{service:"pinterest"},title:"Pinterest",icon:()=>(0,ye.createElement)(fe.SVG,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1"},(0,ye.createElement)(fe.Path,{d:"M12.289,2C6.617,2,3.606,5.648,3.606,9.622c0,1.846,1.025,4.146,2.666,4.878c0.25,0.111,0.381,0.063,0.439-0.169 c0.044-0.175,0.267-1.029,0.365-1.428c0.032-0.128,0.017-0.237-0.091-0.362C6.445,11.911,6.01,10.75,6.01,9.668 c0-2.777,2.194-5.464,5.933-5.464c3.23,0,5.49,2.108,5.49,5.122c0,3.407-1.794,5.768-4.13,5.768c-1.291,0-2.257-1.021-1.948-2.277 c0.372-1.495,1.089-3.112,1.089-4.191c0-0.967-0.542-1.775-1.663-1.775c-1.319,0-2.379,1.309-2.379,3.059 c0,1.115,0.394,1.869,0.394,1.869s-1.302,5.279-1.54,6.261c-0.405,1.666,0.053,4.368,0.094,4.604 c0.021,0.126,0.167,0.169,0.25,0.063c0.129-0.165,1.699-2.419,2.142-4.051c0.158-0.59,0.817-2.995,0.817-2.995 c0.43,0.784,1.681,1.446,3.013,1.446c3.963,0,6.822-3.494,6.822-7.833C20.394,5.112,16.849,2,12.289,2"}))},{name:"pocket",attributes:{service:"pocket"},title:"Pocket",icon:()=>(0,ye.createElement)(fe.SVG,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1"},(0,ye.createElement)(fe.Path,{d:"M21.927,4.194C21.667,3.48,20.982,3,20.222,3h-0.01h-1.721H3.839C3.092,3,2.411,3.47,2.145,4.17 C2.066,4.378,2.026,4.594,2.026,4.814v6.035l0.069,1.2c0.29,2.73,1.707,5.115,3.899,6.778c0.039,0.03,0.079,0.059,0.119,0.089 l0.025,0.018c1.175,0.859,2.491,1.441,3.91,1.727c0.655,0.132,1.325,0.2,1.991,0.2c0.615,0,1.232-0.057,1.839-0.17 c0.073-0.014,0.145-0.028,0.219-0.044c0.02-0.004,0.042-0.012,0.064-0.023c1.359-0.297,2.621-0.864,3.753-1.691l0.025-0.018 c0.04-0.029,0.08-0.058,0.119-0.089c2.192-1.664,3.609-4.049,3.898-6.778l0.069-1.2V4.814C22.026,4.605,22,4.398,21.927,4.194z M17.692,10.481l-4.704,4.512c-0.266,0.254-0.608,0.382-0.949,0.382c-0.342,0-0.684-0.128-0.949-0.382l-4.705-4.512 C5.838,9.957,5.82,9.089,6.344,8.542c0.524-0.547,1.392-0.565,1.939-0.04l3.756,3.601l3.755-3.601 c0.547-0.524,1.415-0.506,1.939,0.04C18.256,9.089,18.238,9.956,17.692,10.481z"}))},{name:"reddit",attributes:{service:"reddit"},title:"Reddit",icon:()=>(0,ye.createElement)(fe.SVG,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1"},(0,ye.createElement)(fe.Path,{d:"M22,11.816c0-1.256-1.021-2.277-2.277-2.277c-0.593,0-1.122,0.24-1.526,0.614c-1.481-0.965-3.455-1.594-5.647-1.69 l1.171-3.702l3.18,0.748c0.008,1.028,0.846,1.862,1.876,1.862c1.035,0,1.877-0.842,1.877-1.878c0-1.035-0.842-1.877-1.877-1.877 c-0.769,0-1.431,0.466-1.72,1.13l-3.508-0.826c-0.203-0.047-0.399,0.067-0.46,0.261l-1.35,4.268 c-2.316,0.038-4.411,0.67-5.97,1.671C5.368,9.765,4.853,9.539,4.277,9.539C3.021,9.539,2,10.56,2,11.816 c0,0.814,0.433,1.523,1.078,1.925c-0.037,0.221-0.061,0.444-0.061,0.672c0,3.292,4.011,5.97,8.941,5.97s8.941-2.678,8.941-5.97 c0-0.214-0.02-0.424-0.053-0.632C21.533,13.39,22,12.661,22,11.816z M18.776,4.394c0.606,0,1.1,0.493,1.1,1.1s-0.493,1.1-1.1,1.1 s-1.1-0.494-1.1-1.1S18.169,4.394,18.776,4.394z M2.777,11.816c0-0.827,0.672-1.5,1.499-1.5c0.313,0,0.598,0.103,0.838,0.269 c-0.851,0.676-1.477,1.479-1.812,2.36C2.983,12.672,2.777,12.27,2.777,11.816z M11.959,19.606c-4.501,0-8.164-2.329-8.164-5.193 S7.457,9.22,11.959,9.22s8.164,2.329,8.164,5.193S16.46,19.606,11.959,19.606z M20.636,13.001c-0.326-0.89-0.948-1.701-1.797-2.384 c0.248-0.186,0.55-0.301,0.883-0.301c0.827,0,1.5,0.673,1.5,1.5C21.223,12.299,20.992,12.727,20.636,13.001z M8.996,14.704 c-0.76,0-1.397-0.616-1.397-1.376c0-0.76,0.637-1.397,1.397-1.397c0.76,0,1.376,0.637,1.376,1.397 C10.372,14.088,9.756,14.704,8.996,14.704z M16.401,13.328c0,0.76-0.616,1.376-1.376,1.376c-0.76,0-1.399-0.616-1.399-1.376 c0-0.76,0.639-1.397,1.399-1.397C15.785,11.931,16.401,12.568,16.401,13.328z M15.229,16.708c0.152,0.152,0.152,0.398,0,0.55 c-0.674,0.674-1.727,1.002-3.219,1.002c-0.004,0-0.007-0.002-0.011-0.002c-0.004,0-0.007,0.002-0.011,0.002 c-1.492,0-2.544-0.328-3.218-1.002c-0.152-0.152-0.152-0.398,0-0.55c0.152-0.152,0.399-0.151,0.55,0 c0.521,0.521,1.394,0.775,2.669,0.775c0.004,0,0.007,0.002,0.011,0.002c0.004,0,0.007-0.002,0.011-0.002 c1.275,0,2.148-0.253,2.669-0.775C14.831,16.556,15.078,16.556,15.229,16.708z"}))},{name:"skype",attributes:{service:"skype"},title:"Skype",icon:()=>(0,ye.createElement)(fe.SVG,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1"},(0,ye.createElement)(fe.Path,{d:"M10.113,2.699c0.033-0.006,0.067-0.013,0.1-0.02c0.033,0.017,0.066,0.033,0.098,0.051L10.113,2.699z M2.72,10.223 c-0.006,0.034-0.011,0.069-0.017,0.103c0.018,0.032,0.033,0.064,0.051,0.095L2.72,10.223z M21.275,13.771 c0.007-0.035,0.011-0.071,0.018-0.106c-0.018-0.031-0.033-0.064-0.052-0.095L21.275,13.771z M13.563,21.199 c0.032,0.019,0.065,0.035,0.096,0.053c0.036-0.006,0.071-0.011,0.105-0.017L13.563,21.199z M22,16.386 c0,1.494-0.581,2.898-1.637,3.953c-1.056,1.057-2.459,1.637-3.953,1.637c-0.967,0-1.914-0.251-2.75-0.725 c0.036-0.006,0.071-0.011,0.105-0.017l-0.202-0.035c0.032,0.019,0.065,0.035,0.096,0.053c-0.543,0.096-1.099,0.147-1.654,0.147 c-1.275,0-2.512-0.25-3.676-0.743c-1.125-0.474-2.135-1.156-3.002-2.023c-0.867-0.867-1.548-1.877-2.023-3.002 c-0.493-1.164-0.743-2.401-0.743-3.676c0-0.546,0.049-1.093,0.142-1.628c0.018,0.032,0.033,0.064,0.051,0.095L2.72,10.223 c-0.006,0.034-0.011,0.069-0.017,0.103C2.244,9.5,2,8.566,2,7.615c0-1.493,0.582-2.898,1.637-3.953 c1.056-1.056,2.46-1.638,3.953-1.638c0.915,0,1.818,0.228,2.622,0.655c-0.033,0.007-0.067,0.013-0.1,0.02l0.199,0.031 c-0.032-0.018-0.066-0.034-0.098-0.051c0.002,0,0.003-0.001,0.004-0.001c0.586-0.112,1.187-0.169,1.788-0.169 c1.275,0,2.512,0.249,3.676,0.742c1.124,0.476,2.135,1.156,3.002,2.024c0.868,0.867,1.548,1.877,2.024,3.002 c0.493,1.164,0.743,2.401,0.743,3.676c0,0.575-0.054,1.15-0.157,1.712c-0.018-0.031-0.033-0.064-0.052-0.095l0.034,0.201 c0.007-0.035,0.011-0.071,0.018-0.106C21.754,14.494,22,15.432,22,16.386z M16.817,14.138c0-1.331-0.613-2.743-3.033-3.282 l-2.209-0.49c-0.84-0.192-1.807-0.444-1.807-1.237c0-0.794,0.679-1.348,1.903-1.348c2.468,0,2.243,1.696,3.468,1.696 c0.645,0,1.209-0.379,1.209-1.031c0-1.521-2.435-2.663-4.5-2.663c-2.242,0-4.63,0.952-4.63,3.488c0,1.221,0.436,2.521,2.839,3.123 l2.984,0.745c0.903,0.223,1.129,0.731,1.129,1.189c0,0.762-0.758,1.507-2.129,1.507c-2.679,0-2.307-2.062-3.743-2.062 c-0.645,0-1.113,0.444-1.113,1.078c0,1.236,1.501,2.886,4.856,2.886C15.236,17.737,16.817,16.199,16.817,14.138z"}))},{name:"snapchat",attributes:{service:"snapchat"},title:"Snapchat",icon:()=>(0,ye.createElement)(fe.SVG,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1"},(0,ye.createElement)(fe.Path,{d:"M12.065,2a5.526,5.526,0,0,1,3.132.892A5.854,5.854,0,0,1,17.326,5.4a5.821,5.821,0,0,1,.351,2.33q0,.612-.117,2.487a.809.809,0,0,0,.365.091,1.93,1.93,0,0,0,.664-.176,1.93,1.93,0,0,1,.664-.176,1.3,1.3,0,0,1,.729.234.7.7,0,0,1,.351.6.839.839,0,0,1-.41.7,2.732,2.732,0,0,1-.9.41,3.192,3.192,0,0,0-.9.378.728.728,0,0,0-.41.618,1.575,1.575,0,0,0,.156.56,6.9,6.9,0,0,0,1.334,1.953,5.6,5.6,0,0,0,1.881,1.315,5.875,5.875,0,0,0,1.042.3.42.42,0,0,1,.365.456q0,.911-2.852,1.341a1.379,1.379,0,0,0-.143.507,1.8,1.8,0,0,1-.182.605.451.451,0,0,1-.429.241,5.878,5.878,0,0,1-.807-.085,5.917,5.917,0,0,0-.833-.085,4.217,4.217,0,0,0-.807.065,2.42,2.42,0,0,0-.82.293,6.682,6.682,0,0,0-.755.5q-.351.267-.755.527a3.886,3.886,0,0,1-.989.436A4.471,4.471,0,0,1,11.831,22a4.307,4.307,0,0,1-1.256-.176,3.784,3.784,0,0,1-.976-.436q-.4-.26-.749-.527a6.682,6.682,0,0,0-.755-.5,2.422,2.422,0,0,0-.807-.293,4.432,4.432,0,0,0-.82-.065,5.089,5.089,0,0,0-.853.1,5,5,0,0,1-.762.1.474.474,0,0,1-.456-.241,1.819,1.819,0,0,1-.182-.618,1.411,1.411,0,0,0-.143-.521q-2.852-.429-2.852-1.341a.42.42,0,0,1,.365-.456,5.793,5.793,0,0,0,1.042-.3,5.524,5.524,0,0,0,1.881-1.315,6.789,6.789,0,0,0,1.334-1.953A1.575,1.575,0,0,0,6,12.9a.728.728,0,0,0-.41-.618,3.323,3.323,0,0,0-.9-.384,2.912,2.912,0,0,1-.9-.41.814.814,0,0,1-.41-.684.71.71,0,0,1,.338-.593,1.208,1.208,0,0,1,.716-.241,1.976,1.976,0,0,1,.625.169,2.008,2.008,0,0,0,.69.169.919.919,0,0,0,.416-.091q-.117-1.849-.117-2.474A5.861,5.861,0,0,1,6.385,5.4,5.516,5.516,0,0,1,8.625,2.819,7.075,7.075,0,0,1,12.062,2Z"}))},{name:"soundcloud",attributes:{service:"soundcloud"},title:"SoundCloud",icon:()=>(0,ye.createElement)(fe.SVG,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1"},(0,ye.createElement)(fe.Path,{d:"M8.9,16.1L9,14L8.9,9.5c0-0.1,0-0.1-0.1-0.1c0,0-0.1-0.1-0.1-0.1c-0.1,0-0.1,0-0.1,0.1c0,0-0.1,0.1-0.1,0.1L8.3,14l0.1,2.1 c0,0.1,0,0.1,0.1,0.1c0,0,0.1,0.1,0.1,0.1C8.8,16.3,8.9,16.3,8.9,16.1z M11.4,15.9l0.1-1.8L11.4,9c0-0.1,0-0.2-0.1-0.2 c0,0-0.1,0-0.1,0s-0.1,0-0.1,0c-0.1,0-0.1,0.1-0.1,0.2l0,0.1l-0.1,5c0,0,0,0.7,0.1,2v0c0,0.1,0,0.1,0.1,0.1c0.1,0.1,0.1,0.1,0.2,0.1 c0.1,0,0.1,0,0.2-0.1c0.1,0,0.1-0.1,0.1-0.2L11.4,15.9z M2.4,12.9L2.5,14l-0.2,1.1c0,0.1,0,0.1-0.1,0.1c0,0-0.1,0-0.1-0.1L2.1,14 l0.1-1.1C2.2,12.9,2.3,12.9,2.4,12.9C2.3,12.9,2.4,12.9,2.4,12.9z M3.1,12.2L3.3,14l-0.2,1.8c0,0.1,0,0.1-0.1,0.1 c-0.1,0-0.1,0-0.1-0.1L2.8,14L3,12.2C3,12.2,3,12.2,3.1,12.2C3.1,12.2,3.1,12.2,3.1,12.2z M3.9,11.9L4.1,14l-0.2,2.1 c0,0.1,0,0.1-0.1,0.1c-0.1,0-0.1,0-0.1-0.1L3.5,14l0.2-2.1c0-0.1,0-0.1,0.1-0.1C3.9,11.8,3.9,11.8,3.9,11.9z M4.7,11.9L4.9,14 l-0.2,2.1c0,0.1-0.1,0.1-0.1,0.1c-0.1,0-0.1,0-0.1-0.1L4.3,14l0.2-2.2c0-0.1,0-0.1,0.1-0.1C4.7,11.7,4.7,11.8,4.7,11.9z M5.6,12 l0.2,2l-0.2,2.1c0,0.1-0.1,0.1-0.1,0.1c0,0-0.1,0-0.1,0c0,0,0-0.1,0-0.1L5.1,14l0.2-2c0,0,0-0.1,0-0.1s0.1,0,0.1,0 C5.5,11.9,5.5,11.9,5.6,12L5.6,12z M6.4,10.7L6.6,14l-0.2,2.1c0,0,0,0.1,0,0.1c0,0-0.1,0-0.1,0c-0.1,0-0.1-0.1-0.2-0.2L5.9,14 l0.2-3.3c0-0.1,0.1-0.2,0.2-0.2c0,0,0.1,0,0.1,0C6.4,10.7,6.4,10.7,6.4,10.7z M7.2,10l0.2,4.1l-0.2,2.1c0,0,0,0.1,0,0.1 c0,0-0.1,0-0.1,0c-0.1,0-0.2-0.1-0.2-0.2l-0.1-2.1L6.8,10c0-0.1,0.1-0.2,0.2-0.2c0,0,0.1,0,0.1,0S7.2,9.9,7.2,10z M8,9.6L8.2,14 L8,16.1c0,0.1-0.1,0.2-0.2,0.2c-0.1,0-0.2-0.1-0.2-0.2L7.5,14l0.1-4.4c0-0.1,0-0.1,0.1-0.1c0,0,0.1-0.1,0.1-0.1c0.1,0,0.1,0,0.1,0.1 C8,9.6,8,9.6,8,9.6z M11.4,16.1L11.4,16.1L11.4,16.1z M9.7,9.6L9.8,14l-0.1,2.1c0,0.1,0,0.1-0.1,0.2s-0.1,0.1-0.2,0.1 c-0.1,0-0.1,0-0.1-0.1s-0.1-0.1-0.1-0.2L9.2,14l0.1-4.4c0-0.1,0-0.1,0.1-0.2s0.1-0.1,0.2-0.1c0.1,0,0.1,0,0.2,0.1S9.7,9.5,9.7,9.6 L9.7,9.6z M10.6,9.8l0.1,4.3l-0.1,2c0,0.1,0,0.1-0.1,0.2c0,0-0.1,0.1-0.2,0.1c-0.1,0-0.1,0-0.2-0.1c0,0-0.1-0.1-0.1-0.2L10,14 l0.1-4.3c0-0.1,0-0.1,0.1-0.2c0,0,0.1-0.1,0.2-0.1c0.1,0,0.1,0,0.2,0.1S10.6,9.7,10.6,9.8z M12.4,14l-0.1,2c0,0.1,0,0.1-0.1,0.2 c-0.1,0.1-0.1,0.1-0.2,0.1c-0.1,0-0.1,0-0.2-0.1c-0.1-0.1-0.1-0.1-0.1-0.2l-0.1-1l-0.1-1l0.1-5.5v0c0-0.1,0-0.2,0.1-0.2 c0.1,0,0.1-0.1,0.2-0.1c0,0,0.1,0,0.1,0c0.1,0,0.1,0.1,0.1,0.2L12.4,14z M22.1,13.9c0,0.7-0.2,1.3-0.7,1.7c-0.5,0.5-1.1,0.7-1.7,0.7 h-6.8c-0.1,0-0.1,0-0.2-0.1c-0.1-0.1-0.1-0.1-0.1-0.2V8.2c0-0.1,0.1-0.2,0.2-0.3c0.5-0.2,1-0.3,1.6-0.3c1.1,0,2.1,0.4,2.9,1.1 c0.8,0.8,1.3,1.7,1.4,2.8c0.3-0.1,0.6-0.2,1-0.2c0.7,0,1.3,0.2,1.7,0.7C21.8,12.6,22.1,13.2,22.1,13.9L22.1,13.9z"}))},{name:"spotify",attributes:{service:"spotify"},title:"Spotify",icon:()=>(0,ye.createElement)(fe.SVG,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1"},(0,ye.createElement)(fe.Path,{d:"M12,2C6.477,2,2,6.477,2,12c0,5.523,4.477,10,10,10c5.523,0,10-4.477,10-10C22,6.477,17.523,2,12,2 M16.586,16.424 c-0.18,0.295-0.563,0.387-0.857,0.207c-2.348-1.435-5.304-1.76-8.785-0.964c-0.335,0.077-0.67-0.133-0.746-0.469 c-0.077-0.335,0.132-0.67,0.469-0.746c3.809-0.871,7.077-0.496,9.713,1.115C16.673,15.746,16.766,16.13,16.586,16.424 M17.81,13.7 c-0.226,0.367-0.706,0.482-1.072,0.257c-2.687-1.652-6.785-2.131-9.965-1.166C6.36,12.917,5.925,12.684,5.8,12.273 C5.675,11.86,5.908,11.425,6.32,11.3c3.632-1.102,8.147-0.568,11.234,1.328C17.92,12.854,18.035,13.335,17.81,13.7 M17.915,10.865 c-3.223-1.914-8.54-2.09-11.618-1.156C5.804,9.859,5.281,9.58,5.131,9.086C4.982,8.591,5.26,8.069,5.755,7.919 c3.532-1.072,9.404-0.865,13.115,1.338c0.445,0.264,0.59,0.838,0.327,1.282C18.933,10.983,18.359,11.129,17.915,10.865"}))},{name:"telegram",attributes:{service:"telegram"},title:"Telegram",icon:()=>(0,ye.createElement)(fe.SVG,{width:"24",height:"24",viewBox:"0 0 128 128",version:"1.1"},(0,ye.createElement)(fe.Path,{d:"M28.9700376,63.3244248 C47.6273373,55.1957357 60.0684594,49.8368063 66.2934036,47.2476366 C84.0668845,39.855031 87.7600616,38.5708563 90.1672227,38.528 C90.6966555,38.5191258 91.8804274,38.6503351 92.6472251,39.2725385 C93.294694,39.7979149 93.4728387,40.5076237 93.5580865,41.0057381 C93.6433345,41.5038525 93.7494885,42.63857 93.6651041,43.5252052 C92.7019529,53.6451182 88.5344133,78.2034783 86.4142057,89.5379542 C85.5170662,94.3339958 83.750571,95.9420841 82.0403991,96.0994568 C78.3237996,96.4414641 75.5015827,93.6432685 71.9018743,91.2836143 C66.2690414,87.5912212 63.0868492,85.2926952 57.6192095,81.6896017 C51.3004058,77.5256038 55.3966232,75.2369981 58.9976911,71.4967761 C59.9401076,70.5179421 76.3155302,55.6232293 76.6324771,54.2720454 C76.6721165,54.1030573 76.7089039,53.4731496 76.3346867,53.1405352 C75.9604695,52.8079208 75.4081573,52.921662 75.0095933,53.0121213 C74.444641,53.1403447 65.4461175,59.0880351 48.0140228,70.8551922 C45.4598218,72.6091037 43.1463059,73.4636682 41.0734751,73.4188859 C38.7883453,73.3695169 34.3926725,72.1268388 31.1249416,71.0646282 C27.1169366,69.7617838 23.931454,69.0729605 24.208838,66.8603276 C24.3533167,65.7078514 25.9403832,64.5292172 28.9700376,63.3244248 Z"}))},{name:"tiktok",attributes:{service:"tiktok"},title:"TikTok",icon:()=>(0,ye.createElement)(fe.SVG,{width:"24",height:"24",viewBox:"0 0 32 32",version:"1.1"},(0,ye.createElement)(fe.Path,{d:"M16.708 0.027c1.745-0.027 3.48-0.011 5.213-0.027 0.105 2.041 0.839 4.12 2.333 5.563 1.491 1.479 3.6 2.156 5.652 2.385v5.369c-1.923-0.063-3.855-0.463-5.6-1.291-0.76-0.344-1.468-0.787-2.161-1.24-0.009 3.896 0.016 7.787-0.025 11.667-0.104 1.864-0.719 3.719-1.803 5.255-1.744 2.557-4.771 4.224-7.88 4.276-1.907 0.109-3.812-0.411-5.437-1.369-2.693-1.588-4.588-4.495-4.864-7.615-0.032-0.667-0.043-1.333-0.016-1.984 0.24-2.537 1.495-4.964 3.443-6.615 2.208-1.923 5.301-2.839 8.197-2.297 0.027 1.975-0.052 3.948-0.052 5.923-1.323-0.428-2.869-0.308-4.025 0.495-0.844 0.547-1.485 1.385-1.819 2.333-0.276 0.676-0.197 1.427-0.181 2.145 0.317 2.188 2.421 4.027 4.667 3.828 1.489-0.016 2.916-0.88 3.692-2.145 0.251-0.443 0.532-0.896 0.547-1.417 0.131-2.385 0.079-4.76 0.095-7.145 0.011-5.375-0.016-10.735 0.025-16.093z"}))},{name:"tumblr",attributes:{service:"tumblr"},title:"Tumblr",icon:()=>(0,ye.createElement)(fe.SVG,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1"},(0,ye.createElement)(fe.Path,{d:"M17.04 21.28h-3.28c-2.84 0-4.94-1.37-4.94-5.02v-5.67H6.08V7.5c2.93-.73 4.11-3.3 4.3-5.48h3.01v4.93h3.47v3.65H13.4v4.93c0 1.47.73 2.01 1.92 2.01h1.73v3.75z"}))},{name:"twitch",attributes:{service:"twitch"},title:"Twitch",icon:()=>(0,ye.createElement)(fe.SVG,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1"},(0,ye.createElement)(fe.Path,{d:"M16.499,8.089h-1.636v4.91h1.636V8.089z M12,8.089h-1.637v4.91H12V8.089z M4.228,3.178L3,6.451v13.092h4.499V22h2.456 l2.454-2.456h3.681L21,14.636V3.178H4.228z M19.364,13.816l-2.864,2.865H12l-2.453,2.453V16.68H5.863V4.814h13.501V13.816z"}))},{name:"twitter",attributes:{service:"twitter"},title:"Twitter",icon:()=>(0,ye.createElement)(fe.SVG,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1"},(0,ye.createElement)(fe.Path,{d:"M22.23,5.924c-0.736,0.326-1.527,0.547-2.357,0.646c0.847-0.508,1.498-1.312,1.804-2.27 c-0.793,0.47-1.671,0.812-2.606,0.996C18.324,4.498,17.257,4,16.077,4c-2.266,0-4.103,1.837-4.103,4.103 c0,0.322,0.036,0.635,0.106,0.935C8.67,8.867,5.647,7.234,3.623,4.751C3.27,5.357,3.067,6.062,3.067,6.814 c0,1.424,0.724,2.679,1.825,3.415c-0.673-0.021-1.305-0.206-1.859-0.513c0,0.017,0,0.034,0,0.052c0,1.988,1.414,3.647,3.292,4.023 c-0.344,0.094-0.707,0.144-1.081,0.144c-0.264,0-0.521-0.026-0.772-0.074c0.522,1.63,2.038,2.816,3.833,2.85 c-1.404,1.1-3.174,1.756-5.096,1.756c-0.331,0-0.658-0.019-0.979-0.057c1.816,1.164,3.973,1.843,6.29,1.843 c7.547,0,11.675-6.252,11.675-11.675c0-0.178-0.004-0.355-0.012-0.531C20.985,7.47,21.68,6.747,22.23,5.924z"}))},{name:"vimeo",attributes:{service:"vimeo"},title:"Vimeo",icon:()=>(0,ye.createElement)(fe.SVG,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1"},(0,ye.createElement)(fe.Path,{d:"M22.396,7.164c-0.093,2.026-1.507,4.799-4.245,8.32C15.322,19.161,12.928,21,10.97,21c-1.214,0-2.24-1.119-3.079-3.359 c-0.56-2.053-1.119-4.106-1.68-6.159C5.588,9.243,4.921,8.122,4.206,8.122c-0.156,0-0.701,0.328-1.634,0.98L1.594,7.841 c1.027-0.902,2.04-1.805,3.037-2.708C6.001,3.95,7.03,3.327,7.715,3.264c1.619-0.156,2.616,0.951,2.99,3.321 c0.404,2.557,0.685,4.147,0.841,4.769c0.467,2.121,0.981,3.181,1.542,3.181c0.435,0,1.09-0.688,1.963-2.065 c0.871-1.376,1.338-2.422,1.401-3.142c0.125-1.187-0.343-1.782-1.401-1.782c-0.498,0-1.012,0.115-1.541,0.341 c1.023-3.35,2.977-4.977,5.862-4.884C21.511,3.066,22.52,4.453,22.396,7.164z"}))},{name:"vk",attributes:{service:"vk"},title:"VK",icon:()=>(0,ye.createElement)(fe.SVG,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1"},(0,ye.createElement)(fe.Path,{d:"M22,7.1c0.2,0.4-0.4,1.5-1.6,3.1c-0.2,0.2-0.4,0.5-0.7,0.9c-0.5,0.7-0.9,1.1-0.9,1.4c-0.1,0.3-0.1,0.6,0.1,0.8 c0.1,0.1,0.4,0.4,0.8,0.9h0l0,0c1,0.9,1.6,1.7,2,2.3c0,0,0,0.1,0.1,0.1c0,0.1,0,0.1,0.1,0.3c0,0.1,0,0.2,0,0.4 c0,0.1-0.1,0.2-0.3,0.3c-0.1,0.1-0.4,0.1-0.6,0.1l-2.7,0c-0.2,0-0.4,0-0.6-0.1c-0.2-0.1-0.4-0.1-0.5-0.2l-0.2-0.1 c-0.2-0.1-0.5-0.4-0.7-0.7s-0.5-0.6-0.7-0.8c-0.2-0.2-0.4-0.4-0.6-0.6C14.8,15,14.6,15,14.4,15c0,0,0,0-0.1,0c0,0-0.1,0.1-0.2,0.2 c-0.1,0.1-0.2,0.2-0.2,0.3c-0.1,0.1-0.1,0.3-0.2,0.5c-0.1,0.2-0.1,0.5-0.1,0.8c0,0.1,0,0.2,0,0.3c0,0.1-0.1,0.2-0.1,0.2l0,0.1 c-0.1,0.1-0.3,0.2-0.6,0.2h-1.2c-0.5,0-1,0-1.5-0.2c-0.5-0.1-1-0.3-1.4-0.6s-0.7-0.5-1.1-0.7s-0.6-0.4-0.7-0.6l-0.3-0.3 c-0.1-0.1-0.2-0.2-0.3-0.3s-0.4-0.5-0.7-0.9s-0.7-1-1.1-1.6c-0.4-0.6-0.8-1.3-1.3-2.2C2.9,9.4,2.5,8.5,2.1,7.5C2,7.4,2,7.3,2,7.2 c0-0.1,0-0.1,0-0.2l0-0.1c0.1-0.1,0.3-0.2,0.6-0.2l2.9,0c0.1,0,0.2,0,0.2,0.1S5.9,6.9,5.9,7L6,7c0.1,0.1,0.2,0.2,0.3,0.3 C6.4,7.7,6.5,8,6.7,8.4C6.9,8.8,7,9,7.1,9.2l0.2,0.3c0.2,0.4,0.4,0.8,0.6,1.1c0.2,0.3,0.4,0.5,0.5,0.7s0.3,0.3,0.4,0.4 c0.1,0.1,0.3,0.1,0.4,0.1c0.1,0,0.2,0,0.3-0.1c0,0,0,0,0.1-0.1c0,0,0.1-0.1,0.1-0.2c0.1-0.1,0.1-0.3,0.1-0.5c0-0.2,0.1-0.5,0.1-0.8 c0-0.4,0-0.8,0-1.3c0-0.3,0-0.5-0.1-0.8c0-0.2-0.1-0.4-0.1-0.5L9.6,7.6C9.4,7.3,9.1,7.2,8.7,7.1C8.6,7.1,8.6,7,8.7,6.9 C8.9,6.7,9,6.6,9.1,6.5c0.4-0.2,1.2-0.3,2.5-0.3c0.6,0,1,0.1,1.4,0.1c0.1,0,0.3,0.1,0.3,0.1c0.1,0.1,0.2,0.1,0.2,0.3 c0,0.1,0.1,0.2,0.1,0.3s0,0.3,0,0.5c0,0.2,0,0.4,0,0.6c0,0.2,0,0.4,0,0.7c0,0.3,0,0.6,0,0.9c0,0.1,0,0.2,0,0.4c0,0.2,0,0.4,0,0.5 c0,0.1,0,0.3,0,0.4s0.1,0.3,0.1,0.4c0.1,0.1,0.1,0.2,0.2,0.3c0.1,0,0.1,0,0.2,0c0.1,0,0.2,0,0.3-0.1c0.1-0.1,0.2-0.2,0.4-0.4 s0.3-0.4,0.5-0.7c0.2-0.3,0.5-0.7,0.7-1.1c0.4-0.7,0.8-1.5,1.1-2.3c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0.1-0.1,0.1-0.1l0,0l0.1,0 c0,0,0,0,0.1,0s0.2,0,0.2,0l3,0c0.3,0,0.5,0,0.7,0S21.9,7,21.9,7L22,7.1z"}))},{name:"yelp",attributes:{service:"yelp"},title:"Yelp",icon:()=>(0,ye.createElement)(fe.SVG,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1"},(0,ye.createElement)(fe.Path,{d:"M12.271,16.718v1.417q-.011,3.257-.067,3.4a.707.707,0,0,1-.569.446,4.637,4.637,0,0,1-2.024-.424A4.609,4.609,0,0,1,7.8,20.565a.844.844,0,0,1-.19-.4.692.692,0,0,1,.044-.29,3.181,3.181,0,0,1,.379-.524q.335-.412,2.019-2.409.011,0,.669-.781a.757.757,0,0,1,.44-.274.965.965,0,0,1,.552.039.945.945,0,0,1,.418.324.732.732,0,0,1,.139.468Zm-1.662-2.8a.783.783,0,0,1-.58.781l-1.339.435q-3.067.981-3.257.981a.711.711,0,0,1-.6-.4,2.636,2.636,0,0,1-.19-.836,9.134,9.134,0,0,1,.011-1.857,3.559,3.559,0,0,1,.335-1.389.659.659,0,0,1,.625-.357,22.629,22.629,0,0,1,2.253.859q.781.324,1.283.524l.937.379a.771.771,0,0,1,.4.34A.982.982,0,0,1,10.609,13.917Zm9.213,3.313a4.467,4.467,0,0,1-1.021,1.8,4.559,4.559,0,0,1-1.512,1.417.671.671,0,0,1-.7-.078q-.156-.112-2.052-3.2l-.524-.859a.761.761,0,0,1-.128-.513.957.957,0,0,1,.217-.513.774.774,0,0,1,.926-.29q.011.011,1.327.446,2.264.736,2.7.887a2.082,2.082,0,0,1,.524.229.673.673,0,0,1,.245.68Zm-7.5-7.049q.056,1.137-.6,1.361-.647.19-1.272-.792L6.237,4.08a.7.7,0,0,1,.212-.691,5.788,5.788,0,0,1,2.314-1,5.928,5.928,0,0,1,2.5-.352.681.681,0,0,1,.547.5q.034.2.245,3.407T12.327,10.181Zm7.384,1.2a.679.679,0,0,1-.29.658q-.167.112-3.67.959-.747.167-1.015.257l.011-.022a.769.769,0,0,1-.513-.044.914.914,0,0,1-.413-.357.786.786,0,0,1,0-.971q.011-.011.836-1.137,1.394-1.908,1.673-2.275a2.423,2.423,0,0,1,.379-.435A.7.7,0,0,1,17.435,8a4.482,4.482,0,0,1,1.372,1.489,4.81,4.81,0,0,1,.9,1.868v.034Z"}))},{name:"youtube",attributes:{service:"youtube"},title:"YouTube",icon:()=>(0,ye.createElement)(fe.SVG,{width:"24",height:"24",viewBox:"0 0 24 24",version:"1.1"},(0,ye.createElement)(fe.Path,{d:"M21.8,8.001c0,0-0.195-1.378-0.795-1.985c-0.76-0.797-1.613-0.801-2.004-0.847c-2.799-0.202-6.997-0.202-6.997-0.202 h-0.009c0,0-4.198,0-6.997,0.202C4.608,5.216,3.756,5.22,2.995,6.016C2.395,6.623,2.2,8.001,2.2,8.001S2,9.62,2,11.238v1.517 c0,1.618,0.2,3.237,0.2,3.237s0.195,1.378,0.795,1.985c0.761,0.797,1.76,0.771,2.205,0.855c1.6,0.153,6.8,0.201,6.8,0.201 s4.203-0.006,7.001-0.209c0.391-0.047,1.243-0.051,2.004-0.847c0.6-0.607,0.795-1.985,0.795-1.985s0.2-1.618,0.2-3.237v-1.517 C22,9.62,21.8,8.001,21.8,8.001z M9.935,14.594l-0.001-5.62l5.404,2.82L9.935,14.594z"}))}];sg.forEach((e=>{e.isActive||(e.isActive=(e,t)=>e.service===t.service)}));var cg=sg;const ug=e=>{let{url:t,setAttributes:n,setPopover:o,anchorRef:r}=e;return(0,ye.createElement)(Ee.URLPopover,{anchorRef:null==r?void 0:r.current,onClose:()=>o(!1)},(0,ye.createElement)("form",{className:"block-editor-url-popover__link-editor",onSubmit:e=>{e.preventDefault(),o(!1)}},(0,ye.createElement)("div",{className:"block-editor-url-input"},(0,ye.createElement)(Ee.URLInput,{value:t,onChange:e=>n({url:e}),placeholder:(0,we.__)("Enter address"),disableSuggestions:!0})),(0,ye.createElement)(ke.Button,{icon:lg,label:(0,we.__)("Apply"),type:"submit"})))};var mg=e=>{let{attributes:t,context:n,isSelected:o,setAttributes:r}=e;const{url:a,service:l,label:i}=t,{iconColorValue:s,iconBackgroundColorValue:c}=n,[u,m]=(0,ye.useState)(!1),d=nt()("wp-social-link","wp-social-link-"+l,{"wp-social-link__is-incomplete":!a}),p=(0,ye.useRef)(),g=(e=>{const t=(0,Le.find)(cg,{name:e});return t?t.icon:ig})(l),h=(e=>{const t=(0,Le.find)(cg,{name:e});return t?t.title:(0,we.__)("Social Icon")})(l),v=(0,Ee.useBlockProps)({className:d,style:{color:s,backgroundColor:c}});return(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)(Ee.InspectorControls,null,(0,ye.createElement)(ke.PanelBody,{title:(0,we.sprintf)((0,we.__)("%s label"),h),initialOpen:!1},(0,ye.createElement)(ke.PanelRow,null,(0,ye.createElement)(ke.TextControl,{label:(0,we.__)("Link label"),help:(0,we.__)("Briefly describe the link to help screen reader users."),value:i,onChange:e=>r({label:e})})))),(0,ye.createElement)("li",v,(0,ye.createElement)(ke.Button,{ref:p,onClick:()=>m(!0)},(0,ye.createElement)(g,null),o&&u&&(0,ye.createElement)(ug,{url:a,setAttributes:r,setPopover:m,anchorRef:p}))))};const dg={apiVersion:2,name:"core/social-link",title:"Social Icon",category:"widgets",parent:["core/social-links"],description:"Display an icon linking to a social media profile or website.",textdomain:"default",attributes:{url:{type:"string"},service:{type:"string"},label:{type:"string"}},usesContext:["openInNewTab","iconColorValue","iconBackgroundColorValue"],supports:{reusable:!1,html:!1},editorStyle:"wp-block-social-link-editor"},{name:pg}=dg,gg={icon:ag,edit:mg,variations:cg},hg=[{attributes:{iconColor:{type:"string"},customIconColor:{type:"string"},iconColorValue:{type:"string"},iconBackgroundColor:{type:"string"},customIconBackgroundColor:{type:"string"},iconBackgroundColorValue:{type:"string"},openInNewTab:{type:"boolean",default:!1},size:{type:"string"}},providesContext:{openInNewTab:"openInNewTab"},supports:{align:["left","center","right"],anchor:!0},migrate:e=>{var t,n;if(e.layout)return e;const{className:o}=e,r="items-justified-",a=new RegExp(`\\b${r}[^ ]*[ ]?\\b`,"g"),l={...e,className:null==o?void 0:o.replace(a,"").trim()},i=null==o||null===(t=o.match(a))||void 0===t||null===(n=t[0])||void 0===n?void 0:n.trim();return i&&Object.assign(l,{layout:{type:"flex",justifyContent:i.slice(r.length)}}),l},save:e=>{const{attributes:{iconBackgroundColorValue:t,iconColorValue:n,itemsJustification:o,size:r}}=e,a=nt()(r,{"has-icon-color":n,"has-icon-background-color":t,[`items-justified-${o}`]:o}),l={"--wp--social-links--icon-color":n,"--wp--social-links--icon-background-color":t};return(0,ye.createElement)("ul",Ee.useBlockProps.save({className:a,style:l}),(0,ye.createElement)(Ee.InnerBlocks.Content,null))}}];var vg=hg;var bg=(0,ye.createElement)(fe.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,ye.createElement)(fe.Path,{d:"M16.7 7.1l-6.3 8.5-3.3-2.5-.9 1.2 4.5 3.4L17.9 8z"}));const yg=["core/social-link"],fg=[{name:(0,we.__)("Small"),value:"has-small-icon-size"},{name:(0,we.__)("Normal"),value:"has-normal-icon-size"},{name:(0,we.__)("Large"),value:"has-large-icon-size"},{name:(0,we.__)("Huge"),value:"has-huge-icon-size"}];var _g=(0,Ee.withColors)({iconColor:"icon-color",iconBackgroundColor:"icon-background-color"})((function(e){var t;const{name:n,attributes:o,iconBackgroundColor:r,iconColor:a,isSelected:l,setAttributes:i,setIconBackgroundColor:s,setIconColor:c}=e,{iconBackgroundColorValue:u,iconColorValue:m,openInNewTab:d,size:p,layout:g}=o,h=g||(e=>{const t=(0,be.getBlockSupport)(e,"__experimentalLayout");return null==t?void 0:t.default})(n),v=(null===(t=o.className)||void 0===t?void 0:t.indexOf("is-style-logos-only"))>=0;(0,ye.useEffect)((()=>{v&&i({iconBackgroundColor:void 0,customIconBackgroundColor:void 0,iconBackgroundColorValue:void 0})}),[v,i]);const b=(0,ye.createElement)("li",{className:"wp-block-social-links__social-placeholder"},(0,ye.createElement)("div",{className:"wp-social-link"}),(0,ye.createElement)("div",{className:"wp-block-social-links__social-placeholder-icons"},(0,ye.createElement)("div",{className:"wp-social-link wp-social-link-twitter"}),(0,ye.createElement)("div",{className:"wp-social-link wp-social-link-facebook"}),(0,ye.createElement)("div",{className:"wp-social-link wp-social-link-instagram"}))),y=(0,ye.createElement)("li",{className:"wp-block-social-links__social-prompt"},(0,we.__)("Click plus to add")),f=nt()(p,{"has-icon-color":a.color||m,"has-icon-background-color":r.color||u}),_=(0,Ee.useBlockProps)({className:f}),k=(0,Ee.useInnerBlocksProps)(_,{allowedBlocks:yg,placeholder:l?y:b,templateLock:!1,__experimentalAppenderTagName:"li",__experimentalLayout:h});return(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)(Ee.BlockControls,{group:"other"},(0,ye.createElement)(ke.ToolbarDropdownMenu,{label:(0,we.__)("Size"),text:(0,we.__)("Size"),icon:null,popoverProps:{position:"bottom right"}},(e=>{let{onClose:t}=e;return(0,ye.createElement)(ke.MenuGroup,null,fg.map((e=>(0,ye.createElement)(ke.MenuItem,{icon:(p===e.value||!p&&"has-normal-icon-size"===e.value)&&bg,isSelected:p===e.value,key:e.value,onClick:()=>{i({size:e.value})},onClose:t,role:"menuitemradio"},e.name))))}))),(0,ye.createElement)(Ee.InspectorControls,null,(0,ye.createElement)(ke.PanelBody,{title:(0,we.__)("Link settings")},(0,ye.createElement)(ke.ToggleControl,{label:(0,we.__)("Open links in new tab"),checked:d,onChange:()=>i({openInNewTab:!d})})),(0,ye.createElement)(Ee.PanelColorSettings,{__experimentalHasMultipleOrigins:!0,__experimentalIsRenderedInSidebar:!0,title:(0,we.__)("Color"),colorSettings:[{value:a.color||m,onChange:e=>{c(e),i({iconColorValue:e})},label:(0,we.__)("Icon color")},!v&&{value:r.color||u,onChange:e=>{s(e),i({iconBackgroundColorValue:e})},label:(0,we.__)("Icon background")}]}),!v&&(0,ye.createElement)(Ee.ContrastChecker,{textColor:m,backgroundColor:u,isLargeText:!1})),(0,ye.createElement)("ul",k))}));const kg={apiVersion:2,name:"core/social-links",title:"Social Icons",category:"widgets",description:"Display icons linking to your social media profiles or websites.",keywords:["links"],textdomain:"default",attributes:{iconColor:{type:"string"},customIconColor:{type:"string"},iconColorValue:{type:"string"},iconBackgroundColor:{type:"string"},customIconBackgroundColor:{type:"string"},iconBackgroundColorValue:{type:"string"},openInNewTab:{type:"boolean",default:!1},size:{type:"string"}},providesContext:{openInNewTab:"openInNewTab",iconColorValue:"iconColorValue",iconBackgroundColorValue:"iconBackgroundColorValue"},supports:{align:["left","center","right"],anchor:!0,__experimentalExposeControlsToChildren:!0,__experimentalLayout:{allowSwitching:!1,allowInheriting:!1,default:{type:"flex"}},spacing:{blockGap:!0,margin:["top","bottom"],units:["px","em","rem","vh","vw"],__experimentalDefaultControls:{blockGap:!0}}},styles:[{name:"default",label:"Default",isDefault:!0},{name:"logos-only",label:"Logos Only"},{name:"pill-shape",label:"Pill Shape"}],editorStyle:"wp-block-social-links-editor",style:"wp-block-social-links"},{name:wg}=kg,Eg={example:{innerBlocks:[{name:"core/social-link",attributes:{service:"wordpress",url:"https://wordpress.org"}},{name:"core/social-link",attributes:{service:"facebook",url:"https://www.facebook.com/WordPress/"}},{name:"core/social-link",attributes:{service:"twitter",url:"https://twitter.com/WordPress"}}]},icon:ag,edit:_g,save:function(e){const{attributes:{iconBackgroundColorValue:t,iconColorValue:n,size:o}}=e,r=nt()(o,{"has-icon-color":n,"has-icon-background-color":t}),a=Ee.useBlockProps.save({className:r}),l=Ee.useInnerBlocksProps.save(a);return(0,ye.createElement)("ul",l)},deprecated:vg};var Cg=(0,ye.createElement)(fe.SVG,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,ye.createElement)(fe.Path,{d:"M12.5 4.2v1.6h4.7L5.8 17.2V12H4.2v7.8H12v-1.6H6.8L18.2 6.8v4.7h1.6V4.2z"}));const xg=[{attributes:{height:{type:"number",default:100},width:{type:"number"}},migrate(e){const{height:t,width:n}=e;return{...e,width:void 0!==n?`${n}px`:void 0,height:void 0!==t?`${t}px`:void 0}},save(e){let{attributes:t}=e;return(0,ye.createElement)("div",Ee.useBlockProps.save({style:{height:t.height,width:t.width},"aria-hidden":!0}))}}];var Sg=xg;function Bg(e){var t;let{label:n,onChange:o,isResizing:r,value:a=""}=e;const[l,i]=(0,ye.useState)(null),s=(0,ot.useInstanceId)(ke.__experimentalUnitControl,"block-spacer-height-input"),c=null===(t=(0,Ee.useSetting)("spacing.units")||void 0)||void 0===t?void 0:t.filter((e=>"%"!==e)),u=(0,ke.__experimentalUseCustomUnits)({availableUnits:c||["px","em","rem","vw","vh"],defaultValues:{px:"100",em:"10",rem:"10",vw:"10",vh:"25"}}),m=null!==l?l:a;return(0,ye.createElement)(ke.BaseControl,{label:n,id:s},(0,ye.createElement)(ke.__experimentalUnitControl,{id:s,isResetValueOnUnitChange:!0,min:0,max:Ng,onBlur:()=>{null!==l&&i(null)},onChange:e=>{i(null),o(e)},style:{maxWidth:80},value:m,units:u,unit:r?"px":void 0}))}function Tg(e){let{setAttributes:t,orientation:n,height:o,width:r,isResizing:a}=e;return(0,ye.createElement)(Ee.InspectorControls,null,(0,ye.createElement)(ke.PanelBody,{title:(0,we.__)("Spacer settings")},"horizontal"===n&&(0,ye.createElement)(Bg,{label:(0,we.__)("Width"),value:r,onChange:e=>t({width:e}),isResizing:a}),"horizontal"!==n&&(0,ye.createElement)(Bg,{label:(0,we.__)("Height"),value:o,onChange:e=>t({height:e}),isResizing:a})))}const Ng=500,zg=e=>{let{orientation:t,onResizeStart:n,onResize:o,onResizeStop:r,isSelected:a,isResizing:l,setIsResizing:i,...s}=e;const c=e=>"horizontal"===t?e.clientWidth:e.clientHeight,u=e=>`${c(e)}px`;return(0,ye.createElement)(ke.ResizableBox,gt({className:nt()("block-library-spacer__resize-container",{"resize-horizontal":"horizontal"===t,"is-resizing":l,"is-selected":a}),onResizeStart:(e,t,r)=>{const a=u(r);n(a),o(a)},onResize:(e,t,n)=>{o(u(n)),l||i(!0)},onResizeStop:(e,t,n)=>{const o=Math.min(Ng,c(n));r(`${o}px`),i(!1)},__experimentalShowTooltip:!0,__experimentalTooltipProps:{axis:"horizontal"===t?"x":"y",position:"corner",isVisible:l},showHandle:a},s))};var Pg=(0,ot.compose)([(0,Ie.withDispatch)((e=>{const{toggleSelection:t}=e(Ee.store);return{onResizeStart:()=>t(!1),onResizeStop:()=>t(!0)}})),ot.withInstanceId])((e=>{let{attributes:t,isSelected:n,setAttributes:o,onResizeStart:r,onResizeStop:a,context:l}=e;const{orientation:i}=l,{height:s,width:c}=t,[u,m]=(0,ye.useState)(!1),[d,p]=(0,ye.useState)(null),[g,h]=(0,ye.useState)(null),v=e=>{a(),o({height:e}),p(null)},b=e=>{a(),o({width:e}),h(null)},y={height:"horizontal"===i?24:d||s||void 0,width:"horizontal"===i&&(g||c)||void 0};return(0,ye.useEffect)((()=>{"horizontal"!==i||c||o({height:"0px",width:"72px"})}),[]),(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)(fe.View,(0,Ee.useBlockProps)({style:y}),"horizontal"===(f=i)?(0,ye.createElement)(zg,{minWidth:1,enable:{top:!1,right:!0,bottom:!1,left:!1,topRight:!1,bottomRight:!1,bottomLeft:!1,topLeft:!1},orientation:f,onResizeStart:r,onResize:h,onResizeStop:b,isSelected:n,isResizing:u,setIsResizing:m}):(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)(zg,{enable:{top:!1,right:!1,bottom:!0,left:!1,topRight:!1,bottomRight:!1,bottomLeft:!1,topLeft:!1},orientation:f,onResizeStart:r,onResize:p,onResizeStop:v,isSelected:n,isResizing:u,setIsResizing:m}))),(0,ye.createElement)(Tg,{setAttributes:o,height:d||s,width:g||c,orientation:i,isResizing:u}));var f}));const Ig={apiVersion:2,name:"core/spacer",title:"Spacer",category:"design",description:"Add white space between blocks and customize its height.",textdomain:"default",attributes:{height:{type:"string",default:"100px"},width:{type:"string"}},usesContext:["orientation"],supports:{anchor:!0},editorStyle:"wp-block-spacer-editor",style:"wp-block-spacer"},{name:Mg}=Ig,Rg={icon:Cg,edit:Pg,save:function(e){let{attributes:{height:t,width:n}}=e;return(0,ye.createElement)("div",Ee.useBlockProps.save({style:{height:t,width:n},"aria-hidden":!0}))},deprecated:Sg};var Lg=(0,ye.createElement)(fe.SVG,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,ye.createElement)(fe.Path,{d:"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM5 4.5h14c.3 0 .5.2.5.5v3.5h-15V5c0-.3.2-.5.5-.5zm8 5.5h6.5v3.5H13V10zm-1.5 3.5h-7V10h7v3.5zm-7 5.5v-4h7v4.5H5c-.3 0-.5-.2-.5-.5zm14.5.5h-6V15h6.5v4c0 .3-.2.5-.5.5z"}));const Vg={"subtle-light-gray":"#f3f4f5","subtle-pale-green":"#e9fbe5","subtle-pale-blue":"#e7f5fe","subtle-pale-pink":"#fcf0ef"},Hg=[{attributes:{hasFixedLayout:{type:"boolean",default:!1},backgroundColor:{type:"string"},caption:{type:"string",source:"html",selector:"figcaption",default:""},head:{type:"array",default:[],source:"query",selector:"thead tr",query:{cells:{type:"array",default:[],source:"query",selector:"td,th",query:{content:{type:"string",source:"html"},tag:{type:"string",default:"td",source:"tag"},scope:{type:"string",source:"attribute",attribute:"scope"},align:{type:"string",source:"attribute",attribute:"data-align"}}}}},body:{type:"array",default:[],source:"query",selector:"tbody tr",query:{cells:{type:"array",default:[],source:"query",selector:"td,th",query:{content:{type:"string",source:"html"},tag:{type:"string",default:"td",source:"tag"},scope:{type:"string",source:"attribute",attribute:"scope"},align:{type:"string",source:"attribute",attribute:"data-align"}}}}},foot:{type:"array",default:[],source:"query",selector:"tfoot tr",query:{cells:{type:"array",default:[],source:"query",selector:"td,th",query:{content:{type:"string",source:"html"},tag:{type:"string",default:"td",source:"tag"},scope:{type:"string",source:"attribute",attribute:"scope"},align:{type:"string",source:"attribute",attribute:"data-align"}}}}}},supports:{anchor:!0,align:!0,__experimentalSelector:".wp-block-table > table"},save:e=>{let{attributes:t}=e;const{hasFixedLayout:n,head:o,body:r,foot:a,backgroundColor:l,caption:i}=t;if(!o.length&&!r.length&&!a.length)return null;const s=(0,Ee.getColorClassName)("background-color",l),c=nt()(s,{"has-fixed-layout":n,"has-background":!!s}),u=!Ee.RichText.isEmpty(i),m=e=>{let{type:t,rows:n}=e;if(!n.length)return null;const o=`t${t}`;return(0,ye.createElement)(o,null,n.map(((e,t)=>{let{cells:n}=e;return(0,ye.createElement)("tr",{key:t},n.map(((e,t)=>{let{content:n,tag:o,scope:r,align:a}=e;const l=nt()({[`has-text-align-${a}`]:a});return(0,ye.createElement)(Ee.RichText.Content,{className:l||void 0,"data-align":a,tagName:o,value:n,key:t,scope:"th"===o?r:void 0})})))})))};return(0,ye.createElement)("figure",Ee.useBlockProps.save(),(0,ye.createElement)("table",{className:""===c?void 0:c},(0,ye.createElement)(m,{type:"head",rows:o}),(0,ye.createElement)(m,{type:"body",rows:r}),(0,ye.createElement)(m,{type:"foot",rows:a})),u&&(0,ye.createElement)(Ee.RichText.Content,{tagName:"figcaption",value:i}))},isEligible:e=>e.backgroundColor&&!e.style,migrate:e=>({...e,backgroundColor:void 0,style:{color:{background:Vg[e.backgroundColor]}}})},{attributes:{hasFixedLayout:{type:"boolean",default:!1},backgroundColor:{type:"string"},head:{type:"array",default:[],source:"query",selector:"thead tr",query:{cells:{type:"array",default:[],source:"query",selector:"td,th",query:{content:{type:"string",source:"html"},tag:{type:"string",default:"td",source:"tag"},scope:{type:"string",source:"attribute",attribute:"scope"}}}}},body:{type:"array",default:[],source:"query",selector:"tbody tr",query:{cells:{type:"array",default:[],source:"query",selector:"td,th",query:{content:{type:"string",source:"html"},tag:{type:"string",default:"td",source:"tag"},scope:{type:"string",source:"attribute",attribute:"scope"}}}}},foot:{type:"array",default:[],source:"query",selector:"tfoot tr",query:{cells:{type:"array",default:[],source:"query",selector:"td,th",query:{content:{type:"string",source:"html"},tag:{type:"string",default:"td",source:"tag"},scope:{type:"string",source:"attribute",attribute:"scope"}}}}}},supports:{align:!0},save(e){let{attributes:t}=e;const{hasFixedLayout:n,head:o,body:r,foot:a,backgroundColor:l}=t;if(!o.length&&!r.length&&!a.length)return null;const i=(0,Ee.getColorClassName)("background-color",l),s=nt()(i,{"has-fixed-layout":n,"has-background":!!i}),c=e=>{let{type:t,rows:n}=e;if(!n.length)return null;const o=`t${t}`;return(0,ye.createElement)(o,null,n.map(((e,t)=>{let{cells:n}=e;return(0,ye.createElement)("tr",{key:t},n.map(((e,t)=>{let{content:n,tag:o,scope:r}=e;return(0,ye.createElement)(Ee.RichText.Content,{tagName:o,value:n,key:t,scope:"th"===o?r:void 0})})))})))};return(0,ye.createElement)("table",{className:s},(0,ye.createElement)(c,{type:"head",rows:o}),(0,ye.createElement)(c,{type:"body",rows:r}),(0,ye.createElement)(c,{type:"foot",rows:a}))}}];var Ag=Hg;var Fg=(0,ye.createElement)(fe.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,ye.createElement)(fe.Path,{d:"M4 19.8h8.9v-1.5H4v1.5zm8.9-15.6H4v1.5h8.9V4.2zm-8.9 7v1.5h16v-1.5H4z"}));var Dg=(0,ye.createElement)(fe.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,ye.createElement)(fe.Path,{d:"M16.4 4.2H7.6v1.5h8.9V4.2zM4 11.2v1.5h16v-1.5H4zm3.6 8.6h8.9v-1.5H7.6v1.5z"}));var Gg=(0,ye.createElement)(fe.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,ye.createElement)(fe.Path,{d:"M11.1 19.8H20v-1.5h-8.9v1.5zm0-15.6v1.5H20V4.2h-8.9zM4 12.8h16v-1.5H4v1.5z"}));var Ug=(0,ye.createElement)(fe.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"-2 -2 24 24"},(0,ye.createElement)(fe.Path,{d:"M6.656 6.464h2.88v2.88h1.408v-2.88h2.88V5.12h-2.88V2.24H9.536v2.88h-2.88zM0 17.92V0h20.48v17.92H0zm7.68-2.56h5.12v-3.84H7.68v3.84zm-6.4 0H6.4v-3.84H1.28v3.84zM19.2 1.28H1.28v9.024H19.2V1.28zm0 10.24h-5.12v3.84h5.12v-3.84zM6.656 6.464h2.88v2.88h1.408v-2.88h2.88V5.12h-2.88V2.24H9.536v2.88h-2.88zM0 17.92V0h20.48v17.92H0zm7.68-2.56h5.12v-3.84H7.68v3.84zm-6.4 0H6.4v-3.84H1.28v3.84zM19.2 1.28H1.28v9.024H19.2V1.28zm0 10.24h-5.12v3.84h5.12v-3.84z"}));var Og=(0,ye.createElement)(fe.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"-2 -2 24 24"},(0,ye.createElement)(fe.Path,{d:"M13.824 10.176h-2.88v-2.88H9.536v2.88h-2.88v1.344h2.88v2.88h1.408v-2.88h2.88zM0 17.92V0h20.48v17.92H0zM6.4 1.28H1.28v3.84H6.4V1.28zm6.4 0H7.68v3.84h5.12V1.28zm6.4 0h-5.12v3.84h5.12V1.28zm0 5.056H1.28v9.024H19.2V6.336z"}));var qg=(0,ye.createElement)(fe.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"-2 -2 24 24"},(0,ye.createElement)(fe.Path,{d:"M17.728 11.456L14.592 8.32l3.2-3.2-1.536-1.536-3.2 3.2L9.92 3.648 8.384 5.12l3.2 3.2-3.264 3.264 1.536 1.536 3.264-3.264 3.136 3.136 1.472-1.536zM0 17.92V0h20.48v17.92H0zm19.2-6.4h-.448l-1.28-1.28H19.2V6.4h-1.792l1.28-1.28h.512V1.28H1.28v3.84h6.208l1.28 1.28H1.28v3.84h7.424l-1.28 1.28H1.28v3.84H19.2v-3.84z"}));var $g=(0,ye.createElement)(fe.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"-2 -2 24 24"},(0,ye.createElement)(fe.Path,{d:"M6.4 3.776v3.648H2.752v1.792H6.4v3.648h1.728V9.216h3.712V7.424H8.128V3.776zM0 17.92V0h20.48v17.92H0zM12.8 1.28H1.28v14.08H12.8V1.28zm6.4 0h-5.12v3.84h5.12V1.28zm0 5.12h-5.12v3.84h5.12V6.4zm0 5.12h-5.12v3.84h5.12v-3.84z"}));var Wg=(0,ye.createElement)(fe.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"-2 -2 24 24"},(0,ye.createElement)(fe.Path,{d:"M14.08 12.864V9.216h3.648V7.424H14.08V3.776h-1.728v3.648H8.64v1.792h3.712v3.648zM0 17.92V0h20.48v17.92H0zM6.4 1.28H1.28v3.84H6.4V1.28zm0 5.12H1.28v3.84H6.4V6.4zm0 5.12H1.28v3.84H6.4v-3.84zM19.2 1.28H7.68v14.08H19.2V1.28z"}));var jg=(0,ye.createElement)(fe.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"-2 -2 24 24"},(0,ye.createElement)(fe.Path,{d:"M6.4 9.98L7.68 8.7v-.256L6.4 7.164V9.98zm6.4-1.532l1.28-1.28V9.92L12.8 8.64v-.192zm7.68 9.472V0H0v17.92h20.48zm-1.28-2.56h-5.12v-1.024l-.256.256-1.024-1.024v1.792H7.68v-1.792l-1.024 1.024-.256-.256v1.024H1.28V1.28H6.4v2.368l.704-.704.576.576V1.216h5.12V3.52l.96-.96.32.32V1.216h5.12V15.36zm-5.76-2.112l-3.136-3.136-3.264 3.264-1.536-1.536 3.264-3.264L5.632 5.44l1.536-1.536 3.136 3.136 3.2-3.2 1.536 1.536-3.2 3.2 3.136 3.136-1.536 1.536z"}));var Zg=(0,ye.createElement)(fe.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,ye.createElement)(fe.Path,{d:"M4 6v11.5h16V6H4zm1.5 1.5h6V11h-6V7.5zm0 8.5v-3.5h6V16h-6zm13 0H13v-3.5h5.5V16zM13 11V7.5h5.5V11H13z"}));const Kg=["align"];function Qg(e,t,n){if(!t)return e;const o=(0,Le.pick)(e,["head","body","foot"]),{sectionName:r,rowIndex:a}=t;return(0,Le.mapValues)(o,((e,o)=>r&&r!==o?e:e.map(((e,r)=>a&&a!==r?e:{cells:e.cells.map(((e,a)=>function(e,t){if(!e||!t)return!1;switch(t.type){case"column":return"column"===t.type&&e.columnIndex===t.columnIndex;case"cell":return"cell"===t.type&&e.sectionName===t.sectionName&&e.columnIndex===t.columnIndex&&e.rowIndex===t.rowIndex}}({sectionName:o,columnIndex:a,rowIndex:r},t)?n(e):e))}))))}function Jg(e,t){let{sectionName:n,rowIndex:o,columnCount:r}=t;const a=function(e){return eh(e.head)?eh(e.body)?eh(e.foot)?void 0:e.foot[0]:e.body[0]:e.head[0]}(e),l=void 0===r?(0,Le.get)(a,["cells","length"]):r;return l?{[n]:[...e[n].slice(0,o),{cells:(0,Le.times)(l,(e=>{const t=(0,Le.get)(a,["cells",e],{});return{...(0,Le.pick)(t,Kg),content:"",tag:"head"===n?"th":"td"}}))},...e[n].slice(o)]}:e}function Yg(e,t){let{columnIndex:n}=t;const o=(0,Le.pick)(e,["head","body","foot"]);return(0,Le.mapValues)(o,((e,t)=>eh(e)?e:e.map((e=>th(e)||e.cells.length<n?e:{cells:[...e.cells.slice(0,n),{content:"",tag:"head"===t?"th":"td"},...e.cells.slice(n)]}))))}function Xg(e,t){if(!eh(e[t]))return{[t]:[]};return Jg(e,{sectionName:t,rowIndex:0,columnCount:(0,Le.get)(e,["body",0,"cells","length"],1)})}function eh(e){return!e||!e.length||(0,Le.every)(e,th)}function th(e){return!(e.cells&&e.cells.length)}const nh=[{icon:Fg,title:(0,we.__)("Align column left"),align:"left"},{icon:Dg,title:(0,we.__)("Align column center"),align:"center"},{icon:Gg,title:(0,we.__)("Align column right"),align:"right"}],oh={head:(0,we.__)("Header cell text"),body:(0,we.__)("Body cell text"),foot:(0,we.__)("Footer cell text")},rh={head:(0,we.__)("Header label"),foot:(0,we.__)("Footer label")};function ah(e){let{name:t,...n}=e;const o=`t${t}`;return(0,ye.createElement)(o,n)}var lh=function(e){let{attributes:t,setAttributes:n,insertBlocksAfter:o,isSelected:r}=e;const{hasFixedLayout:a,caption:l,head:i,foot:s}=t,[c,u]=(0,ye.useState)(2),[m,d]=(0,ye.useState)(2),[p,g]=(0,ye.useState)(),h=(0,Ee.__experimentalUseColorProps)(t),v=(0,Ee.__experimentalUseBorderProps)(t);function b(e){p&&n(Qg(t,p,(t=>({...t,content:e}))))}function y(e){if(!p)return;const{sectionName:o,rowIndex:r}=p,a=r+e;n(Jg(t,{sectionName:o,rowIndex:a})),g({sectionName:o,rowIndex:a,columnIndex:0,type:"cell"})}function f(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0;if(!p)return;const{columnIndex:o}=p,r=o+e;n(Yg(t,{columnIndex:r})),g({rowIndex:0,columnIndex:r,type:"cell"})}(0,ye.useEffect)((()=>{r||g()}),[r]);const _=["head","body","foot"].filter((e=>!eh(t[e]))),k=[{icon:Ug,title:(0,we.__)("Insert row before"),isDisabled:!p,onClick:function(){y(0)}},{icon:Og,title:(0,we.__)("Insert row after"),isDisabled:!p,onClick:function(){y(1)}},{icon:qg,title:(0,we.__)("Delete row"),isDisabled:!p,onClick:function(){if(!p)return;const{sectionName:e,rowIndex:o}=p;g(),n(function(e,t){let{sectionName:n,rowIndex:o}=t;return{[n]:e[n].filter(((e,t)=>t!==o))}}(t,{sectionName:e,rowIndex:o}))}},{icon:$g,title:(0,we.__)("Insert column before"),isDisabled:!p,onClick:function(){f(0)}},{icon:Wg,title:(0,we.__)("Insert column after"),isDisabled:!p,onClick:function(){f(1)}},{icon:jg,title:(0,we.__)("Delete column"),isDisabled:!p,onClick:function(){if(!p)return;const{sectionName:e,columnIndex:o}=p;g(),n(function(e,t){let{columnIndex:n}=t;const o=(0,Le.pick)(e,["head","body","foot"]);return(0,Le.mapValues)(o,(e=>eh(e)?e:e.map((e=>({cells:e.cells.length>=n?e.cells.filter(((e,t)=>t!==n)):e.cells}))).filter((e=>e.cells.length))))}(t,{sectionName:e,columnIndex:o}))}}],w=["head","body","foot"].map((e=>(0,ye.createElement)(ah,{name:e,key:e},t[e].map(((t,n)=>{let{cells:o}=t;return(0,ye.createElement)("tr",{key:n},o.map(((t,o)=>{let{content:r,tag:a,scope:l,align:i}=t;return(0,ye.createElement)(Ee.RichText,{tagName:a,key:o,className:nt()({[`has-text-align-${i}`]:i},"wp-block-table__cell-content"),scope:"th"===a?l:void 0,value:r,onChange:b,unstableOnFocus:()=>{g({sectionName:e,rowIndex:n,columnIndex:o,type:"cell"})},"aria-label":oh[e],placeholder:rh[e]})})))}))))),E=!_.length;return(0,ye.createElement)("figure",(0,Ee.useBlockProps)(),!E&&(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)(Ee.BlockControls,{group:"block"},(0,ye.createElement)(Ee.AlignmentControl,{label:(0,we.__)("Change column alignment"),alignmentControls:nh,value:function(){if(p)return function(e,t,n){const{sectionName:o,rowIndex:r,columnIndex:a}=t;return(0,Le.get)(e,[o,r,"cells",a,n])}(t,p,"align")}(),onChange:e=>function(e){if(!p)return;const o={type:"column",columnIndex:p.columnIndex},r=Qg(t,o,(t=>({...t,align:e})));n(r)}(e)})),(0,ye.createElement)(Ee.BlockControls,{group:"other"},(0,ye.createElement)(ke.ToolbarDropdownMenu,{hasArrowIndicator:!0,icon:Zg,label:(0,we.__)("Edit table"),controls:k}))),!E&&(0,ye.createElement)(Ee.InspectorControls,null,(0,ye.createElement)(ke.PanelBody,{title:(0,we.__)("Table settings"),className:"blocks-table-settings"},(0,ye.createElement)(ke.ToggleControl,{label:(0,we.__)("Fixed width table cells"),checked:!!a,onChange:function(){n({hasFixedLayout:!a})}}),(0,ye.createElement)(ke.ToggleControl,{label:(0,we.__)("Header section"),checked:!(!i||!i.length),onChange:function(){n(Xg(t,"head"))}}),(0,ye.createElement)(ke.ToggleControl,{label:(0,we.__)("Footer section"),checked:!(!s||!s.length),onChange:function(){n(Xg(t,"foot"))}}))),!E&&(0,ye.createElement)("table",{className:nt()(h.className,v.className,{"has-fixed-layout":a}),style:{...h.style,...v.style}},w),!E&&(0,ye.createElement)(Ee.RichText,{tagName:"figcaption","aria-label":(0,we.__)("Table caption text"),placeholder:(0,we.__)("Add caption"),value:l,onChange:e=>n({caption:e}),unstableOnFocus:()=>g(),__unstableOnSplitAtEnd:()=>o((0,be.createBlock)("core/paragraph"))}),E&&(0,ye.createElement)(ke.Placeholder,{label:(0,we.__)("Table"),icon:(0,ye.createElement)(Ee.BlockIcon,{icon:Lg,showColors:!0}),instructions:(0,we.__)("Insert a table for sharing data.")},(0,ye.createElement)("form",{className:"blocks-table__placeholder-form",onSubmit:function(e){e.preventDefault(),n(function(e){let{rowCount:t,columnCount:n}=e;return{body:(0,Le.times)(t,(()=>({cells:(0,Le.times)(n,(()=>({content:"",tag:"td"})))})))}}({rowCount:parseInt(c,10)||2,columnCount:parseInt(m,10)||2}))}},(0,ye.createElement)(ke.TextControl,{type:"number",label:(0,we.__)("Column count"),value:m,onChange:function(e){d(e)},min:"1",className:"blocks-table__placeholder-input"}),(0,ye.createElement)(ke.TextControl,{type:"number",label:(0,we.__)("Row count"),value:c,onChange:function(e){u(e)},min:"1",className:"blocks-table__placeholder-input"}),(0,ye.createElement)(ke.Button,{className:"blocks-table__placeholder-button",variant:"primary",type:"submit"},(0,we.__)("Create Table")))))};const ih=e=>{let{phrasingContentSchema:t}=e;return{tr:{allowEmpty:!0,children:{th:{allowEmpty:!0,children:t,attributes:["scope"]},td:{allowEmpty:!0,children:t}}}}};var sh={from:[{type:"raw",selector:"table",schema:e=>({table:{children:{thead:{allowEmpty:!0,children:ih(e)},tfoot:{allowEmpty:!0,children:ih(e)},tbody:{allowEmpty:!0,children:ih(e)}}}})}]};const ch={apiVersion:2,name:"core/table",title:"Table",category:"text",description:"Create structured content in rows and columns to display information.",textdomain:"default",attributes:{hasFixedLayout:{type:"boolean",default:!1},caption:{type:"string",source:"html",selector:"figcaption",default:""},head:{type:"array",default:[],source:"query",selector:"thead tr",query:{cells:{type:"array",default:[],source:"query",selector:"td,th",query:{content:{type:"string",source:"html"},tag:{type:"string",default:"td",source:"tag"},scope:{type:"string",source:"attribute",attribute:"scope"},align:{type:"string",source:"attribute",attribute:"data-align"}}}}},body:{type:"array",default:[],source:"query",selector:"tbody tr",query:{cells:{type:"array",default:[],source:"query",selector:"td,th",query:{content:{type:"string",source:"html"},tag:{type:"string",default:"td",source:"tag"},scope:{type:"string",source:"attribute",attribute:"scope"},align:{type:"string",source:"attribute",attribute:"data-align"}}}}},foot:{type:"array",default:[],source:"query",selector:"tfoot tr",query:{cells:{type:"array",default:[],source:"query",selector:"td,th",query:{content:{type:"string",source:"html"},tag:{type:"string",default:"td",source:"tag"},scope:{type:"string",source:"attribute",attribute:"scope"},align:{type:"string",source:"attribute",attribute:"data-align"}}}}}},supports:{anchor:!0,align:!0,color:{__experimentalSkipSerialization:!0,gradients:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0,__experimentalLetterSpacing:!0,__experimentalTextTransform:!0,__experimentalDefaultControls:{fontSize:!0}},__experimentalBorder:{__experimentalSkipSerialization:!0,color:!0,style:!0,width:!0},__experimentalSelector:".wp-block-table > table"},styles:[{name:"regular",label:"Default",isDefault:!0},{name:"stripes",label:"Stripes"}],editorStyle:"wp-block-table-editor",style:"wp-block-table"},{name:uh}=ch,mh={icon:Lg,example:{attributes:{head:[{cells:[{content:(0,we.__)("Version"),tag:"th"},{content:(0,we.__)("Jazz Musician"),tag:"th"},{content:(0,we.__)("Release Date"),tag:"th"}]}],body:[{cells:[{content:"5.2",tag:"td"},{content:"Jaco Pastorius",tag:"td"},{content:(0,we.__)("May 7, 2019"),tag:"td"}]},{cells:[{content:"5.1",tag:"td"},{content:"Betty Carter",tag:"td"},{content:(0,we.__)("February 21, 2019"),tag:"td"}]},{cells:[{content:"5.0",tag:"td"},{content:"Bebo Valdés",tag:"td"},{content:(0,we.__)("December 6, 2018"),tag:"td"}]}]}},transforms:sh,edit:lh,save:function(e){let{attributes:t}=e;const{hasFixedLayout:n,head:o,body:r,foot:a,caption:l}=t;if(!o.length&&!r.length&&!a.length)return null;const i=(0,Ee.__experimentalGetColorClassesAndStyles)(t),s=(0,Ee.__experimentalGetBorderClassesAndStyles)(t),c=nt()(i.className,s.className,{"has-fixed-layout":n}),u=!Ee.RichText.isEmpty(l),m=e=>{let{type:t,rows:n}=e;if(!n.length)return null;const o=`t${t}`;return(0,ye.createElement)(o,null,n.map(((e,t)=>{let{cells:n}=e;return(0,ye.createElement)("tr",{key:t},n.map(((e,t)=>{let{content:n,tag:o,scope:r,align:a}=e;const l=nt()({[`has-text-align-${a}`]:a});return(0,ye.createElement)(Ee.RichText.Content,{className:l||void 0,"data-align":a,tagName:o,value:n,key:t,scope:"th"===o?r:void 0})})))})))};return(0,ye.createElement)("figure",Ee.useBlockProps.save(),(0,ye.createElement)("table",{className:""===c?void 0:c,style:{...i.style,...s.style}},(0,ye.createElement)(m,{type:"head",rows:o}),(0,ye.createElement)(m,{type:"body",rows:r}),(0,ye.createElement)(m,{type:"foot",rows:a})),u&&(0,ye.createElement)(Ee.RichText.Content,{tagName:"figcaption",value:l}))},deprecated:Ag};var dh=(0,Ie.withSelect)((e=>({taxonomies:e(Dt.store).getTaxonomies({per_page:-1})})))((function(e){let{attributes:t,setAttributes:n,taxonomies:o}=e;const{taxonomy:r,showTagCounts:a,numberOfTags:l}=t,i=(0,ye.createElement)(Ee.InspectorControls,null,(0,ye.createElement)(ke.PanelBody,{title:(0,we.__)("Tag Cloud settings")},(0,ye.createElement)(ke.SelectControl,{label:(0,we.__)("Taxonomy"),options:[{label:(0,we.__)("- Select -"),value:"",disabled:!0},...(0,Le.map)((0,Le.filter)(o,"show_cloud"),(e=>({value:e.slug,label:e.name})))],value:r,onChange:e=>n({taxonomy:e})}),(0,ye.createElement)(ke.ToggleControl,{label:(0,we.__)("Show post counts"),checked:a,onChange:()=>n({showTagCounts:!a})}),(0,ye.createElement)(ke.RangeControl,{label:(0,we.__)("Number of tags"),value:l,onChange:e=>n({numberOfTags:e}),min:1,max:100,required:!0})));return(0,ye.createElement)(ye.Fragment,null,i,(0,ye.createElement)("div",(0,Ee.useBlockProps)(),(0,ye.createElement)(xe(),{key:"tag-cloud",block:"core/tag-cloud",attributes:t})))}));const ph={apiVersion:2,name:"core/tag-cloud",title:"Tag Cloud",category:"widgets",description:"A cloud of your most used tags.",textdomain:"default",attributes:{numberOfTags:{type:"number",default:45,minimum:1,maximum:100},taxonomy:{type:"string",default:"post_tag"},showTagCounts:{type:"boolean",default:!1}},supports:{html:!1,align:!0},editorStyle:"wp-block-tag-cloud-editor"},{name:gh}=ph,hh={icon:fc,example:{},edit:dh};var vh=(0,ye.createElement)(fe.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,ye.createElement)(fe.Path,{d:"M21.3 10.8l-5.6-5.6c-.7-.7-1.8-.7-2.5 0l-5.6 5.6c-.7.7-.7 1.8 0 2.5l5.6 5.6c.3.3.8.5 1.2.5s.9-.2 1.2-.5l5.6-5.6c.8-.7.8-1.9.1-2.5zm-17.6 1L10 5.5l-1-1-6.3 6.3c-.7.7-.7 1.8 0 2.5L9 19.5l1.1-1.1-6.3-6.3c-.2 0-.2-.2-.1-.3z"}));function bh(e){return(0,we.sprintf)((0,we.__)("Area: %s"),e)}function yh(){return(0,ye.createElement)("div",{className:"wp-block-template-part__selection-preview-item is-placeholder",tabIndex:0})}function fh(e){let{templatePart:t,setAttributes:n,onClose:o,composite:r}=e;const{slug:a,theme:l,title:{rendered:i}}=t,s=t.content.raw||"",c=(0,ye.useMemo)((()=>(0,be.parse)(s)),[s]),{createSuccessNotice:u}=(0,Ie.useDispatch)(Ir.store),m=(0,ye.useCallback)((()=>{n({slug:a,theme:l,area:void 0}),u((0,we.sprintf)((0,we.__)('Template Part "%s" inserted.'),i||a),{type:"snackbar"}),o()}),[a,l]);return(0,ye.createElement)(ke.__unstableCompositeItem,gt({as:"div",className:"wp-block-template-part__selection-preview-item",role:"option",onClick:m,onKeyDown:e=>{ht.ENTER!==e.keyCode&&ht.SPACE!==e.keyCode||m()},tabIndex:0,"aria-label":i||a},r),(0,ye.createElement)(Ee.BlockPreview,{blocks:c}),(0,ye.createElement)("div",{className:"wp-block-template-part__selection-preview-item-title"},i||a))}function _h(e){let{title:t,icon:n,children:o}=e;return(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)("div",{className:"wp-block-template-part__selection-panel-group-header"},(0,ye.createElement)("span",{className:"wp-block-template-part__selection-panel-group-title"},t),(0,ye.createElement)(ke.Icon,{icon:n})),(0,ye.createElement)("div",{className:"wp-block-template-part__selection-panel-group-content"},o))}function kh(e){let{templateParts:t,setAttributes:n,onClose:o,composite:r,area:a="uncategorized",labelsByArea:l}=e;const{templatePartsByArea:i,templatePartsToShow:s}=(0,ye.useMemo)((()=>{const e=t.filter((e=>"uncategorized"===a||e.area===a))||[];return{templatePartsByArea:Object.values((0,Le.groupBy)(e,"area")),templatePartsToShow:(0,Le.flatten)(e)}}),[t,a]),c=(0,ot.useAsyncList)(s);return s.length?i.map((e=>(0,ye.createElement)(_h,{key:e[0].area,title:bh(l[e[0].area]||l.uncategorized)},e.map((e=>c.includes(e)?(0,ye.createElement)(fh,{key:e.id,templatePart:e,setAttributes:n,onClose:o,composite:r}):(0,ye.createElement)(yh,{key:e.id})))))):(0,ye.createElement)(_h,{title:bh(l[a]||l.uncategorized)},(0,we.sprintf)((0,we.__)("There is no other %s available. If you are looking for another type of template part, try searching for it using the input above."),a&&"uncategorized"!==a?l[a]||a:(0,we.__)("Template Part")))}function wh(e){let{templateParts:t,setAttributes:n,filterValue:o,onClose:r,composite:a,labelsByArea:l}=e;const{filteredTPs:i,groupedResults:s}=(0,ye.useMemo)((()=>{const e=(0,Le.deburr)(o).toLowerCase(),n=t.filter((t=>{let{title:{rendered:n},area:o}=t;return(0,Le.deburr)(n).toLowerCase().includes(e)||(0,Le.deburr)(l[o]).toLowerCase().includes(e)}));n.sort(((t,n)=>{const o=(0,Le.deburr)(t.title.rendered).toLowerCase().indexOf(e),r=(0,Le.deburr)(n.title.rendered).toLowerCase().indexOf(e);return-1!==o&&-1!==r?o-r:-1!==o?-1:-1!==r?1:(0,Le.deburr)(l[t.area]).toLowerCase().indexOf(e)-(0,Le.deburr)(l[n.area]).toLowerCase().indexOf(e)}));const r=[];for(let e=0;e<n.length;e++)0!==e&&n[e].area===n[e-1].area?r[r.length-1].push(n[e]):r.push([n[e]]);return{filteredTPs:n,groupedResults:r}}),[o,t]),c=(0,ot.useAsyncList)(i);return s.map((e=>(0,ye.createElement)(_h,{key:e[0].id,title:bh(l[e[0].area]||l.uncategorized)},e.map((e=>c.includes(e)?(0,ye.createElement)(fh,{key:e.id,templatePart:e,setAttributes:n,onClose:r,composite:a}):(0,ye.createElement)(yh,{key:e.id}))))))}function Eh(e){let{setAttributes:t,filterValue:n,onClose:o,area:r,templatePartId:a}=e;const l=(0,ke.__unstableUseCompositeState)(),{templateParts:i,labelsByArea:s}=(0,Ie.useSelect)((e=>{const t=(e(Dt.store).getEntityRecords("postType","wp_template_part",{per_page:-1})||[]).filter((e=>zs(e.theme,e.slug)!==a)),n=e("core/editor").__experimentalGetDefaultTemplatePartAreas(),o={};return n.forEach((e=>{o[e.area]=e.label})),{templateParts:t,labelsByArea:o}}),[]);return i&&i.length?n?(0,ye.createElement)(ke.__unstableComposite,gt({},l,{role:"listbox","aria-label":(0,we.__)("List of template parts")}),(0,ye.createElement)(wh,{templateParts:i,setAttributes:t,filterValue:n,onClose:o,composite:l,labelsByArea:s})):(0,ye.createElement)(ke.__unstableComposite,gt({},l,{role:"listbox","aria-label":(0,we.__)("List of template parts")}),(0,ye.createElement)(kh,{templateParts:i,setAttributes:t,onClose:o,composite:l,area:r,labelsByArea:s})):(0,ye.createElement)(_h,null,(0,we.__)("There are no existing template parts to select."))}function Ch(e){let{setAttributes:t,onClose:n,area:o,templatePartId:r=null}=e;const[a,l]=(0,ye.useState)("");return(0,ye.createElement)("div",null,(0,ye.createElement)(ke.SearchControl,{value:a,onChange:l,className:"wp-block-template-part__selection-preview-search-form"}),(0,ye.createElement)("div",{className:"wp-block-template-part__selection-preview-container"},(0,ye.createElement)(Eh,{setAttributes:t,filterValue:a,onClose:n,area:o,templatePartId:r})))}function xh(e){let{area:t,areaLabel:n,areaIcon:o,clientId:r,onCreate:a,resetPlaceholder:l}=e;const i=t?`core/template-part/${t}`:"core/template-part",[s,c]=(0,ye.useState)((0,we.__)("Untitled Template Part")),[u,m]=(0,ye.useState)([]),[d,p]=(0,ye.useState)(!1);return(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)(Ee.__experimentalBlockPatternSetup,{clientId:r,startBlankComponent:(0,ye.createElement)(Sh,{setTitleStep:p,areaLabel:n,areaIcon:o}),onBlockPatternSelect:e=>{m(e),p(!0)},filterPatternsFn:e=>{var t,n;return null==e||null===(t=e.blockTypes)||void 0===t||null===(n=t.some)||void 0===n?void 0:n.call(t,(e=>e===i))}}),d&&(0,ye.createElement)(ke.Modal,{title:(0,we.sprintf)((0,we.__)("Name and create your new %s"),n.toLowerCase()),closeLabel:(0,we.__)("Cancel"),onRequestClose:l,overlayClassName:"wp-block-template-part__placeholder-create-new__title-form"},(0,ye.createElement)("form",{onSubmit:e=>{e.preventDefault(),a(u,s)}},(0,ye.createElement)(ke.TextControl,{label:(0,we.__)("Name"),value:s,onChange:c}),(0,ye.createElement)(ke.Flex,{className:"wp-block-template-part__placeholder-create-new__title-form-actions",justify:"flex-end"},(0,ye.createElement)(ke.FlexItem,null,(0,ye.createElement)(ke.Button,{variant:"secondary",onClick:l},(0,we.__)("Cancel"))),(0,ye.createElement)(ke.FlexItem,null,(0,ye.createElement)(ke.Button,{variant:"primary",type:"submit",disabled:!s.length,"aria-disabled":!s.length},(0,we.__)("Create")))))))}function Sh(e){let{setTitleStep:t,areaLabel:n,areaIcon:o}=e;return(0,ye.useEffect)((()=>{t(!0)}),[]),(0,ye.createElement)(ke.Placeholder,{label:n,icon:o,instructions:(0,we.sprintf)((0,we.__)("Creating your new %s"),n.toLowerCase())})}const Bh=1,Th=2;function Nh(e){let{area:t,clientId:n,setAttributes:o,enableSelection:r,hasResolvedReplacements:a}=e;const{saveEntityRecord:l}=(0,Ie.useDispatch)(Dt.store),[i,s]=(0,ye.useState)(Bh),{areaIcon:c,areaLabel:u}=(0,Ie.useSelect)((e=>{const n=e("core/editor").__experimentalGetDefaultTemplatePartAreas(),o=(0,Le.find)(n,{area:t}),r=(0,Le.find)(n,{area:"uncategorized"});return{areaIcon:(null==o?void 0:o.icon)||(null==r?void 0:r.icon),areaLabel:(null==o?void 0:o.label)||(0,we.__)("Template Part")}}),[t]),m=(0,ye.useCallback)((async function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:(0,we.__)("Untitled Template Part");const r={title:n,slug:(0,Le.kebabCase)(n),content:(0,be.serialize)(e),area:t},a=await l("postType","wp_template_part",r);o({slug:a.slug,theme:a.theme,area:void 0})}),[o,t]);return(0,ye.createElement)(ye.Fragment,null,i===Bh&&(0,ye.createElement)(ke.Placeholder,{icon:c,label:u,instructions:r?(0,we.sprintf)((0,we.__)("Choose an existing %s or create a new one."),u.toLowerCase()):(0,we.sprintf)((0,we.__)("Create a new %s."),u.toLowerCase())},a?(0,ye.createElement)(ke.Dropdown,{contentClassName:"wp-block-template-part__placeholder-preview-dropdown-content",position:"bottom right left",renderToggle:e=>{let{isOpen:t,onToggle:n}=e;return(0,ye.createElement)(ye.Fragment,null,r&&(0,ye.createElement)(ke.Button,{variant:"primary",onClick:n,"aria-expanded":t},(0,we.__)("Choose existing")),(0,ye.createElement)(ke.Button,{variant:r?"tertiary":"primary",onClick:()=>s(Th)},(0,we.sprintf)((0,we.__)("New %s"),u.toLowerCase())))},renderContent:e=>{let{onClose:n}=e;return(0,ye.createElement)(Ch,{setAttributes:o,onClose:n,area:t})}}):(0,ye.createElement)(ke.Spinner,null)),i===Th&&(0,ye.createElement)(xh,{area:t,areaLabel:u,areaIcon:c,onCreate:m,clientId:n,resetPlaceholder:()=>s(Bh)}))}function zh(e){let{tagName:t,setAttributes:n,isEntityAvailable:o,templatePartId:r,defaultWrapper:a}=e;const[l,i]=(0,Dt.useEntityProp)("postType","wp_template_part","area",r),[s,c]=(0,Dt.useEntityProp)("postType","wp_template_part","title",r),{areaOptions:u}=(0,Ie.useSelect)((e=>({areaOptions:e("core/editor").__experimentalGetDefaultTemplatePartAreas().map((e=>{let{label:t,area:n}=e;return{label:t,value:n}}))})),[]);return(0,ye.createElement)(Ee.InspectorControls,{__experimentalGroup:"advanced"},o&&(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)(ke.TextControl,{label:(0,we.__)("Title"),value:s,onChange:e=>{c(e)},onFocus:e=>e.target.select()}),(0,ye.createElement)(ke.SelectControl,{label:(0,we.__)("Area"),labelPosition:"top",options:u,value:l,onChange:i})),(0,ye.createElement)(ke.SelectControl,{label:(0,we.__)("HTML element"),options:[{label:(0,we.sprintf)((0,we.__)("Default based on area (%s)"),`<${a}>`),value:""},{label:"<header>",value:"header"},{label:"<main>",value:"main"},{label:"<section>",value:"section"},{label:"<article>",value:"article"},{label:"<aside>",value:"aside"},{label:"<footer>",value:"footer"},{label:"<div>",value:"div"}],value:t||"",onChange:e=>n({tagName:e})}))}function Ph(e){let{postId:t,hasInnerBlocks:n,layout:o,tagName:r,blockProps:a,clientId:l}=e;const i=(0,Ie.useSelect)((e=>{var t;const{getSettings:n}=e(Ee.store);return null===(t=n())||void 0===t?void 0:t.supportsLayout}),[]),s=(0,Ee.useSetting)("layout")||{},c=o&&o.inherit?s:o,[u,m,d]=(0,Dt.useEntityBlockEditor)("postType","wp_template_part",{id:t}),p=(0,Ee.useInnerBlocksProps)(a,{value:u,onInput:m,onChange:d,renderAppender:n?void 0:Ee.InnerBlocks.ButtonBlockAppender,__experimentalLayout:i?c:void 0});return(0,ye.createElement)(Ee.__experimentalBlockContentOverlay,{clientId:l,tagName:r,wrapperProps:p})}var Ih=(0,ye.createElement)(fe.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,ye.createElement)(fe.Path,{d:"M18.5 10.5H10v8h8a.5.5 0 00.5-.5v-7.5zm-10 0h-3V18a.5.5 0 00.5.5h2.5v-8zM6 4h12a2 2 0 012 2v12a2 2 0 01-2 2H6a2 2 0 01-2-2V6a2 2 0 012-2z"}));var Mh=(0,ye.createElement)(fe.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,ye.createElement)(fe.Path,{fillRule:"evenodd",d:"M18 5.5h-8v8h8.5V6a.5.5 0 00-.5-.5zm-9.5 8h-3V6a.5.5 0 01.5-.5h2.5v8zM6 4h12a2 2 0 012 2v12a2 2 0 01-2 2H6a2 2 0 01-2-2V6a2 2 0 012-2z"}));var Rh=(0,ye.createElement)(fe.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,ye.createElement)(fe.Path,{d:"M18 5.5H6a.5.5 0 00-.5.5v3h13V6a.5.5 0 00-.5-.5zm.5 5H10v8h8a.5.5 0 00.5-.5v-7.5zM6 4h12a2 2 0 012 2v12a2 2 0 01-2 2H6a2 2 0 01-2-2V6a2 2 0 012-2z"}));const Lh=[{name:"header",icon:Ih,title:(0,we.__)("Header"),description:(0,we.__)("The Header template defines a page area that typically contains a title, logo, and main navigation."),attributes:{area:"header"},scope:["inserter"]},{name:"footer",icon:Mh,title:(0,we.__)("Footer"),description:(0,we.__)("The Footer template defines a page area that typically contains site credits, social links, or any other combination of blocks."),attributes:{area:"footer"},scope:["inserter"]}];Lh.forEach((e=>{e.isActive||(e.isActive=(e,t)=>{const{area:n,theme:o,slug:r}=e;if(n)return n===t.area;if(!r)return!1;const a=(0,Ie.select)(Dt.store).getEntityRecord("postType","wp_template_part",`${o}//${r}`);return(null==a?void 0:a.area)===t.area})}));var Vh=Lh;const Hh={apiVersion:2,name:"core/template-part",title:"Template Part",category:"theme",description:"Edit the different global regions of your site, like the header, footer, sidebar, or create your own.",textdomain:"default",attributes:{slug:{type:"string"},theme:{type:"string"},tagName:{type:"string"},area:{type:"string"}},supports:{align:!0,html:!1,reusable:!1},editorStyle:"wp-block-template-part-editor"},{name:Ah}=Hh,Fh={icon:vh,__experimentalLabel:e=>{var t;let{slug:n,theme:o}=e;if(!n)return;const r=(0,Ie.select)(Dt.store).getEntityRecord("postType","wp_template_part",o+"//"+n);return r?(0,Le.startCase)((null===(t=r.title)||void 0===t?void 0:t.rendered)||r.slug):void 0},edit:function(e){let{attributes:t,setAttributes:n,clientId:o}=e;const{slug:r,theme:a,tagName:l,layout:i={}}=t,s=zs(a,r),[c,u]=(0,Ee.__experimentalUseNoRecursiveRenders)(s),{isResolved:m,innerBlocks:d,isMissing:p,defaultWrapper:g,area:h,enableSelection:v,hasResolvedReplacements:b}=(0,Ie.useSelect)((e=>{var n;const{getEditedEntityRecord:r,getEntityRecords:a,hasFinishedResolution:l}=e(Dt.store),{getBlocks:i}=e(Ee.store),c=["postType","wp_template_part",s],u=s?r(...c):null,m=(null==u?void 0:u.area)||t.area,d=["postType","wp_template_part",m&&"uncategorized"!==m&&{area:m}],p=a(...d),g=s?(null==p?void 0:p.length)>1:(null==p?void 0:p.length)>0,h=!!s&&l("getEditedEntityRecord",c),v=null===(n=e("core/editor").__experimentalGetDefaultTemplatePartAreas().find((e=>{let{area:t}=e;return t===m})))||void 0===n?void 0:n.area_tag;return{innerBlocks:i(o),isResolved:h,isMissing:h&&(0,Le.isEmpty)(u),defaultWrapper:v||"div",area:m,enableSelection:g,hasResolvedReplacements:l("getEntityRecords",d)}}),[s,o]),y=(0,Ee.useBlockProps)(),f=!r,_=!f&&!p&&m,k=l||g;return 0===d.length&&(r&&!a||r&&p)?(0,ye.createElement)(k,y,(0,ye.createElement)(Ee.Warning,null,(0,we.sprintf)((0,we.__)("Template part has been deleted or is unavailable: %s"),r))):_&&c?(0,ye.createElement)(k,y,(0,ye.createElement)(Ee.Warning,null,(0,we.__)("Block cannot be rendered inside itself."))):(0,ye.createElement)(u,null,(0,ye.createElement)(zh,{tagName:l,setAttributes:n,isEntityAvailable:_,templatePartId:s,defaultWrapper:g}),f&&(0,ye.createElement)(k,y,(0,ye.createElement)(Nh,{area:t.area,clientId:o,setAttributes:n,enableSelection:v,hasResolvedReplacements:b})),_&&v&&(0,ye.createElement)(Ee.BlockControls,null,(0,ye.createElement)(ke.ToolbarGroup,{className:"wp-block-template-part__block-control-group"},(0,ye.createElement)(ke.Dropdown,{className:"wp-block-template-part__preview-dropdown-button",contentClassName:"wp-block-template-part__preview-dropdown-content",position:"bottom right left",renderToggle:e=>{let{isOpen:t,onToggle:n}=e;return(0,ye.createElement)(ke.ToolbarButton,{"aria-expanded":t,onClick:n},(0,we.__)("Replace"))},renderContent:e=>{let{onClose:t}=e;return(0,ye.createElement)(Ch,{setAttributes:n,onClose:t,area:h,templatePartId:s})}}))),_&&(0,ye.createElement)(Ph,{clientId:o,tagName:k,blockProps:y,postId:s,hasInnerBlocks:d.length>0,layout:i}),!f&&!m&&(0,ye.createElement)(k,y,(0,ye.createElement)(ke.Spinner,null)))}};(0,ja.addFilter)("blocks.registerBlockType","core/template-part",(function(e,t){if("core/template-part"!==t)return e;if(!e.variations||!e.variations.length)return{...e,variations:Vh};if(e.variations){const t=(e,t)=>{const{area:n,theme:o,slug:r}=e;if(n)return n===t.area;if(!r)return!1;const a=(0,Ie.select)(Dt.store).getEntityRecord("postType","wp_template_part",`${o}//${r}`);return(null==a?void 0:a.area)===t.area},n=e.variations.map((e=>{return{...e,...!e.isActive&&{isActive:t},..."string"==typeof e.icon&&{icon:(n=e.icon,"header"===n?Ih:"footer"===n?Mh:"sidebar"===n?Rh:vh)}};var n}));return{...e,variations:n}}return e}));const Dh=["core/post-template","core/post-content"];(0,ja.addFilter)("blockEditor.__unstableCanInsertBlockType","removeTemplatePartsFromPostTemplates",((e,t,n,o)=>{let{getBlock:r,getBlockParentsByBlockName:a}=o;if("core/template-part"!==t.name)return e;for(const e of Dh){var l;if((null===(l=r(n))||void 0===l?void 0:l.name)===e||a(n,e).length)return!1}return!0}));var Gh=(0,ye.createElement)(fe.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,ye.createElement)(fe.Path,{stroke:"#1E1E1E",strokeWidth:"1.5",d:"M9 19.25h6M4 19.25h4M12 15.25h8M4 15.25h7"}),(0,ye.createElement)(fe.Path,{d:"M8.994 10.103H6.08L5.417 12H4l2.846-8h1.383l2.845 8H9.657l-.663-1.897zm-.457-1.28l-.994-2.857-1.006 2.857h2z",fill:"#1E1E1E"}));const Uh={apiVersion:2,name:"core/term-description",title:"Term Description",category:"theme",description:"Display the description of categories, tags and custom taxonomies when viewing an archive.",textdomain:"default",attributes:{textAlign:{type:"string"}},supports:{align:["wide","full"],html:!1,color:{link:!0},typography:{fontSize:!0,lineHeight:!0,__experimentalDefaultControls:{fontSize:!0}}},editorStyle:"wp-block-term-description-editor"},{name:Oh}=Uh,qh={icon:Gh,edit:function(e){let{attributes:t,setAttributes:n,mergedStyle:o}=e;const{textAlign:r}=t,a=(0,Ee.useBlockProps)({className:nt()({[`has-text-align-${r}`]:r}),style:o});return(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)(Ee.BlockControls,{group:"block"},(0,ye.createElement)(Ee.AlignmentControl,{value:r,onChange:e=>{n({textAlign:e})}})),(0,ye.createElement)("div",a,(0,ye.createElement)("div",{className:"wp-block-term-description__placeholder"},(0,ye.createElement)("span",null,(0,we.__)("Term Description")))))}};var $h=window.wp.deprecated,Wh=n.n($h);const jh={to:[{type:"block",blocks:["core/columns"],transform:e=>{let{className:t,columns:n,content:o,width:r}=e;return(0,be.createBlock)("core/columns",{align:"wide"===r||"full"===r?r:void 0,className:t,columns:n},o.map((e=>{let{children:t}=e;return(0,be.createBlock)("core/column",{},[(0,be.createBlock)("core/paragraph",{content:t})])})))}}]};var Zh=jh;const Kh={apiVersion:2,name:"core/text-columns",title:"Text Columns (deprecated)",icon:"columns",category:"design",description:"This block is deprecated. Please use the Columns block instead.",textdomain:"default",attributes:{content:{type:"array",source:"query",selector:"p",query:{children:{type:"string",source:"html"}},default:[{},{}]},columns:{type:"number",default:2},width:{type:"string"}},supports:{inserter:!1},editorStyle:"wp-block-text-columns-editor",style:"wp-block-text-columns"},{name:Qh}=Kh,Jh={transforms:Zh,getEditWrapperProps(e){const{width:t}=e;if("wide"===t||"full"===t)return{"data-align":t}},edit:function(e){let{attributes:t,setAttributes:n}=e;const{width:o,content:r,columns:a}=t;return Wh()("The Text Columns block",{since:"5.3",alternative:"the Columns block"}),(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)(Ee.BlockControls,null,(0,ye.createElement)(Ee.BlockAlignmentToolbar,{value:o,onChange:e=>n({width:e}),controls:["center","wide","full"]})),(0,ye.createElement)(Ee.InspectorControls,null,(0,ye.createElement)(ke.PanelBody,null,(0,ye.createElement)(ke.RangeControl,{label:(0,we.__)("Columns"),value:a,onChange:e=>n({columns:e}),min:2,max:4,required:!0}))),(0,ye.createElement)("div",(0,Ee.useBlockProps)({className:`align${o} columns-${a}`}),(0,Le.times)(a,(e=>(0,ye.createElement)("div",{className:"wp-block-column",key:`column-${e}`},(0,ye.createElement)(Ee.RichText,{tagName:"p",value:(0,Le.get)(r,[e,"children"]),onChange:t=>{n({content:[...r.slice(0,e),{children:t},...r.slice(e+1)]})},"aria-label":(0,we.sprintf)((0,we.__)("Column %d text"),e+1),placeholder:(0,we.__)("New Column")}))))))},save:function(e){let{attributes:t}=e;const{width:n,content:o,columns:r}=t;return(0,ye.createElement)("div",Ee.useBlockProps.save({className:`align${n} columns-${r}`}),(0,Le.times)(r,(e=>(0,ye.createElement)("div",{className:"wp-block-column",key:`column-${e}`},(0,ye.createElement)(Ee.RichText.Content,{tagName:"p",value:(0,Le.get)(o,[e,"children"])})))))}};var Yh=(0,ye.createElement)(fe.SVG,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,ye.createElement)(fe.Path,{d:"M17.8 2l-.9.3c-.1 0-3.6 1-5.2 2.1C10 5.5 9.3 6.5 8.9 7.1c-.6.9-1.7 4.7-1.7 6.3l-.9 2.3c-.2.4 0 .8.4 1 .1 0 .2.1.3.1.3 0 .6-.2.7-.5l.6-1.5c.3 0 .7-.1 1.2-.2.7-.1 1.4-.3 2.2-.5.8-.2 1.6-.5 2.4-.8.7-.3 1.4-.7 1.9-1.2s.8-1.2 1-1.9c.2-.7.3-1.6.4-2.4.1-.8.1-1.7.2-2.5 0-.8.1-1.5.2-2.1V2zm-1.9 5.6c-.1.8-.2 1.5-.3 2.1-.2.6-.4 1-.6 1.3-.3.3-.8.6-1.4.9-.7.3-1.4.5-2.2.8-.6.2-1.3.3-1.8.4L15 7.5c.3-.3.6-.7 1-1.1 0 .4 0 .8-.1 1.2zM6 20h8v-1.5H6V20z"}));const Xh={attributes:{content:{type:"string",source:"html",selector:"pre",default:""},textAlign:{type:"string"}},save(e){let{attributes:t}=e;const{textAlign:n,content:o}=t;return(0,ye.createElement)(Ee.RichText.Content,{tagName:"pre",style:{textAlign:n},value:o})}},ev={attributes:{content:{type:"string",source:"html",selector:"pre",default:"",__unstablePreserveWhiteSpace:!0,__experimentalRole:"content"},textAlign:{type:"string"}},supports:{anchor:!0,color:{gradients:!0,link:!0},typography:{fontSize:!0,__experimentalFontFamily:!0},spacing:{padding:!0}},save(e){let{attributes:t}=e;const{textAlign:n,content:o}=t,r=nt()({[`has-text-align-${n}`]:n});return(0,ye.createElement)("pre",Ee.useBlockProps.save({className:r}),(0,ye.createElement)(Ee.RichText.Content,{value:o}))},migrate:lt,isEligible(e){var t;let{style:n}=e;return null==n||null===(t=n.typography)||void 0===t?void 0:t.fontFamily}};var tv=[ev,Xh];const nv={from:[{type:"block",blocks:["core/paragraph"],transform:e=>(0,be.createBlock)("core/verse",e)}],to:[{type:"block",blocks:["core/paragraph"],transform:e=>(0,be.createBlock)("core/paragraph",e)}]};var ov=nv;const rv={apiVersion:2,name:"core/verse",title:"Verse",category:"text",description:"Insert poetry. Use special spacing formats. Or quote song lyrics.",keywords:["poetry","poem"],textdomain:"default",attributes:{content:{type:"string",source:"html",selector:"pre",default:"",__unstablePreserveWhiteSpace:!0,__experimentalRole:"content"},textAlign:{type:"string"}},supports:{anchor:!0,color:{gradients:!0,link:!0},typography:{fontSize:!0,__experimentalFontFamily:!0,lineHeight:!0,__experimentalFontStyle:!0,__experimentalFontWeight:!0,__experimentalLetterSpacing:!0,__experimentalTextTransform:!0,__experimentalDefaultControls:{fontSize:!0,fontAppearance:!0}},spacing:{padding:!0}},style:"wp-block-verse",editorStyle:"wp-block-verse-editor"},{name:av}=rv,lv={icon:Yh,example:{attributes:{content:(0,we.__)("WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.")}},transforms:ov,deprecated:tv,merge:(e,t)=>({content:e.content+t.content}),edit:function(e){let{attributes:t,setAttributes:n,mergeBlocks:o,onRemove:r,style:a}=e;const{textAlign:l,content:i}=t,s=(0,Ee.useBlockProps)({className:nt()({[`has-text-align-${l}`]:l}),style:a});return(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)(Ee.BlockControls,null,(0,ye.createElement)(Ee.AlignmentToolbar,{value:l,onChange:e=>{n({textAlign:e})}})),(0,ye.createElement)(Ee.RichText,gt({tagName:"pre",identifier:"content",preserveWhiteSpace:!0,value:i,onChange:e=>{n({content:e})},"aria-label":(0,we.__)("Verse text"),placeholder:(0,we.__)("Write verse"),onRemove:r,onMerge:o,textAlign:l},s,{__unstablePastePlainText:!0})))},save:function(e){let{attributes:t}=e;const{textAlign:n,content:o}=t,r=nt()({[`has-text-align-${n}`]:n});return(0,ye.createElement)("pre",Ee.useBlockProps.save({className:r}),(0,ye.createElement)(Ee.RichText.Content,{value:o}))}};var iv=(0,ye.createElement)(fe.SVG,{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},(0,ye.createElement)(fe.Path,{d:"M18.7 3H5.3C4 3 3 4 3 5.3v13.4C3 20 4 21 5.3 21h13.4c1.3 0 2.3-1 2.3-2.3V5.3C21 4 20 3 18.7 3zm.8 15.7c0 .4-.4.8-.8.8H5.3c-.4 0-.8-.4-.8-.8V5.3c0-.4.4-.8.8-.8h13.4c.4 0 .8.4.8.8v13.4zM10 15l5-3-5-3v6z"}));const sv=[{value:"auto",label:(0,we.__)("Auto")},{value:"metadata",label:(0,we.__)("Metadata")},{value:"none",label:(0,we._x)("None","Preload value")}];var cv=e=>{let{setAttributes:t,attributes:n}=e;const{autoplay:o,controls:r,loop:a,muted:l,playsInline:i,preload:s}=n,c=(0,we.__)("Autoplay may cause usability issues for some users."),u=ye.Platform.select({web:(0,ye.useCallback)((e=>e?c:null),[]),native:c}),m=(0,ye.useMemo)((()=>{const e=e=>n=>{t({[e]:n})};return{autoplay:e("autoplay"),loop:e("loop"),muted:e("muted"),controls:e("controls"),playsInline:e("playsInline")}}),[]),d=(0,ye.useCallback)((e=>{t({preload:e})}),[]);return(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)(ke.ToggleControl,{label:(0,we.__)("Autoplay"),onChange:m.autoplay,checked:o,help:u}),(0,ye.createElement)(ke.ToggleControl,{label:(0,we.__)("Loop"),onChange:m.loop,checked:a}),(0,ye.createElement)(ke.ToggleControl,{label:(0,we.__)("Muted"),onChange:m.muted,checked:l}),(0,ye.createElement)(ke.ToggleControl,{label:(0,we.__)("Playback controls"),onChange:m.controls,checked:r}),(0,ye.createElement)(ke.ToggleControl,{label:(0,we.__)("Play inline"),onChange:m.playsInline,checked:i}),(0,ye.createElement)(ke.SelectControl,{label:(0,we.__)("Preload"),value:s,onChange:d,options:sv,hideCancelButton:!0}))};var uv=(0,ye.createElement)(fe.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,ye.createElement)(fe.Path,{d:"M18.7 3H5.3C4 3 3 4 3 5.3v13.4C3 20 4 21 5.3 21h13.4c1.3 0 2.3-1 2.3-2.3V5.3C21 4 20 3 18.7 3zm.8 15.7c0 .4-.4.8-.8.8H5.3c-.4 0-.8-.4-.8-.8V5.3c0-.4.4-.8.8-.8h13.4c.4 0 .8.4.8.8v13.4zM10 15l5-3-5-3v6z"}));const mv=["text/vtt"],dv="subtitles",pv=[{label:(0,we.__)("Subtitles"),value:"subtitles"},{label:(0,we.__)("Captions"),value:"captions"},{label:(0,we.__)("Descriptions"),value:"descriptions"},{label:(0,we.__)("Chapters"),value:"chapters"},{label:(0,we.__)("Metadata"),value:"metadata"}],gv=(0,ye.createElement)(ke.SVG,{width:"18",height:"14",viewBox:"0 0 18 14",role:"img",fill:"none"},(0,ye.createElement)(ke.Rect,{x:"0.75",y:"0.75",width:"16.5",height:"12.5",rx:"1.25",stroke:"black",strokeWidth:"1.5",fill:"none"}),(0,ye.createElement)(ke.Path,{d:"M3 7H15",stroke:"black",strokeWidth:"1.5"}),(0,ye.createElement)(ke.Path,{d:"M3 10L15 10",stroke:"black",strokeWidth:"1.5"}));function hv(e){let t,{tracks:n,onEditPress:o}=e;return t=0===n.length?(0,ye.createElement)("p",{className:"block-library-video-tracks-editor__tracks-informative-message"},(0,we.__)("Tracks can be subtitles, captions, chapters, or descriptions. They help make your content more accessible to a wider range of users.")):n.map(((e,t)=>(0,ye.createElement)("div",{key:t,className:"block-library-video-tracks-editor__track-list-track"},(0,ye.createElement)("span",null,e.label," "),(0,ye.createElement)(ke.Button,{variant:"tertiary",onClick:()=>o(t),"aria-label":(0,we.sprintf)((0,we.__)("Edit %s"),e.label)},(0,we.__)("Edit"))))),(0,ye.createElement)(ke.MenuGroup,{label:(0,we.__)("Text tracks"),className:"block-library-video-tracks-editor__track-list"},t)}function vv(e){let{track:t,onChange:n,onClose:o,onRemove:r}=e;const{src:a="",label:l="",srcLang:i="",kind:s=dv}=t,c=a.startsWith("blob:")?"":(0,Dr.getFilename)(a)||"";return(0,ye.createElement)(ke.NavigableMenu,null,(0,ye.createElement)("div",{className:"block-library-video-tracks-editor__single-track-editor"},(0,ye.createElement)("span",{className:"block-library-video-tracks-editor__single-track-editor-edit-track-label"},(0,we.__)("Edit track")),(0,ye.createElement)("span",null,(0,we.__)("File"),": ",(0,ye.createElement)("b",null,c)),(0,ye.createElement)("div",{className:"block-library-video-tracks-editor__single-track-editor-label-language"},(0,ye.createElement)(ke.TextControl,{autoFocus:!0,onChange:e=>n({...t,label:e}),label:(0,we.__)("Label"),value:l,help:(0,we.__)("Title of track")}),(0,ye.createElement)(ke.TextControl,{onChange:e=>n({...t,srcLang:e}),label:(0,we.__)("Source language"),value:i,help:(0,we.__)("Language tag (en, fr, etc.)")})),(0,ye.createElement)(ke.SelectControl,{className:"block-library-video-tracks-editor__single-track-editor-kind-select",options:pv,value:s,label:(0,we.__)("Kind"),onChange:e=>{n({...t,kind:e})}}),(0,ye.createElement)("div",{className:"block-library-video-tracks-editor__single-track-editor-buttons-container"},(0,ye.createElement)(ke.Button,{variant:"secondary",onClick:()=>{const e={};let r=!1;""===l&&(e.label=(0,we.__)("English"),r=!0),""===i&&(e.srcLang="en",r=!0),void 0===t.kind&&(e.kind=dv,r=!0),r&&n({...t,...e}),o()}},(0,we.__)("Close")),(0,ye.createElement)(ke.Button,{isDestructive:!0,variant:"link",onClick:r},(0,we.__)("Remove track")))))}function bv(e){let{tracks:t=[],onChange:n}=e;const o=(0,Ie.useSelect)((e=>e(Ee.store).getSettings().mediaUpload),[]),[r,a]=(0,ye.useState)(null);return o?(0,ye.createElement)(ke.Dropdown,{contentClassName:"block-library-video-tracks-editor",renderToggle:e=>{let{isOpen:t,onToggle:n}=e;return(0,ye.createElement)(ke.ToolbarButton,{label:(0,we.__)("Text tracks"),showTooltip:!0,"aria-expanded":t,"aria-haspopup":"true",onClick:n,icon:gv})},renderContent:e=>{let{}=e;return null!==r?(0,ye.createElement)(vv,{track:t[r],onChange:e=>{const o=[...t];o[r]=e,n(o)},onClose:()=>a(null),onRemove:()=>{n(t.filter(((e,t)=>t!==r))),a(null)}}):(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)(ke.NavigableMenu,null,(0,ye.createElement)(hv,{tracks:t,onEditPress:a}),(0,ye.createElement)(ke.MenuGroup,{className:"block-library-video-tracks-editor__add-tracks-container",label:(0,we.__)("Add tracks")},(0,ye.createElement)(Ee.MediaUpload,{onSelect:e=>{let{url:o}=e;const r=t.length;n([...t,{src:o}]),a(r)},allowedTypes:mv,render:e=>{let{open:t}=e;return(0,ye.createElement)(ke.MenuItem,{icon:uv,onClick:t},(0,we.__)("Open Media Library"))}}),(0,ye.createElement)(Ee.MediaUploadCheck,null,(0,ye.createElement)(ke.FormFileUpload,{onChange:e=>{const r=e.target.files,l=t.length;o({allowedTypes:mv,filesList:r,onFileChange:e=>{let[{url:o}]=e;const r=[...t];r[l]||(r[l]={}),r[l]={...t[l],src:o},n(r),a(l)}})},accept:".vtt,text/vtt",render:e=>{let{openFileDialog:t}=e;return(0,ye.createElement)(ke.MenuItem,{icon:Ol,onClick:()=>{t()}},(0,we.__)("Upload"))}})))))}}):null}function yv(e){let{tracks:t=[]}=e;return t.map((e=>(0,ye.createElement)("track",gt({key:e.src},e))))}const fv=["video"],_v=["image"];var kv=(0,ke.withNotices)((function e(t){let{isSelected:n,noticeUI:o,attributes:r,className:a,setAttributes:l,insertBlocksAfter:i,onReplace:s,noticeOperations:c}=t;const u=(0,ot.useInstanceId)(e),m=(0,ye.useRef)(),d=(0,ye.useRef)(),{id:p,caption:g,controls:h,poster:v,src:b,tracks:y}=r,f=!p&&(0,Pe.isBlobURL)(b),_=(0,Ie.useSelect)((e=>e(Ee.store).getSettings().mediaUpload));function k(e){var t,n;e&&e.url?l({src:e.url,id:e.id,poster:(null===(t=e.image)||void 0===t?void 0:t.src)!==e.icon?null===(n=e.image)||void 0===n?void 0:n.src:void 0}):l({src:void 0,id:void 0,poster:void 0})}function w(e){if(e!==b){const t=Oe({attributes:{url:e}});if(void 0!==t)return void s(t);l({src:e,id:void 0,poster:void 0})}}function E(e){c.removeAllNotices(),c.createErrorNotice(e)}(0,ye.useEffect)((()=>{if(!p&&(0,Pe.isBlobURL)(b)){const e=(0,Pe.getBlobByURL)(b);e&&_({filesList:[e],onFileChange:e=>{let[{url:t}]=e;l({src:t})},onError:e=>{c.createErrorNotice(e)},allowedTypes:fv})}}),[]),(0,ye.useEffect)((()=>{m.current&&m.current.load()}),[v]);const C=nt()(a,{"is-transient":f}),x=(0,Ee.useBlockProps)({className:C});if(!b)return(0,ye.createElement)("div",x,(0,ye.createElement)(Ee.MediaPlaceholder,{icon:(0,ye.createElement)(Ee.BlockIcon,{icon:iv}),onSelect:k,onSelectURL:w,accept:"video/*",allowedTypes:fv,value:r,notices:o,onError:E}));const S=`video-block__poster-image-description-${u}`;return(0,ye.createElement)(ye.Fragment,null,(0,ye.createElement)(Ee.BlockControls,{group:"block"},(0,ye.createElement)(bv,{tracks:y,onChange:e=>{l({tracks:e})}})),(0,ye.createElement)(Ee.BlockControls,{group:"other"},(0,ye.createElement)(Ee.MediaReplaceFlow,{mediaId:p,mediaURL:b,allowedTypes:fv,accept:"video/*",onSelect:k,onSelectURL:w,onError:E})),(0,ye.createElement)(Ee.InspectorControls,null,(0,ye.createElement)(ke.PanelBody,{title:(0,we.__)("Video settings")},(0,ye.createElement)(cv,{setAttributes:l,attributes:r}),(0,ye.createElement)(Ee.MediaUploadCheck,null,(0,ye.createElement)(ke.BaseControl,{className:"editor-video-poster-control"},(0,ye.createElement)(ke.BaseControl.VisualLabel,null,(0,we.__)("Poster image")),(0,ye.createElement)(Ee.MediaUpload,{title:(0,we.__)("Select poster image"),onSelect:function(e){l({poster:e.url})},allowedTypes:_v,render:e=>{let{open:t}=e;return(0,ye.createElement)(ke.Button,{variant:"primary",onClick:t,ref:d,"aria-describedby":S},v?(0,we.__)("Replace"):(0,we.__)("Select"))}}),(0,ye.createElement)("p",{id:S,hidden:!0},v?(0,we.sprintf)((0,we.__)("The current poster image url is %s"),v):(0,we.__)("There is no poster image currently selected")),!!v&&(0,ye.createElement)(ke.Button,{onClick:function(){l({poster:void 0}),d.current.focus()},variant:"tertiary"},(0,we.__)("Remove")))))),(0,ye.createElement)("figure",x,(0,ye.createElement)(ke.Disabled,{isDisabled:!n},(0,ye.createElement)("video",{controls:h,poster:v,src:b,ref:m},(0,ye.createElement)(yv,{tracks:y}))),f&&(0,ye.createElement)(ke.Spinner,null),(!Ee.RichText.isEmpty(g)||n)&&(0,ye.createElement)(Ee.RichText,{tagName:"figcaption","aria-label":(0,we.__)("Video caption text"),placeholder:(0,we.__)("Add caption"),value:g,onChange:e=>l({caption:e}),inlineToolbar:!0,__unstableOnSplitAtEnd:()=>i((0,be.createBlock)("core/paragraph"))})))}));const wv={from:[{type:"files",isMatch:e=>1===e.length&&0===e[0].type.indexOf("video/"),transform(e){const t=e[0];return(0,be.createBlock)("core/video",{src:(0,Pe.createBlobURL)(t)})}},{type:"shortcode",tag:"video",attributes:{src:{type:"string",shortcode:e=>{let{named:{src:t,mp4:n,m4v:o,webm:r,ogv:a,flv:l}}=e;return t||n||o||r||a||l}},poster:{type:"string",shortcode:e=>{let{named:{poster:t}}=e;return t}},loop:{type:"string",shortcode:e=>{let{named:{loop:t}}=e;return t}},autoplay:{type:"string",shortcode:e=>{let{named:{autoplay:t}}=e;return t}},preload:{type:"string",shortcode:e=>{let{named:{preload:t}}=e;return t}}}}]};var Ev=wv;const Cv={apiVersion:2,name:"core/video",title:"Video",category:"media",description:"Embed a video from your media library or upload a new one.",keywords:["movie"],textdomain:"default",attributes:{autoplay:{type:"boolean",source:"attribute",selector:"video",attribute:"autoplay"},caption:{type:"string",source:"html",selector:"figcaption"},controls:{type:"boolean",source:"attribute",selector:"video",attribute:"controls",default:!0},id:{type:"number"},loop:{type:"boolean",source:"attribute",selector:"video",attribute:"loop"},muted:{type:"boolean",source:"attribute",selector:"video",attribute:"muted"},poster:{type:"string",source:"attribute",selector:"video",attribute:"poster"},preload:{type:"string",source:"attribute",selector:"video",attribute:"preload",default:"metadata"},src:{type:"string",source:"attribute",selector:"video",attribute:"src"},playsInline:{type:"boolean",source:"attribute",selector:"video",attribute:"playsinline"},tracks:{type:"array",items:{type:"object"},default:[]}},supports:{anchor:!0,align:!0},editorStyle:"wp-block-video-editor",style:"wp-block-video"},{name:xv}=Cv,Sv={icon:iv,example:{attributes:{src:"https://upload.wikimedia.org/wikipedia/commons/c/ca/Wood_thrush_in_Central_Park_switch_sides_%2816510%29.webm",caption:(0,we.__)("Wood thrush singing in Central Park, NYC.")}},transforms:Ev,edit:kv,save:function(e){let{attributes:t}=e;const{autoplay:n,caption:o,controls:r,loop:a,muted:l,poster:i,preload:s,src:c,playsInline:u,tracks:m}=t;return(0,ye.createElement)("figure",Ee.useBlockProps.save(),c&&(0,ye.createElement)("video",{autoPlay:n,controls:r,loop:a,muted:l,poster:i,preload:"metadata"!==s?s:void 0,src:c,playsInline:u},(0,ye.createElement)(yv,{tracks:m})),!Ee.RichText.isEmpty(o)&&(0,ye.createElement)(Ee.RichText.Content,{tagName:"figcaption",value:o}))}},Bv=e=>{if(!e)return;const{metadata:t,settings:n,name:o}=e;(0,be.registerBlockType)({name:o,...t},n)},Tv=()=>[M,f,b,h,w,Y,e,t,r,a,l,i,window.wp&&window.wp.oldEditor?s:null,c,u,m,d,p,g,v,y,_,k,C,x,S,z,I,P,q,$,X,ee,te,ne,oe,ie,se,ce,ue,me,ge,he,ve,B,T,N,re,le,ae,W,de,O,A,F,V,R,H,U,D,G,j,Z,K,Q,L,E,pe,J],Nv=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:Tv();e.forEach(Bv),(0,be.setDefaultBlockName)(fu),window.wp&&window.wp.oldEditor&&(0,be.setFreeformContentHandlerName)(en),(0,be.setUnregisteredTypeHandlerName)(us),(0,be.setGroupingBlockName)(cl)},zv=void 0}(),(window.wp=window.wp||{}).blockLibrary=o}();