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
/home/sportsfe.../httpdocs/clone/wp-inclu.../js/dist
File: nux.js
/******/ (() => { // webpackBootstrap
[0] Fix | Delete
/******/ "use strict";
[1] Fix | Delete
/******/ // The require scope
[2] Fix | Delete
/******/ var __webpack_require__ = {};
[3] Fix | Delete
/******/
[4] Fix | Delete
/************************************************************************/
[5] Fix | Delete
/******/ /* webpack/runtime/compat get default export */
[6] Fix | Delete
/******/ (() => {
[7] Fix | Delete
/******/ // getDefaultExport function for compatibility with non-harmony modules
[8] Fix | Delete
/******/ __webpack_require__.n = (module) => {
[9] Fix | Delete
/******/ var getter = module && module.__esModule ?
[10] Fix | Delete
/******/ () => (module['default']) :
[11] Fix | Delete
/******/ () => (module);
[12] Fix | Delete
/******/ __webpack_require__.d(getter, { a: getter });
[13] Fix | Delete
/******/ return getter;
[14] Fix | Delete
/******/ };
[15] Fix | Delete
/******/ })();
[16] Fix | Delete
/******/
[17] Fix | Delete
/******/ /* webpack/runtime/define property getters */
[18] Fix | Delete
/******/ (() => {
[19] Fix | Delete
/******/ // define getter functions for harmony exports
[20] Fix | Delete
/******/ __webpack_require__.d = (exports, definition) => {
[21] Fix | Delete
/******/ for(var key in definition) {
[22] Fix | Delete
/******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
[23] Fix | Delete
/******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
[24] Fix | Delete
/******/ }
[25] Fix | Delete
/******/ }
[26] Fix | Delete
/******/ };
[27] Fix | Delete
/******/ })();
[28] Fix | Delete
/******/
[29] Fix | Delete
/******/ /* webpack/runtime/hasOwnProperty shorthand */
[30] Fix | Delete
/******/ (() => {
[31] Fix | Delete
/******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
[32] Fix | Delete
/******/ })();
[33] Fix | Delete
/******/
[34] Fix | Delete
/******/ /* webpack/runtime/make namespace object */
[35] Fix | Delete
/******/ (() => {
[36] Fix | Delete
/******/ // define __esModule on exports
[37] Fix | Delete
/******/ __webpack_require__.r = (exports) => {
[38] Fix | Delete
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
[39] Fix | Delete
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
[40] Fix | Delete
/******/ }
[41] Fix | Delete
/******/ Object.defineProperty(exports, '__esModule', { value: true });
[42] Fix | Delete
/******/ };
[43] Fix | Delete
/******/ })();
[44] Fix | Delete
/******/
[45] Fix | Delete
/************************************************************************/
[46] Fix | Delete
var __webpack_exports__ = {};
[47] Fix | Delete
// ESM COMPAT FLAG
[48] Fix | Delete
__webpack_require__.r(__webpack_exports__);
[49] Fix | Delete
[50] Fix | Delete
// EXPORTS
[51] Fix | Delete
__webpack_require__.d(__webpack_exports__, {
[52] Fix | Delete
DotTip: () => (/* reexport */ dot_tip),
[53] Fix | Delete
store: () => (/* reexport */ store)
[54] Fix | Delete
});
[55] Fix | Delete
[56] Fix | Delete
// NAMESPACE OBJECT: ./node_modules/@wordpress/nux/build-module/store/actions.js
[57] Fix | Delete
var actions_namespaceObject = {};
[58] Fix | Delete
__webpack_require__.r(actions_namespaceObject);
[59] Fix | Delete
__webpack_require__.d(actions_namespaceObject, {
[60] Fix | Delete
disableTips: () => (disableTips),
[61] Fix | Delete
dismissTip: () => (dismissTip),
[62] Fix | Delete
enableTips: () => (enableTips),
[63] Fix | Delete
triggerGuide: () => (triggerGuide)
[64] Fix | Delete
});
[65] Fix | Delete
[66] Fix | Delete
// NAMESPACE OBJECT: ./node_modules/@wordpress/nux/build-module/store/selectors.js
[67] Fix | Delete
var selectors_namespaceObject = {};
[68] Fix | Delete
__webpack_require__.r(selectors_namespaceObject);
[69] Fix | Delete
__webpack_require__.d(selectors_namespaceObject, {
[70] Fix | Delete
areTipsEnabled: () => (selectors_areTipsEnabled),
[71] Fix | Delete
getAssociatedGuide: () => (getAssociatedGuide),
[72] Fix | Delete
isTipVisible: () => (isTipVisible)
[73] Fix | Delete
});
[74] Fix | Delete
[75] Fix | Delete
;// CONCATENATED MODULE: external ["wp","deprecated"]
[76] Fix | Delete
const external_wp_deprecated_namespaceObject = window["wp"]["deprecated"];
[77] Fix | Delete
var external_wp_deprecated_default = /*#__PURE__*/__webpack_require__.n(external_wp_deprecated_namespaceObject);
[78] Fix | Delete
;// CONCATENATED MODULE: external ["wp","data"]
[79] Fix | Delete
const external_wp_data_namespaceObject = window["wp"]["data"];
[80] Fix | Delete
;// CONCATENATED MODULE: ./node_modules/@wordpress/nux/build-module/store/reducer.js
[81] Fix | Delete
/**
[82] Fix | Delete
* WordPress dependencies
[83] Fix | Delete
*/
[84] Fix | Delete
[85] Fix | Delete
[86] Fix | Delete
/**
[87] Fix | Delete
* Reducer that tracks which tips are in a guide. Each guide is represented by
[88] Fix | Delete
* an array which contains the tip identifiers contained within that guide.
[89] Fix | Delete
*
[90] Fix | Delete
* @param {Array} state Current state.
[91] Fix | Delete
* @param {Object} action Dispatched action.
[92] Fix | Delete
*
[93] Fix | Delete
* @return {Array} Updated state.
[94] Fix | Delete
*/
[95] Fix | Delete
function guides(state = [], action) {
[96] Fix | Delete
switch (action.type) {
[97] Fix | Delete
case 'TRIGGER_GUIDE':
[98] Fix | Delete
return [...state, action.tipIds];
[99] Fix | Delete
}
[100] Fix | Delete
return state;
[101] Fix | Delete
}
[102] Fix | Delete
[103] Fix | Delete
/**
[104] Fix | Delete
* Reducer that tracks whether or not tips are globally enabled.
[105] Fix | Delete
*
[106] Fix | Delete
* @param {boolean} state Current state.
[107] Fix | Delete
* @param {Object} action Dispatched action.
[108] Fix | Delete
*
[109] Fix | Delete
* @return {boolean} Updated state.
[110] Fix | Delete
*/
[111] Fix | Delete
function areTipsEnabled(state = true, action) {
[112] Fix | Delete
switch (action.type) {
[113] Fix | Delete
case 'DISABLE_TIPS':
[114] Fix | Delete
return false;
[115] Fix | Delete
case 'ENABLE_TIPS':
[116] Fix | Delete
return true;
[117] Fix | Delete
}
[118] Fix | Delete
return state;
[119] Fix | Delete
}
[120] Fix | Delete
[121] Fix | Delete
/**
[122] Fix | Delete
* Reducer that tracks which tips have been dismissed. If the state object
[123] Fix | Delete
* contains a tip identifier, then that tip is dismissed.
[124] Fix | Delete
*
[125] Fix | Delete
* @param {Object} state Current state.
[126] Fix | Delete
* @param {Object} action Dispatched action.
[127] Fix | Delete
*
[128] Fix | Delete
* @return {Object} Updated state.
[129] Fix | Delete
*/
[130] Fix | Delete
function dismissedTips(state = {}, action) {
[131] Fix | Delete
switch (action.type) {
[132] Fix | Delete
case 'DISMISS_TIP':
[133] Fix | Delete
return {
[134] Fix | Delete
...state,
[135] Fix | Delete
[action.id]: true
[136] Fix | Delete
};
[137] Fix | Delete
case 'ENABLE_TIPS':
[138] Fix | Delete
return {};
[139] Fix | Delete
}
[140] Fix | Delete
return state;
[141] Fix | Delete
}
[142] Fix | Delete
const preferences = (0,external_wp_data_namespaceObject.combineReducers)({
[143] Fix | Delete
areTipsEnabled,
[144] Fix | Delete
dismissedTips
[145] Fix | Delete
});
[146] Fix | Delete
/* harmony default export */ const reducer = ((0,external_wp_data_namespaceObject.combineReducers)({
[147] Fix | Delete
guides,
[148] Fix | Delete
preferences
[149] Fix | Delete
}));
[150] Fix | Delete
[151] Fix | Delete
;// CONCATENATED MODULE: ./node_modules/@wordpress/nux/build-module/store/actions.js
[152] Fix | Delete
/**
[153] Fix | Delete
* Returns an action object that, when dispatched, presents a guide that takes
[154] Fix | Delete
* the user through a series of tips step by step.
[155] Fix | Delete
*
[156] Fix | Delete
* @param {string[]} tipIds Which tips to show in the guide.
[157] Fix | Delete
*
[158] Fix | Delete
* @return {Object} Action object.
[159] Fix | Delete
*/
[160] Fix | Delete
function triggerGuide(tipIds) {
[161] Fix | Delete
return {
[162] Fix | Delete
type: 'TRIGGER_GUIDE',
[163] Fix | Delete
tipIds
[164] Fix | Delete
};
[165] Fix | Delete
}
[166] Fix | Delete
[167] Fix | Delete
/**
[168] Fix | Delete
* Returns an action object that, when dispatched, dismisses the given tip. A
[169] Fix | Delete
* dismissed tip will not show again.
[170] Fix | Delete
*
[171] Fix | Delete
* @param {string} id The tip to dismiss.
[172] Fix | Delete
*
[173] Fix | Delete
* @return {Object} Action object.
[174] Fix | Delete
*/
[175] Fix | Delete
function dismissTip(id) {
[176] Fix | Delete
return {
[177] Fix | Delete
type: 'DISMISS_TIP',
[178] Fix | Delete
id
[179] Fix | Delete
};
[180] Fix | Delete
}
[181] Fix | Delete
[182] Fix | Delete
/**
[183] Fix | Delete
* Returns an action object that, when dispatched, prevents all tips from
[184] Fix | Delete
* showing again.
[185] Fix | Delete
*
[186] Fix | Delete
* @return {Object} Action object.
[187] Fix | Delete
*/
[188] Fix | Delete
function disableTips() {
[189] Fix | Delete
return {
[190] Fix | Delete
type: 'DISABLE_TIPS'
[191] Fix | Delete
};
[192] Fix | Delete
}
[193] Fix | Delete
[194] Fix | Delete
/**
[195] Fix | Delete
* Returns an action object that, when dispatched, makes all tips show again.
[196] Fix | Delete
*
[197] Fix | Delete
* @return {Object} Action object.
[198] Fix | Delete
*/
[199] Fix | Delete
function enableTips() {
[200] Fix | Delete
return {
[201] Fix | Delete
type: 'ENABLE_TIPS'
[202] Fix | Delete
};
[203] Fix | Delete
}
[204] Fix | Delete
[205] Fix | Delete
;// CONCATENATED MODULE: ./node_modules/@wordpress/nux/build-module/store/selectors.js
[206] Fix | Delete
/**
[207] Fix | Delete
* WordPress dependencies
[208] Fix | Delete
*/
[209] Fix | Delete
[210] Fix | Delete
[211] Fix | Delete
/**
[212] Fix | Delete
* An object containing information about a guide.
[213] Fix | Delete
*
[214] Fix | Delete
* @typedef {Object} NUXGuideInfo
[215] Fix | Delete
* @property {string[]} tipIds Which tips the guide contains.
[216] Fix | Delete
* @property {?string} currentTipId The guide's currently showing tip.
[217] Fix | Delete
* @property {?string} nextTipId The guide's next tip to show.
[218] Fix | Delete
*/
[219] Fix | Delete
[220] Fix | Delete
/**
[221] Fix | Delete
* Returns an object describing the guide, if any, that the given tip is a part
[222] Fix | Delete
* of.
[223] Fix | Delete
*
[224] Fix | Delete
* @param {Object} state Global application state.
[225] Fix | Delete
* @param {string} tipId The tip to query.
[226] Fix | Delete
*
[227] Fix | Delete
* @return {?NUXGuideInfo} Information about the associated guide.
[228] Fix | Delete
*/
[229] Fix | Delete
const getAssociatedGuide = (0,external_wp_data_namespaceObject.createSelector)((state, tipId) => {
[230] Fix | Delete
for (const tipIds of state.guides) {
[231] Fix | Delete
if (tipIds.includes(tipId)) {
[232] Fix | Delete
const nonDismissedTips = tipIds.filter(tId => !Object.keys(state.preferences.dismissedTips).includes(tId));
[233] Fix | Delete
const [currentTipId = null, nextTipId = null] = nonDismissedTips;
[234] Fix | Delete
return {
[235] Fix | Delete
tipIds,
[236] Fix | Delete
currentTipId,
[237] Fix | Delete
nextTipId
[238] Fix | Delete
};
[239] Fix | Delete
}
[240] Fix | Delete
}
[241] Fix | Delete
return null;
[242] Fix | Delete
}, state => [state.guides, state.preferences.dismissedTips]);
[243] Fix | Delete
[244] Fix | Delete
/**
[245] Fix | Delete
* Determines whether or not the given tip is showing. Tips are hidden if they
[246] Fix | Delete
* are disabled, have been dismissed, or are not the current tip in any
[247] Fix | Delete
* guide that they have been added to.
[248] Fix | Delete
*
[249] Fix | Delete
* @param {Object} state Global application state.
[250] Fix | Delete
* @param {string} tipId The tip to query.
[251] Fix | Delete
*
[252] Fix | Delete
* @return {boolean} Whether or not the given tip is showing.
[253] Fix | Delete
*/
[254] Fix | Delete
function isTipVisible(state, tipId) {
[255] Fix | Delete
if (!state.preferences.areTipsEnabled) {
[256] Fix | Delete
return false;
[257] Fix | Delete
}
[258] Fix | Delete
if (state.preferences.dismissedTips?.hasOwnProperty(tipId)) {
[259] Fix | Delete
return false;
[260] Fix | Delete
}
[261] Fix | Delete
const associatedGuide = getAssociatedGuide(state, tipId);
[262] Fix | Delete
if (associatedGuide && associatedGuide.currentTipId !== tipId) {
[263] Fix | Delete
return false;
[264] Fix | Delete
}
[265] Fix | Delete
return true;
[266] Fix | Delete
}
[267] Fix | Delete
[268] Fix | Delete
/**
[269] Fix | Delete
* Returns whether or not tips are globally enabled.
[270] Fix | Delete
*
[271] Fix | Delete
* @param {Object} state Global application state.
[272] Fix | Delete
*
[273] Fix | Delete
* @return {boolean} Whether tips are globally enabled.
[274] Fix | Delete
*/
[275] Fix | Delete
function selectors_areTipsEnabled(state) {
[276] Fix | Delete
return state.preferences.areTipsEnabled;
[277] Fix | Delete
}
[278] Fix | Delete
[279] Fix | Delete
;// CONCATENATED MODULE: ./node_modules/@wordpress/nux/build-module/store/index.js
[280] Fix | Delete
/**
[281] Fix | Delete
* WordPress dependencies
[282] Fix | Delete
*/
[283] Fix | Delete
[284] Fix | Delete
[285] Fix | Delete
/**
[286] Fix | Delete
* Internal dependencies
[287] Fix | Delete
*/
[288] Fix | Delete
[289] Fix | Delete
[290] Fix | Delete
[291] Fix | Delete
const STORE_NAME = 'core/nux';
[292] Fix | Delete
[293] Fix | Delete
/**
[294] Fix | Delete
* Store definition for the nux namespace.
[295] Fix | Delete
*
[296] Fix | Delete
* @see https://github.com/WordPress/gutenberg/blob/HEAD/packages/data/README.md#createReduxStore
[297] Fix | Delete
*
[298] Fix | Delete
* @type {Object}
[299] Fix | Delete
*/
[300] Fix | Delete
const store = (0,external_wp_data_namespaceObject.createReduxStore)(STORE_NAME, {
[301] Fix | Delete
reducer: reducer,
[302] Fix | Delete
actions: actions_namespaceObject,
[303] Fix | Delete
selectors: selectors_namespaceObject,
[304] Fix | Delete
persist: ['preferences']
[305] Fix | Delete
});
[306] Fix | Delete
[307] Fix | Delete
// Once we build a more generic persistence plugin that works across types of stores
[308] Fix | Delete
// we'd be able to replace this with a register call.
[309] Fix | Delete
(0,external_wp_data_namespaceObject.registerStore)(STORE_NAME, {
[310] Fix | Delete
reducer: reducer,
[311] Fix | Delete
actions: actions_namespaceObject,
[312] Fix | Delete
selectors: selectors_namespaceObject,
[313] Fix | Delete
persist: ['preferences']
[314] Fix | Delete
});
[315] Fix | Delete
[316] Fix | Delete
;// CONCATENATED MODULE: external ["wp","compose"]
[317] Fix | Delete
const external_wp_compose_namespaceObject = window["wp"]["compose"];
[318] Fix | Delete
;// CONCATENATED MODULE: external ["wp","components"]
[319] Fix | Delete
const external_wp_components_namespaceObject = window["wp"]["components"];
[320] Fix | Delete
;// CONCATENATED MODULE: external ["wp","i18n"]
[321] Fix | Delete
const external_wp_i18n_namespaceObject = window["wp"]["i18n"];
[322] Fix | Delete
;// CONCATENATED MODULE: external ["wp","element"]
[323] Fix | Delete
const external_wp_element_namespaceObject = window["wp"]["element"];
[324] Fix | Delete
;// CONCATENATED MODULE: external ["wp","primitives"]
[325] Fix | Delete
const external_wp_primitives_namespaceObject = window["wp"]["primitives"];
[326] Fix | Delete
;// CONCATENATED MODULE: external "ReactJSXRuntime"
[327] Fix | Delete
const external_ReactJSXRuntime_namespaceObject = window["ReactJSXRuntime"];
[328] Fix | Delete
;// CONCATENATED MODULE: ./node_modules/@wordpress/icons/build-module/library/close.js
[329] Fix | Delete
/**
[330] Fix | Delete
* WordPress dependencies
[331] Fix | Delete
*/
[332] Fix | Delete
[333] Fix | Delete
[334] Fix | Delete
const close_close = /*#__PURE__*/(0,external_ReactJSXRuntime_namespaceObject.jsx)(external_wp_primitives_namespaceObject.SVG, {
[335] Fix | Delete
xmlns: "http://www.w3.org/2000/svg",
[336] Fix | Delete
viewBox: "0 0 24 24",
[337] Fix | Delete
children: /*#__PURE__*/(0,external_ReactJSXRuntime_namespaceObject.jsx)(external_wp_primitives_namespaceObject.Path, {
[338] Fix | Delete
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"
[339] Fix | Delete
})
[340] Fix | Delete
});
[341] Fix | Delete
/* harmony default export */ const library_close = (close_close);
[342] Fix | Delete
[343] Fix | Delete
;// CONCATENATED MODULE: ./node_modules/@wordpress/nux/build-module/components/dot-tip/index.js
[344] Fix | Delete
/**
[345] Fix | Delete
* WordPress dependencies
[346] Fix | Delete
*/
[347] Fix | Delete
[348] Fix | Delete
[349] Fix | Delete
[350] Fix | Delete
[351] Fix | Delete
[352] Fix | Delete
[353] Fix | Delete
[354] Fix | Delete
/**
[355] Fix | Delete
* Internal dependencies
[356] Fix | Delete
*/
[357] Fix | Delete
[358] Fix | Delete
[359] Fix | Delete
[360] Fix | Delete
function onClick(event) {
[361] Fix | Delete
// Tips are often nested within buttons. We stop propagation so that clicking
[362] Fix | Delete
// on a tip doesn't result in the button being clicked.
[363] Fix | Delete
event.stopPropagation();
[364] Fix | Delete
}
[365] Fix | Delete
function DotTip({
[366] Fix | Delete
position = 'middle right',
[367] Fix | Delete
children,
[368] Fix | Delete
isVisible,
[369] Fix | Delete
hasNextTip,
[370] Fix | Delete
onDismiss,
[371] Fix | Delete
onDisable
[372] Fix | Delete
}) {
[373] Fix | Delete
const anchorParent = (0,external_wp_element_namespaceObject.useRef)(null);
[374] Fix | Delete
const onFocusOutsideCallback = (0,external_wp_element_namespaceObject.useCallback)(event => {
[375] Fix | Delete
if (!anchorParent.current) {
[376] Fix | Delete
return;
[377] Fix | Delete
}
[378] Fix | Delete
if (anchorParent.current.contains(event.relatedTarget)) {
[379] Fix | Delete
return;
[380] Fix | Delete
}
[381] Fix | Delete
onDisable();
[382] Fix | Delete
}, [onDisable, anchorParent]);
[383] Fix | Delete
if (!isVisible) {
[384] Fix | Delete
return null;
[385] Fix | Delete
}
[386] Fix | Delete
return /*#__PURE__*/(0,external_ReactJSXRuntime_namespaceObject.jsxs)(external_wp_components_namespaceObject.Popover, {
[387] Fix | Delete
className: "nux-dot-tip",
[388] Fix | Delete
position: position,
[389] Fix | Delete
focusOnMount: true,
[390] Fix | Delete
role: "dialog",
[391] Fix | Delete
"aria-label": (0,external_wp_i18n_namespaceObject.__)('Editor tips'),
[392] Fix | Delete
onClick: onClick,
[393] Fix | Delete
onFocusOutside: onFocusOutsideCallback,
[394] Fix | Delete
children: [/*#__PURE__*/(0,external_ReactJSXRuntime_namespaceObject.jsx)("p", {
[395] Fix | Delete
children: children
[396] Fix | Delete
}), /*#__PURE__*/(0,external_ReactJSXRuntime_namespaceObject.jsx)("p", {
[397] Fix | Delete
children: /*#__PURE__*/(0,external_ReactJSXRuntime_namespaceObject.jsx)(external_wp_components_namespaceObject.Button, {
[398] Fix | Delete
variant: "link",
[399] Fix | Delete
onClick: onDismiss,
[400] Fix | Delete
children: hasNextTip ? (0,external_wp_i18n_namespaceObject.__)('See next tip') : (0,external_wp_i18n_namespaceObject.__)('Got it')
[401] Fix | Delete
})
[402] Fix | Delete
}), /*#__PURE__*/(0,external_ReactJSXRuntime_namespaceObject.jsx)(external_wp_components_namespaceObject.Button, {
[403] Fix | Delete
className: "nux-dot-tip__disable",
[404] Fix | Delete
icon: library_close,
[405] Fix | Delete
label: (0,external_wp_i18n_namespaceObject.__)('Disable tips'),
[406] Fix | Delete
onClick: onDisable
[407] Fix | Delete
})]
[408] Fix | Delete
});
[409] Fix | Delete
}
[410] Fix | Delete
/* harmony default export */ const dot_tip = ((0,external_wp_compose_namespaceObject.compose)((0,external_wp_data_namespaceObject.withSelect)((select, {
[411] Fix | Delete
tipId
[412] Fix | Delete
}) => {
[413] Fix | Delete
const {
[414] Fix | Delete
isTipVisible,
[415] Fix | Delete
getAssociatedGuide
[416] Fix | Delete
} = select(store);
[417] Fix | Delete
const associatedGuide = getAssociatedGuide(tipId);
[418] Fix | Delete
return {
[419] Fix | Delete
isVisible: isTipVisible(tipId),
[420] Fix | Delete
hasNextTip: !!(associatedGuide && associatedGuide.nextTipId)
[421] Fix | Delete
};
[422] Fix | Delete
}), (0,external_wp_data_namespaceObject.withDispatch)((dispatch, {
[423] Fix | Delete
tipId
[424] Fix | Delete
}) => {
[425] Fix | Delete
const {
[426] Fix | Delete
dismissTip,
[427] Fix | Delete
disableTips
[428] Fix | Delete
} = dispatch(store);
[429] Fix | Delete
return {
[430] Fix | Delete
onDismiss() {
[431] Fix | Delete
dismissTip(tipId);
[432] Fix | Delete
},
[433] Fix | Delete
onDisable() {
[434] Fix | Delete
disableTips();
[435] Fix | Delete
}
[436] Fix | Delete
};
[437] Fix | Delete
}))(DotTip));
[438] Fix | Delete
[439] Fix | Delete
;// CONCATENATED MODULE: ./node_modules/@wordpress/nux/build-module/index.js
[440] Fix | Delete
/**
[441] Fix | Delete
* WordPress dependencies
[442] Fix | Delete
*/
[443] Fix | Delete
[444] Fix | Delete
[445] Fix | Delete
[446] Fix | Delete
external_wp_deprecated_default()('wp.nux', {
[447] Fix | Delete
since: '5.4',
[448] Fix | Delete
hint: 'wp.components.Guide can be used to show a user guide.',
[449] Fix | Delete
version: '6.2'
[450] Fix | Delete
});
[451] Fix | Delete
[452] Fix | Delete
(window.wp = window.wp || {}).nux = __webpack_exports__;
[453] Fix | Delete
/******/ })()
[454] Fix | Delete
;
[455] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function