Edit File by line

Deprecated: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in /home/sportsfever/public_html/filemanger/function.php on line 93

Warning: Undefined array key "page_file_edit_line" in /home/sportsfever/public_html/filemanger/edit_text_line.php on line 32
/home/sportsfe.../httpdocs/clone/wp-inclu.../js/dist
File: blocks.js
break;
[5500] Fix | Delete
[5501] Fix | Delete
case 'table':
[5502] Fix | Delete
if (!spansOnly) { txt = showdown.subParser('makeMarkdown.table')(node, globals) + '\n\n'; }
[5503] Fix | Delete
break;
[5504] Fix | Delete
[5505] Fix | Delete
//
[5506] Fix | Delete
// SPANS
[5507] Fix | Delete
//
[5508] Fix | Delete
case 'code':
[5509] Fix | Delete
txt = showdown.subParser('makeMarkdown.codeSpan')(node, globals);
[5510] Fix | Delete
break;
[5511] Fix | Delete
[5512] Fix | Delete
case 'em':
[5513] Fix | Delete
case 'i':
[5514] Fix | Delete
txt = showdown.subParser('makeMarkdown.emphasis')(node, globals);
[5515] Fix | Delete
break;
[5516] Fix | Delete
[5517] Fix | Delete
case 'strong':
[5518] Fix | Delete
case 'b':
[5519] Fix | Delete
txt = showdown.subParser('makeMarkdown.strong')(node, globals);
[5520] Fix | Delete
break;
[5521] Fix | Delete
[5522] Fix | Delete
case 'del':
[5523] Fix | Delete
txt = showdown.subParser('makeMarkdown.strikethrough')(node, globals);
[5524] Fix | Delete
break;
[5525] Fix | Delete
[5526] Fix | Delete
case 'a':
[5527] Fix | Delete
txt = showdown.subParser('makeMarkdown.links')(node, globals);
[5528] Fix | Delete
break;
[5529] Fix | Delete
[5530] Fix | Delete
case 'img':
[5531] Fix | Delete
txt = showdown.subParser('makeMarkdown.image')(node, globals);
[5532] Fix | Delete
break;
[5533] Fix | Delete
[5534] Fix | Delete
default:
[5535] Fix | Delete
txt = node.outerHTML + '\n\n';
[5536] Fix | Delete
}
[5537] Fix | Delete
[5538] Fix | Delete
// common normalization
[5539] Fix | Delete
// TODO eventually
[5540] Fix | Delete
[5541] Fix | Delete
return txt;
[5542] Fix | Delete
});
[5543] Fix | Delete
[5544] Fix | Delete
showdown.subParser('makeMarkdown.paragraph', function (node, globals) {
[5545] Fix | Delete
'use strict';
[5546] Fix | Delete
[5547] Fix | Delete
var txt = '';
[5548] Fix | Delete
if (node.hasChildNodes()) {
[5549] Fix | Delete
var children = node.childNodes,
[5550] Fix | Delete
childrenLength = children.length;
[5551] Fix | Delete
for (var i = 0; i < childrenLength; ++i) {
[5552] Fix | Delete
txt += showdown.subParser('makeMarkdown.node')(children[i], globals);
[5553] Fix | Delete
}
[5554] Fix | Delete
}
[5555] Fix | Delete
[5556] Fix | Delete
// some text normalization
[5557] Fix | Delete
txt = txt.trim();
[5558] Fix | Delete
[5559] Fix | Delete
return txt;
[5560] Fix | Delete
});
[5561] Fix | Delete
[5562] Fix | Delete
showdown.subParser('makeMarkdown.pre', function (node, globals) {
[5563] Fix | Delete
'use strict';
[5564] Fix | Delete
[5565] Fix | Delete
var num = node.getAttribute('prenum');
[5566] Fix | Delete
return '<pre>' + globals.preList[num] + '</pre>';
[5567] Fix | Delete
});
[5568] Fix | Delete
[5569] Fix | Delete
showdown.subParser('makeMarkdown.strikethrough', function (node, globals) {
[5570] Fix | Delete
'use strict';
[5571] Fix | Delete
[5572] Fix | Delete
var txt = '';
[5573] Fix | Delete
if (node.hasChildNodes()) {
[5574] Fix | Delete
txt += '~~';
[5575] Fix | Delete
var children = node.childNodes,
[5576] Fix | Delete
childrenLength = children.length;
[5577] Fix | Delete
for (var i = 0; i < childrenLength; ++i) {
[5578] Fix | Delete
txt += showdown.subParser('makeMarkdown.node')(children[i], globals);
[5579] Fix | Delete
}
[5580] Fix | Delete
txt += '~~';
[5581] Fix | Delete
}
[5582] Fix | Delete
return txt;
[5583] Fix | Delete
});
[5584] Fix | Delete
[5585] Fix | Delete
showdown.subParser('makeMarkdown.strong', function (node, globals) {
[5586] Fix | Delete
'use strict';
[5587] Fix | Delete
[5588] Fix | Delete
var txt = '';
[5589] Fix | Delete
if (node.hasChildNodes()) {
[5590] Fix | Delete
txt += '**';
[5591] Fix | Delete
var children = node.childNodes,
[5592] Fix | Delete
childrenLength = children.length;
[5593] Fix | Delete
for (var i = 0; i < childrenLength; ++i) {
[5594] Fix | Delete
txt += showdown.subParser('makeMarkdown.node')(children[i], globals);
[5595] Fix | Delete
}
[5596] Fix | Delete
txt += '**';
[5597] Fix | Delete
}
[5598] Fix | Delete
return txt;
[5599] Fix | Delete
});
[5600] Fix | Delete
[5601] Fix | Delete
showdown.subParser('makeMarkdown.table', function (node, globals) {
[5602] Fix | Delete
'use strict';
[5603] Fix | Delete
[5604] Fix | Delete
var txt = '',
[5605] Fix | Delete
tableArray = [[], []],
[5606] Fix | Delete
headings = node.querySelectorAll('thead>tr>th'),
[5607] Fix | Delete
rows = node.querySelectorAll('tbody>tr'),
[5608] Fix | Delete
i, ii;
[5609] Fix | Delete
for (i = 0; i < headings.length; ++i) {
[5610] Fix | Delete
var headContent = showdown.subParser('makeMarkdown.tableCell')(headings[i], globals),
[5611] Fix | Delete
allign = '---';
[5612] Fix | Delete
[5613] Fix | Delete
if (headings[i].hasAttribute('style')) {
[5614] Fix | Delete
var style = headings[i].getAttribute('style').toLowerCase().replace(/\s/g, '');
[5615] Fix | Delete
switch (style) {
[5616] Fix | Delete
case 'text-align:left;':
[5617] Fix | Delete
allign = ':---';
[5618] Fix | Delete
break;
[5619] Fix | Delete
case 'text-align:right;':
[5620] Fix | Delete
allign = '---:';
[5621] Fix | Delete
break;
[5622] Fix | Delete
case 'text-align:center;':
[5623] Fix | Delete
allign = ':---:';
[5624] Fix | Delete
break;
[5625] Fix | Delete
}
[5626] Fix | Delete
}
[5627] Fix | Delete
tableArray[0][i] = headContent.trim();
[5628] Fix | Delete
tableArray[1][i] = allign;
[5629] Fix | Delete
}
[5630] Fix | Delete
[5631] Fix | Delete
for (i = 0; i < rows.length; ++i) {
[5632] Fix | Delete
var r = tableArray.push([]) - 1,
[5633] Fix | Delete
cols = rows[i].getElementsByTagName('td');
[5634] Fix | Delete
[5635] Fix | Delete
for (ii = 0; ii < headings.length; ++ii) {
[5636] Fix | Delete
var cellContent = ' ';
[5637] Fix | Delete
if (typeof cols[ii] !== 'undefined') {
[5638] Fix | Delete
cellContent = showdown.subParser('makeMarkdown.tableCell')(cols[ii], globals);
[5639] Fix | Delete
}
[5640] Fix | Delete
tableArray[r].push(cellContent);
[5641] Fix | Delete
}
[5642] Fix | Delete
}
[5643] Fix | Delete
[5644] Fix | Delete
var cellSpacesCount = 3;
[5645] Fix | Delete
for (i = 0; i < tableArray.length; ++i) {
[5646] Fix | Delete
for (ii = 0; ii < tableArray[i].length; ++ii) {
[5647] Fix | Delete
var strLen = tableArray[i][ii].length;
[5648] Fix | Delete
if (strLen > cellSpacesCount) {
[5649] Fix | Delete
cellSpacesCount = strLen;
[5650] Fix | Delete
}
[5651] Fix | Delete
}
[5652] Fix | Delete
}
[5653] Fix | Delete
[5654] Fix | Delete
for (i = 0; i < tableArray.length; ++i) {
[5655] Fix | Delete
for (ii = 0; ii < tableArray[i].length; ++ii) {
[5656] Fix | Delete
if (i === 1) {
[5657] Fix | Delete
if (tableArray[i][ii].slice(-1) === ':') {
[5658] Fix | Delete
tableArray[i][ii] = showdown.helper.padEnd(tableArray[i][ii].slice(-1), cellSpacesCount - 1, '-') + ':';
[5659] Fix | Delete
} else {
[5660] Fix | Delete
tableArray[i][ii] = showdown.helper.padEnd(tableArray[i][ii], cellSpacesCount, '-');
[5661] Fix | Delete
}
[5662] Fix | Delete
} else {
[5663] Fix | Delete
tableArray[i][ii] = showdown.helper.padEnd(tableArray[i][ii], cellSpacesCount);
[5664] Fix | Delete
}
[5665] Fix | Delete
}
[5666] Fix | Delete
txt += '| ' + tableArray[i].join(' | ') + ' |\n';
[5667] Fix | Delete
}
[5668] Fix | Delete
[5669] Fix | Delete
return txt.trim();
[5670] Fix | Delete
});
[5671] Fix | Delete
[5672] Fix | Delete
showdown.subParser('makeMarkdown.tableCell', function (node, globals) {
[5673] Fix | Delete
'use strict';
[5674] Fix | Delete
[5675] Fix | Delete
var txt = '';
[5676] Fix | Delete
if (!node.hasChildNodes()) {
[5677] Fix | Delete
return '';
[5678] Fix | Delete
}
[5679] Fix | Delete
var children = node.childNodes,
[5680] Fix | Delete
childrenLength = children.length;
[5681] Fix | Delete
[5682] Fix | Delete
for (var i = 0; i < childrenLength; ++i) {
[5683] Fix | Delete
txt += showdown.subParser('makeMarkdown.node')(children[i], globals, true);
[5684] Fix | Delete
}
[5685] Fix | Delete
return txt.trim();
[5686] Fix | Delete
});
[5687] Fix | Delete
[5688] Fix | Delete
showdown.subParser('makeMarkdown.txt', function (node) {
[5689] Fix | Delete
'use strict';
[5690] Fix | Delete
[5691] Fix | Delete
var txt = node.nodeValue;
[5692] Fix | Delete
[5693] Fix | Delete
// multiple spaces are collapsed
[5694] Fix | Delete
txt = txt.replace(/ +/g, ' ');
[5695] Fix | Delete
[5696] Fix | Delete
// replace the custom ¨NBSP; with a space
[5697] Fix | Delete
txt = txt.replace(/¨NBSP;/g, ' ');
[5698] Fix | Delete
[5699] Fix | Delete
// ", <, > and & should replace escaped html entities
[5700] Fix | Delete
txt = showdown.helper.unescapeHTMLEntities(txt);
[5701] Fix | Delete
[5702] Fix | Delete
// escape markdown magic characters
[5703] Fix | Delete
// emphasis, strong and strikethrough - can appear everywhere
[5704] Fix | Delete
// we also escape pipe (|) because of tables
[5705] Fix | Delete
// and escape ` because of code blocks and spans
[5706] Fix | Delete
txt = txt.replace(/([*_~|`])/g, '\\$1');
[5707] Fix | Delete
[5708] Fix | Delete
// escape > because of blockquotes
[5709] Fix | Delete
txt = txt.replace(/^(\s*)>/g, '\\$1>');
[5710] Fix | Delete
[5711] Fix | Delete
// hash character, only troublesome at the beginning of a line because of headers
[5712] Fix | Delete
txt = txt.replace(/^#/gm, '\\#');
[5713] Fix | Delete
[5714] Fix | Delete
// horizontal rules
[5715] Fix | Delete
txt = txt.replace(/^(\s*)([-=]{3,})(\s*)$/, '$1\\$2$3');
[5716] Fix | Delete
[5717] Fix | Delete
// dot, because of ordered lists, only troublesome at the beginning of a line when preceded by an integer
[5718] Fix | Delete
txt = txt.replace(/^( {0,3}\d+)\./gm, '$1\\.');
[5719] Fix | Delete
[5720] Fix | Delete
// +, * and -, at the beginning of a line becomes a list, so we need to escape them also (asterisk was already escaped)
[5721] Fix | Delete
txt = txt.replace(/^( {0,3})([+-])/gm, '$1\\$2');
[5722] Fix | Delete
[5723] Fix | Delete
// images and links, ] followed by ( is problematic, so we escape it
[5724] Fix | Delete
txt = txt.replace(/]([\s]*)\(/g, '\\]$1\\(');
[5725] Fix | Delete
[5726] Fix | Delete
// reference URIs must also be escaped
[5727] Fix | Delete
txt = txt.replace(/^ {0,3}\[([\S \t]*?)]:/gm, '\\[$1]:');
[5728] Fix | Delete
[5729] Fix | Delete
return txt;
[5730] Fix | Delete
});
[5731] Fix | Delete
[5732] Fix | Delete
var root = this;
[5733] Fix | Delete
[5734] Fix | Delete
// AMD Loader
[5735] Fix | Delete
if (true) {
[5736] Fix | Delete
!(__WEBPACK_AMD_DEFINE_RESULT__ = (function () {
[5737] Fix | Delete
'use strict';
[5738] Fix | Delete
return showdown;
[5739] Fix | Delete
}).call(exports, __webpack_require__, exports, module),
[5740] Fix | Delete
__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));
[5741] Fix | Delete
[5742] Fix | Delete
// CommonJS/nodeJS Loader
[5743] Fix | Delete
} else {}
[5744] Fix | Delete
}).call(this);
[5745] Fix | Delete
[5746] Fix | Delete
[5747] Fix | Delete
[5748] Fix | Delete
[5749] Fix | Delete
/***/ })
[5750] Fix | Delete
[5751] Fix | Delete
/******/ });
[5752] Fix | Delete
/************************************************************************/
[5753] Fix | Delete
/******/ // The module cache
[5754] Fix | Delete
/******/ var __webpack_module_cache__ = {};
[5755] Fix | Delete
/******/
[5756] Fix | Delete
/******/ // The require function
[5757] Fix | Delete
/******/ function __webpack_require__(moduleId) {
[5758] Fix | Delete
/******/ // Check if module is in cache
[5759] Fix | Delete
/******/ var cachedModule = __webpack_module_cache__[moduleId];
[5760] Fix | Delete
/******/ if (cachedModule !== undefined) {
[5761] Fix | Delete
/******/ return cachedModule.exports;
[5762] Fix | Delete
/******/ }
[5763] Fix | Delete
/******/ // Create a new module (and put it into the cache)
[5764] Fix | Delete
/******/ var module = __webpack_module_cache__[moduleId] = {
[5765] Fix | Delete
/******/ // no module.id needed
[5766] Fix | Delete
/******/ // no module.loaded needed
[5767] Fix | Delete
/******/ exports: {}
[5768] Fix | Delete
/******/ };
[5769] Fix | Delete
/******/
[5770] Fix | Delete
/******/ // Execute the module function
[5771] Fix | Delete
/******/ __webpack_modules__[moduleId].call(module.exports, module, module.exports, __webpack_require__);
[5772] Fix | Delete
/******/
[5773] Fix | Delete
/******/ // Return the exports of the module
[5774] Fix | Delete
/******/ return module.exports;
[5775] Fix | Delete
/******/ }
[5776] Fix | Delete
/******/
[5777] Fix | Delete
/************************************************************************/
[5778] Fix | Delete
/******/ /* webpack/runtime/compat get default export */
[5779] Fix | Delete
/******/ (() => {
[5780] Fix | Delete
/******/ // getDefaultExport function for compatibility with non-harmony modules
[5781] Fix | Delete
/******/ __webpack_require__.n = (module) => {
[5782] Fix | Delete
/******/ var getter = module && module.__esModule ?
[5783] Fix | Delete
/******/ () => (module['default']) :
[5784] Fix | Delete
/******/ () => (module);
[5785] Fix | Delete
/******/ __webpack_require__.d(getter, { a: getter });
[5786] Fix | Delete
/******/ return getter;
[5787] Fix | Delete
/******/ };
[5788] Fix | Delete
/******/ })();
[5789] Fix | Delete
/******/
[5790] Fix | Delete
/******/ /* webpack/runtime/define property getters */
[5791] Fix | Delete
/******/ (() => {
[5792] Fix | Delete
/******/ // define getter functions for harmony exports
[5793] Fix | Delete
/******/ __webpack_require__.d = (exports, definition) => {
[5794] Fix | Delete
/******/ for(var key in definition) {
[5795] Fix | Delete
/******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
[5796] Fix | Delete
/******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
[5797] Fix | Delete
/******/ }
[5798] Fix | Delete
/******/ }
[5799] Fix | Delete
/******/ };
[5800] Fix | Delete
/******/ })();
[5801] Fix | Delete
/******/
[5802] Fix | Delete
/******/ /* webpack/runtime/hasOwnProperty shorthand */
[5803] Fix | Delete
/******/ (() => {
[5804] Fix | Delete
/******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
[5805] Fix | Delete
/******/ })();
[5806] Fix | Delete
/******/
[5807] Fix | Delete
/******/ /* webpack/runtime/make namespace object */
[5808] Fix | Delete
/******/ (() => {
[5809] Fix | Delete
/******/ // define __esModule on exports
[5810] Fix | Delete
/******/ __webpack_require__.r = (exports) => {
[5811] Fix | Delete
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
[5812] Fix | Delete
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
[5813] Fix | Delete
/******/ }
[5814] Fix | Delete
/******/ Object.defineProperty(exports, '__esModule', { value: true });
[5815] Fix | Delete
/******/ };
[5816] Fix | Delete
/******/ })();
[5817] Fix | Delete
/******/
[5818] Fix | Delete
/************************************************************************/
[5819] Fix | Delete
var __webpack_exports__ = {};
[5820] Fix | Delete
// This entry need to be wrapped in an IIFE because it need to be in strict mode.
[5821] Fix | Delete
(() => {
[5822] Fix | Delete
"use strict";
[5823] Fix | Delete
// ESM COMPAT FLAG
[5824] Fix | Delete
__webpack_require__.r(__webpack_exports__);
[5825] Fix | Delete
[5826] Fix | Delete
// EXPORTS
[5827] Fix | Delete
__webpack_require__.d(__webpack_exports__, {
[5828] Fix | Delete
__EXPERIMENTAL_ELEMENTS: () => (/* reexport */ __EXPERIMENTAL_ELEMENTS),
[5829] Fix | Delete
__EXPERIMENTAL_PATHS_WITH_OVERRIDE: () => (/* reexport */ __EXPERIMENTAL_PATHS_WITH_OVERRIDE),
[5830] Fix | Delete
__EXPERIMENTAL_STYLE_PROPERTY: () => (/* reexport */ __EXPERIMENTAL_STYLE_PROPERTY),
[5831] Fix | Delete
__experimentalCloneSanitizedBlock: () => (/* reexport */ __experimentalCloneSanitizedBlock),
[5832] Fix | Delete
__experimentalGetAccessibleBlockLabel: () => (/* reexport */ getAccessibleBlockLabel),
[5833] Fix | Delete
__experimentalGetBlockAttributesNamesByRole: () => (/* reexport */ __experimentalGetBlockAttributesNamesByRole),
[5834] Fix | Delete
__experimentalGetBlockLabel: () => (/* reexport */ getBlockLabel),
[5835] Fix | Delete
__experimentalSanitizeBlockAttributes: () => (/* reexport */ __experimentalSanitizeBlockAttributes),
[5836] Fix | Delete
__unstableGetBlockProps: () => (/* reexport */ getBlockProps),
[5837] Fix | Delete
__unstableGetInnerBlocksProps: () => (/* reexport */ getInnerBlocksProps),
[5838] Fix | Delete
__unstableSerializeAndClean: () => (/* reexport */ __unstableSerializeAndClean),
[5839] Fix | Delete
children: () => (/* reexport */ children),
[5840] Fix | Delete
cloneBlock: () => (/* reexport */ cloneBlock),
[5841] Fix | Delete
createBlock: () => (/* reexport */ createBlock),
[5842] Fix | Delete
createBlocksFromInnerBlocksTemplate: () => (/* reexport */ createBlocksFromInnerBlocksTemplate),
[5843] Fix | Delete
doBlocksMatchTemplate: () => (/* reexport */ doBlocksMatchTemplate),
[5844] Fix | Delete
findTransform: () => (/* reexport */ findTransform),
[5845] Fix | Delete
getBlockAttributes: () => (/* reexport */ getBlockAttributes),
[5846] Fix | Delete
getBlockContent: () => (/* reexport */ getBlockInnerHTML),
[5847] Fix | Delete
getBlockDefaultClassName: () => (/* reexport */ getBlockDefaultClassName),
[5848] Fix | Delete
getBlockFromExample: () => (/* reexport */ getBlockFromExample),
[5849] Fix | Delete
getBlockMenuDefaultClassName: () => (/* reexport */ getBlockMenuDefaultClassName),
[5850] Fix | Delete
getBlockSupport: () => (/* reexport */ getBlockSupport),
[5851] Fix | Delete
getBlockTransforms: () => (/* reexport */ getBlockTransforms),
[5852] Fix | Delete
getBlockType: () => (/* reexport */ getBlockType),
[5853] Fix | Delete
getBlockTypes: () => (/* reexport */ getBlockTypes),
[5854] Fix | Delete
getBlockVariations: () => (/* reexport */ getBlockVariations),
[5855] Fix | Delete
getCategories: () => (/* reexport */ categories_getCategories),
[5856] Fix | Delete
getChildBlockNames: () => (/* reexport */ getChildBlockNames),
[5857] Fix | Delete
getDefaultBlockName: () => (/* reexport */ getDefaultBlockName),
[5858] Fix | Delete
getFreeformContentHandlerName: () => (/* reexport */ getFreeformContentHandlerName),
[5859] Fix | Delete
getGroupingBlockName: () => (/* reexport */ getGroupingBlockName),
[5860] Fix | Delete
getPhrasingContentSchema: () => (/* reexport */ deprecatedGetPhrasingContentSchema),
[5861] Fix | Delete
getPossibleBlockTransformations: () => (/* reexport */ getPossibleBlockTransformations),
[5862] Fix | Delete
getSaveContent: () => (/* reexport */ getSaveContent),
[5863] Fix | Delete
getSaveElement: () => (/* reexport */ getSaveElement),
[5864] Fix | Delete
getUnregisteredTypeHandlerName: () => (/* reexport */ getUnregisteredTypeHandlerName),
[5865] Fix | Delete
hasBlockSupport: () => (/* reexport */ hasBlockSupport),
[5866] Fix | Delete
hasChildBlocks: () => (/* reexport */ hasChildBlocks),
[5867] Fix | Delete
hasChildBlocksWithInserterSupport: () => (/* reexport */ hasChildBlocksWithInserterSupport),
[5868] Fix | Delete
isReusableBlock: () => (/* reexport */ isReusableBlock),
[5869] Fix | Delete
isTemplatePart: () => (/* reexport */ isTemplatePart),
[5870] Fix | Delete
isUnmodifiedBlock: () => (/* reexport */ isUnmodifiedBlock),
[5871] Fix | Delete
isUnmodifiedDefaultBlock: () => (/* reexport */ isUnmodifiedDefaultBlock),
[5872] Fix | Delete
isValidBlockContent: () => (/* reexport */ isValidBlockContent),
[5873] Fix | Delete
isValidIcon: () => (/* reexport */ isValidIcon),
[5874] Fix | Delete
node: () => (/* reexport */ node),
[5875] Fix | Delete
normalizeIconObject: () => (/* reexport */ normalizeIconObject),
[5876] Fix | Delete
parse: () => (/* reexport */ parser_parse),
[5877] Fix | Delete
parseWithAttributeSchema: () => (/* reexport */ parseWithAttributeSchema),
[5878] Fix | Delete
pasteHandler: () => (/* reexport */ pasteHandler),
[5879] Fix | Delete
rawHandler: () => (/* reexport */ rawHandler),
[5880] Fix | Delete
registerBlockCollection: () => (/* reexport */ registerBlockCollection),
[5881] Fix | Delete
registerBlockStyle: () => (/* reexport */ registerBlockStyle),
[5882] Fix | Delete
registerBlockType: () => (/* reexport */ registerBlockType),
[5883] Fix | Delete
registerBlockVariation: () => (/* reexport */ registerBlockVariation),
[5884] Fix | Delete
serialize: () => (/* reexport */ serialize),
[5885] Fix | Delete
serializeRawBlock: () => (/* reexport */ serializeRawBlock),
[5886] Fix | Delete
setCategories: () => (/* reexport */ categories_setCategories),
[5887] Fix | Delete
setDefaultBlockName: () => (/* reexport */ setDefaultBlockName),
[5888] Fix | Delete
setFreeformContentHandlerName: () => (/* reexport */ setFreeformContentHandlerName),
[5889] Fix | Delete
setGroupingBlockName: () => (/* reexport */ setGroupingBlockName),
[5890] Fix | Delete
setUnregisteredTypeHandlerName: () => (/* reexport */ setUnregisteredTypeHandlerName),
[5891] Fix | Delete
store: () => (/* reexport */ store),
[5892] Fix | Delete
switchToBlockType: () => (/* reexport */ switchToBlockType),
[5893] Fix | Delete
synchronizeBlocksWithTemplate: () => (/* reexport */ synchronizeBlocksWithTemplate),
[5894] Fix | Delete
unregisterBlockStyle: () => (/* reexport */ unregisterBlockStyle),
[5895] Fix | Delete
unregisterBlockType: () => (/* reexport */ unregisterBlockType),
[5896] Fix | Delete
unregisterBlockVariation: () => (/* reexport */ unregisterBlockVariation),
[5897] Fix | Delete
unstable__bootstrapServerSideBlockDefinitions: () => (/* reexport */ unstable__bootstrapServerSideBlockDefinitions),
[5898] Fix | Delete
updateCategory: () => (/* reexport */ categories_updateCategory),
[5899] Fix | Delete
validateBlock: () => (/* reexport */ validateBlock),
[5900] Fix | Delete
withBlockContentContext: () => (/* reexport */ withBlockContentContext)
[5901] Fix | Delete
});
[5902] Fix | Delete
[5903] Fix | Delete
// NAMESPACE OBJECT: ./node_modules/@wordpress/blocks/build-module/store/selectors.js
[5904] Fix | Delete
var selectors_namespaceObject = {};
[5905] Fix | Delete
__webpack_require__.r(selectors_namespaceObject);
[5906] Fix | Delete
__webpack_require__.d(selectors_namespaceObject, {
[5907] Fix | Delete
__experimentalHasContentRoleAttribute: () => (__experimentalHasContentRoleAttribute),
[5908] Fix | Delete
getActiveBlockVariation: () => (getActiveBlockVariation),
[5909] Fix | Delete
getBlockStyles: () => (getBlockStyles),
[5910] Fix | Delete
getBlockSupport: () => (selectors_getBlockSupport),
[5911] Fix | Delete
getBlockType: () => (selectors_getBlockType),
[5912] Fix | Delete
getBlockTypes: () => (selectors_getBlockTypes),
[5913] Fix | Delete
getBlockVariations: () => (selectors_getBlockVariations),
[5914] Fix | Delete
getCategories: () => (getCategories),
[5915] Fix | Delete
getChildBlockNames: () => (selectors_getChildBlockNames),
[5916] Fix | Delete
getCollections: () => (getCollections),
[5917] Fix | Delete
getDefaultBlockName: () => (selectors_getDefaultBlockName),
[5918] Fix | Delete
getDefaultBlockVariation: () => (getDefaultBlockVariation),
[5919] Fix | Delete
getFreeformFallbackBlockName: () => (getFreeformFallbackBlockName),
[5920] Fix | Delete
getGroupingBlockName: () => (selectors_getGroupingBlockName),
[5921] Fix | Delete
getUnregisteredFallbackBlockName: () => (getUnregisteredFallbackBlockName),
[5922] Fix | Delete
hasBlockSupport: () => (selectors_hasBlockSupport),
[5923] Fix | Delete
hasChildBlocks: () => (selectors_hasChildBlocks),
[5924] Fix | Delete
hasChildBlocksWithInserterSupport: () => (selectors_hasChildBlocksWithInserterSupport),
[5925] Fix | Delete
isMatchingSearchTerm: () => (isMatchingSearchTerm)
[5926] Fix | Delete
});
[5927] Fix | Delete
[5928] Fix | Delete
// NAMESPACE OBJECT: ./node_modules/@wordpress/blocks/build-module/store/private-selectors.js
[5929] Fix | Delete
var private_selectors_namespaceObject = {};
[5930] Fix | Delete
__webpack_require__.r(private_selectors_namespaceObject);
[5931] Fix | Delete
__webpack_require__.d(private_selectors_namespaceObject, {
[5932] Fix | Delete
getAllBlockBindingsSources: () => (getAllBlockBindingsSources),
[5933] Fix | Delete
getBlockBindingsSource: () => (getBlockBindingsSource),
[5934] Fix | Delete
getBootstrappedBlockType: () => (getBootstrappedBlockType),
[5935] Fix | Delete
getSupportedStyles: () => (getSupportedStyles),
[5936] Fix | Delete
getUnprocessedBlockTypes: () => (getUnprocessedBlockTypes)
[5937] Fix | Delete
});
[5938] Fix | Delete
[5939] Fix | Delete
// NAMESPACE OBJECT: ./node_modules/@wordpress/blocks/build-module/store/actions.js
[5940] Fix | Delete
var actions_namespaceObject = {};
[5941] Fix | Delete
__webpack_require__.r(actions_namespaceObject);
[5942] Fix | Delete
__webpack_require__.d(actions_namespaceObject, {
[5943] Fix | Delete
__experimentalReapplyBlockFilters: () => (__experimentalReapplyBlockFilters),
[5944] Fix | Delete
addBlockCollection: () => (addBlockCollection),
[5945] Fix | Delete
addBlockStyles: () => (addBlockStyles),
[5946] Fix | Delete
addBlockTypes: () => (addBlockTypes),
[5947] Fix | Delete
addBlockVariations: () => (addBlockVariations),
[5948] Fix | Delete
reapplyBlockTypeFilters: () => (reapplyBlockTypeFilters),
[5949] Fix | Delete
removeBlockCollection: () => (removeBlockCollection),
[5950] Fix | Delete
removeBlockStyles: () => (removeBlockStyles),
[5951] Fix | Delete
removeBlockTypes: () => (removeBlockTypes),
[5952] Fix | Delete
removeBlockVariations: () => (removeBlockVariations),
[5953] Fix | Delete
setCategories: () => (setCategories),
[5954] Fix | Delete
setDefaultBlockName: () => (actions_setDefaultBlockName),
[5955] Fix | Delete
setFreeformFallbackBlockName: () => (setFreeformFallbackBlockName),
[5956] Fix | Delete
setGroupingBlockName: () => (actions_setGroupingBlockName),
[5957] Fix | Delete
setUnregisteredFallbackBlockName: () => (setUnregisteredFallbackBlockName),
[5958] Fix | Delete
updateCategory: () => (updateCategory)
[5959] Fix | Delete
});
[5960] Fix | Delete
[5961] Fix | Delete
// NAMESPACE OBJECT: ./node_modules/@wordpress/blocks/build-module/store/private-actions.js
[5962] Fix | Delete
var private_actions_namespaceObject = {};
[5963] Fix | Delete
__webpack_require__.r(private_actions_namespaceObject);
[5964] Fix | Delete
__webpack_require__.d(private_actions_namespaceObject, {
[5965] Fix | Delete
addBootstrappedBlockType: () => (addBootstrappedBlockType),
[5966] Fix | Delete
addUnprocessedBlockType: () => (addUnprocessedBlockType),
[5967] Fix | Delete
registerBlockBindingsSource: () => (registerBlockBindingsSource)
[5968] Fix | Delete
});
[5969] Fix | Delete
[5970] Fix | Delete
;// CONCATENATED MODULE: external ["wp","data"]
[5971] Fix | Delete
const external_wp_data_namespaceObject = window["wp"]["data"];
[5972] Fix | Delete
;// CONCATENATED MODULE: ./node_modules/tslib/tslib.es6.mjs
[5973] Fix | Delete
/******************************************************************************
[5974] Fix | Delete
Copyright (c) Microsoft Corporation.
[5975] Fix | Delete
[5976] Fix | Delete
Permission to use, copy, modify, and/or distribute this software for any
[5977] Fix | Delete
purpose with or without fee is hereby granted.
[5978] Fix | Delete
[5979] Fix | Delete
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
[5980] Fix | Delete
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
[5981] Fix | Delete
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
[5982] Fix | Delete
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
[5983] Fix | Delete
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
[5984] Fix | Delete
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
[5985] Fix | Delete
PERFORMANCE OF THIS SOFTWARE.
[5986] Fix | Delete
***************************************************************************** */
[5987] Fix | Delete
/* global Reflect, Promise, SuppressedError, Symbol */
[5988] Fix | Delete
[5989] Fix | Delete
var extendStatics = function(d, b) {
[5990] Fix | Delete
extendStatics = Object.setPrototypeOf ||
[5991] Fix | Delete
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
[5992] Fix | Delete
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
[5993] Fix | Delete
return extendStatics(d, b);
[5994] Fix | Delete
};
[5995] Fix | Delete
[5996] Fix | Delete
function __extends(d, b) {
[5997] Fix | Delete
if (typeof b !== "function" && b !== null)
[5998] Fix | Delete
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
[5999] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function