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: block-editor.js
typography: {
[17500] Fix | Delete
fontFamilies: {
[17501] Fix | Delete
custom: customFontFamilies,
[17502] Fix | Delete
default: defaultFontFamilies,
[17503] Fix | Delete
theme: themeFontFamilies
[17504] Fix | Delete
},
[17505] Fix | Delete
fontSizes: {
[17506] Fix | Delete
custom: customFontSizes,
[17507] Fix | Delete
default: defaultFontSizes,
[17508] Fix | Delete
theme: themeFontSizes
[17509] Fix | Delete
},
[17510] Fix | Delete
customFontSize,
[17511] Fix | Delete
defaultFontSizes: defaultFontSizesEnabled,
[17512] Fix | Delete
fontStyle,
[17513] Fix | Delete
fontWeight,
[17514] Fix | Delete
lineHeight,
[17515] Fix | Delete
textAlign,
[17516] Fix | Delete
textColumns,
[17517] Fix | Delete
textDecoration,
[17518] Fix | Delete
textTransform,
[17519] Fix | Delete
letterSpacing,
[17520] Fix | Delete
writingMode
[17521] Fix | Delete
},
[17522] Fix | Delete
spacing: {
[17523] Fix | Delete
spacingSizes: {
[17524] Fix | Delete
custom: userSpacingSizes,
[17525] Fix | Delete
default: defaultSpacingSizes,
[17526] Fix | Delete
theme: themeSpacingSizes
[17527] Fix | Delete
},
[17528] Fix | Delete
customSpacingSize,
[17529] Fix | Delete
defaultSpacingSizes: defaultSpacingSizesEnabled,
[17530] Fix | Delete
padding,
[17531] Fix | Delete
margin,
[17532] Fix | Delete
blockGap,
[17533] Fix | Delete
units
[17534] Fix | Delete
},
[17535] Fix | Delete
border: {
[17536] Fix | Delete
color: borderColor,
[17537] Fix | Delete
radius: borderRadius,
[17538] Fix | Delete
style: borderStyle,
[17539] Fix | Delete
width: borderWidth
[17540] Fix | Delete
},
[17541] Fix | Delete
dimensions: {
[17542] Fix | Delete
aspectRatio,
[17543] Fix | Delete
minHeight
[17544] Fix | Delete
},
[17545] Fix | Delete
layout,
[17546] Fix | Delete
parentLayout,
[17547] Fix | Delete
shadow
[17548] Fix | Delete
};
[17549] Fix | Delete
}, [backgroundImage, backgroundSize, customFontFamilies, defaultFontFamilies, themeFontFamilies, defaultFontSizesEnabled, customFontSizes, defaultFontSizes, themeFontSizes, customFontSize, fontStyle, fontWeight, lineHeight, textAlign, textColumns, textDecoration, textTransform, letterSpacing, writingMode, padding, margin, blockGap, defaultSpacingSizesEnabled, customSpacingSize, userSpacingSizes, defaultSpacingSizes, themeSpacingSizes, units, aspectRatio, minHeight, layout, parentLayout, borderColor, borderRadius, borderStyle, borderWidth, customColorsEnabled, customColors, customDuotone, themeColors, defaultColors, defaultPalette, defaultDuotone, userDuotonePalette, themeDuotonePalette, defaultDuotonePalette, userGradientPalette, themeGradientPalette, defaultGradientPalette, defaultGradients, areCustomGradientsEnabled, isBackgroundEnabled, isLinkEnabled, isTextEnabled, isHeadingEnabled, isButtonEnabled, shadow]);
[17550] Fix | Delete
return useSettingsForBlockElement(rawSettings, name);
[17551] Fix | Delete
}
[17552] Fix | Delete
function createBlockEditFilter(features) {
[17553] Fix | Delete
// We don't want block controls to re-render when typing inside a block.
[17554] Fix | Delete
// `memo` will prevent re-renders unless props change, so only pass the
[17555] Fix | Delete
// needed props and not the whole attributes object.
[17556] Fix | Delete
features = features.map(settings => {
[17557] Fix | Delete
return {
[17558] Fix | Delete
...settings,
[17559] Fix | Delete
Edit: (0,external_wp_element_namespaceObject.memo)(settings.edit)
[17560] Fix | Delete
};
[17561] Fix | Delete
});
[17562] Fix | Delete
const withBlockEditHooks = (0,external_wp_compose_namespaceObject.createHigherOrderComponent)(OriginalBlockEdit => props => {
[17563] Fix | Delete
const context = useBlockEditContext();
[17564] Fix | Delete
// CAUTION: code added before this line will be executed for all
[17565] Fix | Delete
// blocks, not just those that support the feature! Code added
[17566] Fix | Delete
// above this line should be carefully evaluated for its impact on
[17567] Fix | Delete
// performance.
[17568] Fix | Delete
return [...features.map((feature, i) => {
[17569] Fix | Delete
const {
[17570] Fix | Delete
Edit,
[17571] Fix | Delete
hasSupport,
[17572] Fix | Delete
attributeKeys = [],
[17573] Fix | Delete
shareWithChildBlocks
[17574] Fix | Delete
} = feature;
[17575] Fix | Delete
const shouldDisplayControls = context[mayDisplayControlsKey] || context[mayDisplayParentControlsKey] && shareWithChildBlocks;
[17576] Fix | Delete
if (!shouldDisplayControls || !hasSupport(props.name)) {
[17577] Fix | Delete
return null;
[17578] Fix | Delete
}
[17579] Fix | Delete
const neededProps = {};
[17580] Fix | Delete
for (const key of attributeKeys) {
[17581] Fix | Delete
if (props.attributes[key]) {
[17582] Fix | Delete
neededProps[key] = props.attributes[key];
[17583] Fix | Delete
}
[17584] Fix | Delete
}
[17585] Fix | Delete
return /*#__PURE__*/(0,external_ReactJSXRuntime_namespaceObject.jsx)(Edit
[17586] Fix | Delete
// We can use the index because the array length
[17587] Fix | Delete
// is fixed per page load right now.
[17588] Fix | Delete
, {
[17589] Fix | Delete
name: props.name,
[17590] Fix | Delete
isSelected: props.isSelected,
[17591] Fix | Delete
clientId: props.clientId,
[17592] Fix | Delete
setAttributes: props.setAttributes,
[17593] Fix | Delete
__unstableParentLayout: props.__unstableParentLayout
[17594] Fix | Delete
// This component is pure, so only pass needed
[17595] Fix | Delete
// props!!!
[17596] Fix | Delete
,
[17597] Fix | Delete
...neededProps
[17598] Fix | Delete
}, i);
[17599] Fix | Delete
}), /*#__PURE__*/(0,external_ReactJSXRuntime_namespaceObject.jsx)(OriginalBlockEdit, {
[17600] Fix | Delete
...props
[17601] Fix | Delete
}, "edit")];
[17602] Fix | Delete
}, 'withBlockEditHooks');
[17603] Fix | Delete
(0,external_wp_hooks_namespaceObject.addFilter)('editor.BlockEdit', 'core/editor/hooks', withBlockEditHooks);
[17604] Fix | Delete
}
[17605] Fix | Delete
function BlockProps({
[17606] Fix | Delete
index,
[17607] Fix | Delete
useBlockProps,
[17608] Fix | Delete
setAllWrapperProps,
[17609] Fix | Delete
...props
[17610] Fix | Delete
}) {
[17611] Fix | Delete
const wrapperProps = useBlockProps(props);
[17612] Fix | Delete
const setWrapperProps = next => setAllWrapperProps(prev => {
[17613] Fix | Delete
const nextAll = [...prev];
[17614] Fix | Delete
nextAll[index] = next;
[17615] Fix | Delete
return nextAll;
[17616] Fix | Delete
});
[17617] Fix | Delete
// Setting state after every render is fine because this component is
[17618] Fix | Delete
// pure and will only re-render when needed props change.
[17619] Fix | Delete
(0,external_wp_element_namespaceObject.useEffect)(() => {
[17620] Fix | Delete
// We could shallow compare the props, but since this component only
[17621] Fix | Delete
// changes when needed attributes change, the benefit is probably small.
[17622] Fix | Delete
setWrapperProps(wrapperProps);
[17623] Fix | Delete
return () => {
[17624] Fix | Delete
setWrapperProps(undefined);
[17625] Fix | Delete
};
[17626] Fix | Delete
});
[17627] Fix | Delete
return null;
[17628] Fix | Delete
}
[17629] Fix | Delete
const BlockPropsPure = (0,external_wp_element_namespaceObject.memo)(BlockProps);
[17630] Fix | Delete
function createBlockListBlockFilter(features) {
[17631] Fix | Delete
const withBlockListBlockHooks = (0,external_wp_compose_namespaceObject.createHigherOrderComponent)(BlockListBlock => props => {
[17632] Fix | Delete
const [allWrapperProps, setAllWrapperProps] = (0,external_wp_element_namespaceObject.useState)(Array(features.length).fill(undefined));
[17633] Fix | Delete
return [...features.map((feature, i) => {
[17634] Fix | Delete
const {
[17635] Fix | Delete
hasSupport,
[17636] Fix | Delete
attributeKeys = [],
[17637] Fix | Delete
useBlockProps,
[17638] Fix | Delete
isMatch
[17639] Fix | Delete
} = feature;
[17640] Fix | Delete
const neededProps = {};
[17641] Fix | Delete
for (const key of attributeKeys) {
[17642] Fix | Delete
if (props.attributes[key]) {
[17643] Fix | Delete
neededProps[key] = props.attributes[key];
[17644] Fix | Delete
}
[17645] Fix | Delete
}
[17646] Fix | Delete
if (
[17647] Fix | Delete
// Skip rendering if none of the needed attributes are
[17648] Fix | Delete
// set.
[17649] Fix | Delete
!Object.keys(neededProps).length || !hasSupport(props.name) || isMatch && !isMatch(neededProps)) {
[17650] Fix | Delete
return null;
[17651] Fix | Delete
}
[17652] Fix | Delete
return /*#__PURE__*/(0,external_ReactJSXRuntime_namespaceObject.jsx)(BlockPropsPure
[17653] Fix | Delete
// We can use the index because the array length
[17654] Fix | Delete
// is fixed per page load right now.
[17655] Fix | Delete
, {
[17656] Fix | Delete
index: i,
[17657] Fix | Delete
useBlockProps: useBlockProps
[17658] Fix | Delete
// This component is pure, so we must pass a stable
[17659] Fix | Delete
// function reference.
[17660] Fix | Delete
,
[17661] Fix | Delete
setAllWrapperProps: setAllWrapperProps,
[17662] Fix | Delete
name: props.name,
[17663] Fix | Delete
clientId: props.clientId
[17664] Fix | Delete
// This component is pure, so only pass needed
[17665] Fix | Delete
// props!!!
[17666] Fix | Delete
,
[17667] Fix | Delete
...neededProps
[17668] Fix | Delete
}, i);
[17669] Fix | Delete
}), /*#__PURE__*/(0,external_ReactJSXRuntime_namespaceObject.jsx)(BlockListBlock, {
[17670] Fix | Delete
...props,
[17671] Fix | Delete
wrapperProps: allWrapperProps.filter(Boolean).reduce((acc, wrapperProps) => {
[17672] Fix | Delete
return {
[17673] Fix | Delete
...acc,
[17674] Fix | Delete
...wrapperProps,
[17675] Fix | Delete
className: dist_clsx(acc.className, wrapperProps.className),
[17676] Fix | Delete
style: {
[17677] Fix | Delete
...acc.style,
[17678] Fix | Delete
...wrapperProps.style
[17679] Fix | Delete
}
[17680] Fix | Delete
};
[17681] Fix | Delete
}, props.wrapperProps || {})
[17682] Fix | Delete
}, "edit")];
[17683] Fix | Delete
}, 'withBlockListBlockHooks');
[17684] Fix | Delete
(0,external_wp_hooks_namespaceObject.addFilter)('editor.BlockListBlock', 'core/editor/hooks', withBlockListBlockHooks);
[17685] Fix | Delete
}
[17686] Fix | Delete
function createBlockSaveFilter(features) {
[17687] Fix | Delete
function extraPropsFromHooks(props, name, attributes) {
[17688] Fix | Delete
return features.reduce((accu, feature) => {
[17689] Fix | Delete
const {
[17690] Fix | Delete
hasSupport,
[17691] Fix | Delete
attributeKeys = [],
[17692] Fix | Delete
addSaveProps
[17693] Fix | Delete
} = feature;
[17694] Fix | Delete
const neededAttributes = {};
[17695] Fix | Delete
for (const key of attributeKeys) {
[17696] Fix | Delete
if (attributes[key]) {
[17697] Fix | Delete
neededAttributes[key] = attributes[key];
[17698] Fix | Delete
}
[17699] Fix | Delete
}
[17700] Fix | Delete
if (
[17701] Fix | Delete
// Skip rendering if none of the needed attributes are
[17702] Fix | Delete
// set.
[17703] Fix | Delete
!Object.keys(neededAttributes).length || !hasSupport(name)) {
[17704] Fix | Delete
return accu;
[17705] Fix | Delete
}
[17706] Fix | Delete
return addSaveProps(accu, name, neededAttributes);
[17707] Fix | Delete
}, props);
[17708] Fix | Delete
}
[17709] Fix | Delete
(0,external_wp_hooks_namespaceObject.addFilter)('blocks.getSaveContent.extraProps', 'core/editor/hooks', extraPropsFromHooks, 0);
[17710] Fix | Delete
(0,external_wp_hooks_namespaceObject.addFilter)('blocks.getSaveContent.extraProps', 'core/editor/hooks', props => {
[17711] Fix | Delete
// Previously we had a filter deleting the className if it was an empty
[17712] Fix | Delete
// string. That filter is no longer running, so now we need to delete it
[17713] Fix | Delete
// here.
[17714] Fix | Delete
if (props.hasOwnProperty('className') && !props.className) {
[17715] Fix | Delete
delete props.className;
[17716] Fix | Delete
}
[17717] Fix | Delete
return props;
[17718] Fix | Delete
});
[17719] Fix | Delete
}
[17720] Fix | Delete
[17721] Fix | Delete
;// CONCATENATED MODULE: ./node_modules/@wordpress/block-editor/build-module/hooks/compat.js
[17722] Fix | Delete
/**
[17723] Fix | Delete
* WordPress dependencies
[17724] Fix | Delete
*/
[17725] Fix | Delete
[17726] Fix | Delete
[17727] Fix | Delete
function migrateLightBlockWrapper(settings) {
[17728] Fix | Delete
const {
[17729] Fix | Delete
apiVersion = 1
[17730] Fix | Delete
} = settings;
[17731] Fix | Delete
if (apiVersion < 2 && (0,external_wp_blocks_namespaceObject.hasBlockSupport)(settings, 'lightBlockWrapper', false)) {
[17732] Fix | Delete
settings.apiVersion = 2;
[17733] Fix | Delete
}
[17734] Fix | Delete
return settings;
[17735] Fix | Delete
}
[17736] Fix | Delete
(0,external_wp_hooks_namespaceObject.addFilter)('blocks.registerBlockType', 'core/compat/migrateLightBlockWrapper', migrateLightBlockWrapper);
[17737] Fix | Delete
[17738] Fix | Delete
;// CONCATENATED MODULE: external ["wp","components"]
[17739] Fix | Delete
const external_wp_components_namespaceObject = window["wp"]["components"];
[17740] Fix | Delete
;// CONCATENATED MODULE: ./node_modules/@wordpress/block-editor/build-module/components/block-controls/groups.js
[17741] Fix | Delete
/**
[17742] Fix | Delete
* WordPress dependencies
[17743] Fix | Delete
*/
[17744] Fix | Delete
[17745] Fix | Delete
const BlockControlsDefault = (0,external_wp_components_namespaceObject.createSlotFill)('BlockControls');
[17746] Fix | Delete
const BlockControlsBlock = (0,external_wp_components_namespaceObject.createSlotFill)('BlockControlsBlock');
[17747] Fix | Delete
const BlockControlsInline = (0,external_wp_components_namespaceObject.createSlotFill)('BlockFormatControls');
[17748] Fix | Delete
const BlockControlsOther = (0,external_wp_components_namespaceObject.createSlotFill)('BlockControlsOther');
[17749] Fix | Delete
const BlockControlsParent = (0,external_wp_components_namespaceObject.createSlotFill)('BlockControlsParent');
[17750] Fix | Delete
const groups = {
[17751] Fix | Delete
default: BlockControlsDefault,
[17752] Fix | Delete
block: BlockControlsBlock,
[17753] Fix | Delete
inline: BlockControlsInline,
[17754] Fix | Delete
other: BlockControlsOther,
[17755] Fix | Delete
parent: BlockControlsParent
[17756] Fix | Delete
};
[17757] Fix | Delete
/* harmony default export */ const block_controls_groups = (groups);
[17758] Fix | Delete
[17759] Fix | Delete
;// CONCATENATED MODULE: ./node_modules/@wordpress/block-editor/build-module/components/block-controls/hook.js
[17760] Fix | Delete
/**
[17761] Fix | Delete
* WordPress dependencies
[17762] Fix | Delete
*/
[17763] Fix | Delete
[17764] Fix | Delete
/**
[17765] Fix | Delete
* Internal dependencies
[17766] Fix | Delete
*/
[17767] Fix | Delete
[17768] Fix | Delete
[17769] Fix | Delete
function useBlockControlsFill(group, shareWithChildBlocks) {
[17770] Fix | Delete
const context = useBlockEditContext();
[17771] Fix | Delete
if (context[mayDisplayControlsKey]) {
[17772] Fix | Delete
return block_controls_groups[group]?.Fill;
[17773] Fix | Delete
}
[17774] Fix | Delete
if (context[mayDisplayParentControlsKey] && shareWithChildBlocks) {
[17775] Fix | Delete
return block_controls_groups.parent.Fill;
[17776] Fix | Delete
}
[17777] Fix | Delete
return null;
[17778] Fix | Delete
}
[17779] Fix | Delete
[17780] Fix | Delete
;// CONCATENATED MODULE: ./node_modules/@wordpress/block-editor/build-module/components/block-controls/fill.js
[17781] Fix | Delete
/**
[17782] Fix | Delete
* WordPress dependencies
[17783] Fix | Delete
*/
[17784] Fix | Delete
[17785] Fix | Delete
[17786] Fix | Delete
/**
[17787] Fix | Delete
* Internal dependencies
[17788] Fix | Delete
*/
[17789] Fix | Delete
[17790] Fix | Delete
[17791] Fix | Delete
[17792] Fix | Delete
[17793] Fix | Delete
function BlockControlsFill({
[17794] Fix | Delete
group = 'default',
[17795] Fix | Delete
controls,
[17796] Fix | Delete
children,
[17797] Fix | Delete
__experimentalShareWithChildBlocks = false
[17798] Fix | Delete
}) {
[17799] Fix | Delete
const Fill = useBlockControlsFill(group, __experimentalShareWithChildBlocks);
[17800] Fix | Delete
if (!Fill) {
[17801] Fix | Delete
return null;
[17802] Fix | Delete
}
[17803] Fix | Delete
const innerMarkup = /*#__PURE__*/(0,external_ReactJSXRuntime_namespaceObject.jsxs)(external_ReactJSXRuntime_namespaceObject.Fragment, {
[17804] Fix | Delete
children: [group === 'default' && /*#__PURE__*/(0,external_ReactJSXRuntime_namespaceObject.jsx)(external_wp_components_namespaceObject.ToolbarGroup, {
[17805] Fix | Delete
controls: controls
[17806] Fix | Delete
}), children]
[17807] Fix | Delete
});
[17808] Fix | Delete
return /*#__PURE__*/(0,external_ReactJSXRuntime_namespaceObject.jsx)(external_wp_components_namespaceObject.__experimentalStyleProvider, {
[17809] Fix | Delete
document: document,
[17810] Fix | Delete
children: /*#__PURE__*/(0,external_ReactJSXRuntime_namespaceObject.jsx)(Fill, {
[17811] Fix | Delete
children: fillProps => {
[17812] Fix | Delete
// `fillProps.forwardedContext` is an array of context provider entries, provided by slot,
[17813] Fix | Delete
// that should wrap the fill markup.
[17814] Fix | Delete
const {
[17815] Fix | Delete
forwardedContext = []
[17816] Fix | Delete
} = fillProps;
[17817] Fix | Delete
return forwardedContext.reduce((inner, [Provider, props]) => /*#__PURE__*/(0,external_ReactJSXRuntime_namespaceObject.jsx)(Provider, {
[17818] Fix | Delete
...props,
[17819] Fix | Delete
children: inner
[17820] Fix | Delete
}), innerMarkup);
[17821] Fix | Delete
}
[17822] Fix | Delete
})
[17823] Fix | Delete
});
[17824] Fix | Delete
}
[17825] Fix | Delete
[17826] Fix | Delete
;// CONCATENATED MODULE: external ["wp","warning"]
[17827] Fix | Delete
const external_wp_warning_namespaceObject = window["wp"]["warning"];
[17828] Fix | Delete
var external_wp_warning_default = /*#__PURE__*/__webpack_require__.n(external_wp_warning_namespaceObject);
[17829] Fix | Delete
;// CONCATENATED MODULE: ./node_modules/@wordpress/block-editor/build-module/components/block-controls/slot.js
[17830] Fix | Delete
/**
[17831] Fix | Delete
* WordPress dependencies
[17832] Fix | Delete
*/
[17833] Fix | Delete
[17834] Fix | Delete
[17835] Fix | Delete
[17836] Fix | Delete
[17837] Fix | Delete
/**
[17838] Fix | Delete
* Internal dependencies
[17839] Fix | Delete
*/
[17840] Fix | Delete
[17841] Fix | Delete
[17842] Fix | Delete
[17843] Fix | Delete
const {
[17844] Fix | Delete
ComponentsContext
[17845] Fix | Delete
} = unlock(external_wp_components_namespaceObject.privateApis);
[17846] Fix | Delete
function BlockControlsSlot({
[17847] Fix | Delete
group = 'default',
[17848] Fix | Delete
...props
[17849] Fix | Delete
}) {
[17850] Fix | Delete
const toolbarState = (0,external_wp_element_namespaceObject.useContext)(external_wp_components_namespaceObject.__experimentalToolbarContext);
[17851] Fix | Delete
const contextState = (0,external_wp_element_namespaceObject.useContext)(ComponentsContext);
[17852] Fix | Delete
const fillProps = (0,external_wp_element_namespaceObject.useMemo)(() => ({
[17853] Fix | Delete
forwardedContext: [[external_wp_components_namespaceObject.__experimentalToolbarContext.Provider, {
[17854] Fix | Delete
value: toolbarState
[17855] Fix | Delete
}], [ComponentsContext.Provider, {
[17856] Fix | Delete
value: contextState
[17857] Fix | Delete
}]]
[17858] Fix | Delete
}), [toolbarState, contextState]);
[17859] Fix | Delete
const Slot = block_controls_groups[group]?.Slot;
[17860] Fix | Delete
const fills = (0,external_wp_components_namespaceObject.__experimentalUseSlotFills)(Slot?.__unstableName);
[17861] Fix | Delete
if (!Slot) {
[17862] Fix | Delete
true ? external_wp_warning_default()(`Unknown BlockControls group "${group}" provided.`) : 0;
[17863] Fix | Delete
return null;
[17864] Fix | Delete
}
[17865] Fix | Delete
if (!fills?.length) {
[17866] Fix | Delete
return null;
[17867] Fix | Delete
}
[17868] Fix | Delete
const slot = /*#__PURE__*/(0,external_ReactJSXRuntime_namespaceObject.jsx)(Slot, {
[17869] Fix | Delete
...props,
[17870] Fix | Delete
bubblesVirtually: true,
[17871] Fix | Delete
fillProps: fillProps
[17872] Fix | Delete
});
[17873] Fix | Delete
if (group === 'default') {
[17874] Fix | Delete
return slot;
[17875] Fix | Delete
}
[17876] Fix | Delete
return /*#__PURE__*/(0,external_ReactJSXRuntime_namespaceObject.jsx)(external_wp_components_namespaceObject.ToolbarGroup, {
[17877] Fix | Delete
children: slot
[17878] Fix | Delete
});
[17879] Fix | Delete
}
[17880] Fix | Delete
[17881] Fix | Delete
;// CONCATENATED MODULE: ./node_modules/@wordpress/block-editor/build-module/components/block-controls/index.js
[17882] Fix | Delete
/**
[17883] Fix | Delete
* Internal dependencies
[17884] Fix | Delete
*/
[17885] Fix | Delete
[17886] Fix | Delete
[17887] Fix | Delete
[17888] Fix | Delete
const BlockControls = BlockControlsFill;
[17889] Fix | Delete
BlockControls.Slot = BlockControlsSlot;
[17890] Fix | Delete
[17891] Fix | Delete
// This is just here for backward compatibility.
[17892] Fix | Delete
const BlockFormatControls = props => {
[17893] Fix | Delete
return /*#__PURE__*/(0,external_ReactJSXRuntime_namespaceObject.jsx)(BlockControlsFill, {
[17894] Fix | Delete
group: "inline",
[17895] Fix | Delete
...props
[17896] Fix | Delete
});
[17897] Fix | Delete
};
[17898] Fix | Delete
BlockFormatControls.Slot = props => {
[17899] Fix | Delete
return /*#__PURE__*/(0,external_ReactJSXRuntime_namespaceObject.jsx)(BlockControlsSlot, {
[17900] Fix | Delete
group: "inline",
[17901] Fix | Delete
...props
[17902] Fix | Delete
});
[17903] Fix | Delete
};
[17904] Fix | Delete
/* harmony default export */ const block_controls = (BlockControls);
[17905] Fix | Delete
[17906] Fix | Delete
;// CONCATENATED MODULE: ./node_modules/@wordpress/icons/build-module/library/justify-left.js
[17907] Fix | Delete
/**
[17908] Fix | Delete
* WordPress dependencies
[17909] Fix | Delete
*/
[17910] Fix | Delete
[17911] Fix | Delete
[17912] Fix | Delete
const justifyLeft = /*#__PURE__*/(0,external_ReactJSXRuntime_namespaceObject.jsx)(external_wp_primitives_namespaceObject.SVG, {
[17913] Fix | Delete
xmlns: "http://www.w3.org/2000/svg",
[17914] Fix | Delete
viewBox: "0 0 24 24",
[17915] Fix | Delete
children: /*#__PURE__*/(0,external_ReactJSXRuntime_namespaceObject.jsx)(external_wp_primitives_namespaceObject.Path, {
[17916] Fix | Delete
d: "M9 9v6h11V9H9zM4 20h1.5V4H4v16z"
[17917] Fix | Delete
})
[17918] Fix | Delete
});
[17919] Fix | Delete
/* harmony default export */ const justify_left = (justifyLeft);
[17920] Fix | Delete
[17921] Fix | Delete
;// CONCATENATED MODULE: ./node_modules/@wordpress/icons/build-module/library/justify-center.js
[17922] Fix | Delete
/**
[17923] Fix | Delete
* WordPress dependencies
[17924] Fix | Delete
*/
[17925] Fix | Delete
[17926] Fix | Delete
[17927] Fix | Delete
const justifyCenter = /*#__PURE__*/(0,external_ReactJSXRuntime_namespaceObject.jsx)(external_wp_primitives_namespaceObject.SVG, {
[17928] Fix | Delete
xmlns: "http://www.w3.org/2000/svg",
[17929] Fix | Delete
viewBox: "0 0 24 24",
[17930] Fix | Delete
children: /*#__PURE__*/(0,external_ReactJSXRuntime_namespaceObject.jsx)(external_wp_primitives_namespaceObject.Path, {
[17931] Fix | Delete
d: "M12.5 15v5H11v-5H4V9h7V4h1.5v5h7v6h-7Z"
[17932] Fix | Delete
})
[17933] Fix | Delete
});
[17934] Fix | Delete
/* harmony default export */ const justify_center = (justifyCenter);
[17935] Fix | Delete
[17936] Fix | Delete
;// CONCATENATED MODULE: ./node_modules/@wordpress/icons/build-module/library/justify-right.js
[17937] Fix | Delete
/**
[17938] Fix | Delete
* WordPress dependencies
[17939] Fix | Delete
*/
[17940] Fix | Delete
[17941] Fix | Delete
[17942] Fix | Delete
const justifyRight = /*#__PURE__*/(0,external_ReactJSXRuntime_namespaceObject.jsx)(external_wp_primitives_namespaceObject.SVG, {
[17943] Fix | Delete
xmlns: "http://www.w3.org/2000/svg",
[17944] Fix | Delete
viewBox: "0 0 24 24",
[17945] Fix | Delete
children: /*#__PURE__*/(0,external_ReactJSXRuntime_namespaceObject.jsx)(external_wp_primitives_namespaceObject.Path, {
[17946] Fix | Delete
d: "M4 15h11V9H4v6zM18.5 4v16H20V4h-1.5z"
[17947] Fix | Delete
})
[17948] Fix | Delete
});
[17949] Fix | Delete
/* harmony default export */ const justify_right = (justifyRight);
[17950] Fix | Delete
[17951] Fix | Delete
;// CONCATENATED MODULE: ./node_modules/@wordpress/icons/build-module/library/justify-space-between.js
[17952] Fix | Delete
/**
[17953] Fix | Delete
* WordPress dependencies
[17954] Fix | Delete
*/
[17955] Fix | Delete
[17956] Fix | Delete
[17957] Fix | Delete
const justifySpaceBetween = /*#__PURE__*/(0,external_ReactJSXRuntime_namespaceObject.jsx)(external_wp_primitives_namespaceObject.SVG, {
[17958] Fix | Delete
xmlns: "http://www.w3.org/2000/svg",
[17959] Fix | Delete
viewBox: "0 0 24 24",
[17960] Fix | Delete
children: /*#__PURE__*/(0,external_ReactJSXRuntime_namespaceObject.jsx)(external_wp_primitives_namespaceObject.Path, {
[17961] Fix | Delete
d: "M9 15h6V9H9v6zm-5 5h1.5V4H4v16zM18.5 4v16H20V4h-1.5z"
[17962] Fix | Delete
})
[17963] Fix | Delete
});
[17964] Fix | Delete
/* harmony default export */ const justify_space_between = (justifySpaceBetween);
[17965] Fix | Delete
[17966] Fix | Delete
;// CONCATENATED MODULE: ./node_modules/@wordpress/icons/build-module/library/justify-stretch.js
[17967] Fix | Delete
/**
[17968] Fix | Delete
* WordPress dependencies
[17969] Fix | Delete
*/
[17970] Fix | Delete
[17971] Fix | Delete
[17972] Fix | Delete
const justifyStretch = /*#__PURE__*/(0,external_ReactJSXRuntime_namespaceObject.jsx)(external_wp_primitives_namespaceObject.SVG, {
[17973] Fix | Delete
xmlns: "http://www.w3.org/2000/svg",
[17974] Fix | Delete
viewBox: "0 0 24 24",
[17975] Fix | Delete
children: /*#__PURE__*/(0,external_ReactJSXRuntime_namespaceObject.jsx)(external_wp_primitives_namespaceObject.Path, {
[17976] Fix | Delete
d: "M4 4H5.5V20H4V4ZM7 10L17 10V14L7 14V10ZM20 4H18.5V20H20V4Z"
[17977] Fix | Delete
})
[17978] Fix | Delete
});
[17979] Fix | Delete
/* harmony default export */ const justify_stretch = (justifyStretch);
[17980] Fix | Delete
[17981] Fix | Delete
;// CONCATENATED MODULE: ./node_modules/@wordpress/icons/build-module/library/arrow-right.js
[17982] Fix | Delete
/**
[17983] Fix | Delete
* WordPress dependencies
[17984] Fix | Delete
*/
[17985] Fix | Delete
[17986] Fix | Delete
[17987] Fix | Delete
const arrowRight = /*#__PURE__*/(0,external_ReactJSXRuntime_namespaceObject.jsx)(external_wp_primitives_namespaceObject.SVG, {
[17988] Fix | Delete
xmlns: "http://www.w3.org/2000/svg",
[17989] Fix | Delete
viewBox: "0 0 24 24",
[17990] Fix | Delete
children: /*#__PURE__*/(0,external_ReactJSXRuntime_namespaceObject.jsx)(external_wp_primitives_namespaceObject.Path, {
[17991] Fix | Delete
d: "m14.5 6.5-1 1 3.7 3.7H4v1.6h13.2l-3.7 3.7 1 1 5.6-5.5z"
[17992] Fix | Delete
})
[17993] Fix | Delete
});
[17994] Fix | Delete
/* harmony default export */ const arrow_right = (arrowRight);
[17995] Fix | Delete
[17996] Fix | Delete
;// CONCATENATED MODULE: ./node_modules/@wordpress/icons/build-module/library/arrow-down.js
[17997] Fix | Delete
/**
[17998] Fix | Delete
* WordPress dependencies
[17999] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function