??????????????
??????????????
??????????????
??????????????
Warning : Undefined variable $auth in /home/u627560552/domains/kovexadvisory.com/public_html/666.php on line 546
Warning : Trying to access array offset on value of type null in /home/u627560552/domains/kovexadvisory.com/public_html/666.php on line 546
??????????????
??????????????
??????????????
??????????????
File Manager
✏️ Edit File: /home/mklsvubc/renovaid.co.uk/wp-includes/js/dist/nux.js
⬅ Kembali
var wp;
(wp ||= {}).nux = (() => {
var __create = Object.create;
var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
var __getOwnPropNames = Object.getOwnPropertyNames;
var __getProtoOf = Object.getPrototypeOf;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __commonJS = (cb, mod) => function __require() {
return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
};
var __export = (target, all) => {
for (var name in all)
__defProp(target, name, { get: all[name], enumerable: true });
};
var __copyProps = (to, from, except, desc) => {
if (from && typeof from === "object" || typeof from === "function") {
for (let key of __getOwnPropNames(from))
if (!__hasOwnProp.call(to, key) && key !== except)
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
}
return to;
};
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
// If the importer is in node compatibility mode or this is not an ESM
// file that has been converted to a CommonJS file using a Babel-
// compatible transform (i.e. "__esModule" has not been set), then set
// "default" to the CommonJS "module.exports" for node compatibility.
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
mod
));
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
// package-external:@wordpress/deprecated
var require_deprecated = __commonJS({
"package-external:@wordpress/deprecated"(exports, module) {
module.exports = window.wp.deprecated;
}
});
// package-external:@wordpress/data
var require_data = __commonJS({
"package-external:@wordpress/data"(exports, module) {
module.exports = window.wp.data;
}
});
// package-external:@wordpress/compose
var require_compose = __commonJS({
"package-external:@wordpress/compose"(exports, module) {
module.exports = window.wp.compose;
}
});
// package-external:@wordpress/components
var require_components = __commonJS({
"package-external:@wordpress/components"(exports, module) {
module.exports = window.wp.components;
}
});
// package-external:@wordpress/i18n
var require_i18n = __commonJS({
"package-external:@wordpress/i18n"(exports, module) {
module.exports = window.wp.i18n;
}
});
// package-external:@wordpress/element
var require_element = __commonJS({
"package-external:@wordpress/element"(exports, module) {
module.exports = window.wp.element;
}
});
// package-external:@wordpress/primitives
var require_primitives = __commonJS({
"package-external:@wordpress/primitives"(exports, module) {
module.exports = window.wp.primitives;
}
});
// vendor-external:react/jsx-runtime
var require_jsx_runtime = __commonJS({
"vendor-external:react/jsx-runtime"(exports, module) {
module.exports = window.ReactJSXRuntime;
}
});
// packages/nux/build-module/index.mjs
var index_exports = {};
__export(index_exports, {
DotTip: () => dot_tip_default,
store: () => store
});
var import_deprecated = __toESM(require_deprecated(), 1);
// packages/nux/build-module/store/index.mjs
var import_data3 = __toESM(require_data(), 1);
// packages/nux/build-module/store/reducer.mjs
var import_data = __toESM(require_data(), 1);
function guides(state = [], action) {
switch (action.type) {
case "TRIGGER_GUIDE":
return [...state, action.tipIds];
}
return state;
}
function areTipsEnabled(state = true, action) {
switch (action.type) {
case "DISABLE_TIPS":
return false;
case "ENABLE_TIPS":
return true;
}
return state;
}
function dismissedTips(state = {}, action) {
switch (action.type) {
case "DISMISS_TIP":
return {
...state,
[action.id]: true
};
case "ENABLE_TIPS":
return {};
}
return state;
}
var preferences = (0, import_data.combineReducers)({ areTipsEnabled, dismissedTips });
var reducer_default = (0, import_data.combineReducers)({ guides, preferences });
// packages/nux/build-module/store/actions.mjs
var actions_exports = {};
__export(actions_exports, {
disableTips: () => disableTips,
dismissTip: () => dismissTip,
enableTips: () => enableTips,
triggerGuide: () => triggerGuide
});
function triggerGuide(tipIds) {
return {
type: "TRIGGER_GUIDE",
tipIds
};
}
function dismissTip(id) {
return {
type: "DISMISS_TIP",
id
};
}
function disableTips() {
return {
type: "DISABLE_TIPS"
};
}
function enableTips() {
return {
type: "ENABLE_TIPS"
};
}
// packages/nux/build-module/store/selectors.mjs
var selectors_exports = {};
__export(selectors_exports, {
areTipsEnabled: () => areTipsEnabled2,
getAssociatedGuide: () => getAssociatedGuide,
isTipVisible: () => isTipVisible
});
var import_data2 = __toESM(require_data(), 1);
var getAssociatedGuide = (0, import_data2.createSelector)(
(state, tipId) => {
for (const tipIds of state.guides) {
if (tipIds.includes(tipId)) {
const nonDismissedTips = tipIds.filter(
(tId) => !Object.keys(
state.preferences.dismissedTips
).includes(tId)
);
const [currentTipId = null, nextTipId = null] = nonDismissedTips;
return { tipIds, currentTipId, nextTipId };
}
}
return null;
},
(state) => [state.guides, state.preferences.dismissedTips]
);
function isTipVisible(state, tipId) {
if (!state.preferences.areTipsEnabled) {
return false;
}
if (state.preferences.dismissedTips?.hasOwnProperty(tipId)) {
return false;
}
const associatedGuide = getAssociatedGuide(state, tipId);
if (associatedGuide && associatedGuide.currentTipId !== tipId) {
return false;
}
return true;
}
function areTipsEnabled2(state) {
return state.preferences.areTipsEnabled;
}
// packages/nux/build-module/store/index.mjs
var STORE_NAME = "core/nux";
var store = (0, import_data3.createReduxStore)(STORE_NAME, {
reducer: reducer_default,
actions: actions_exports,
selectors: selectors_exports,
persist: ["preferences"]
});
(0, import_data3.registerStore)(STORE_NAME, {
reducer: reducer_default,
actions: actions_exports,
selectors: selectors_exports,
persist: ["preferences"]
});
// packages/nux/build-module/components/dot-tip/index.mjs
var import_compose = __toESM(require_compose(), 1);
var import_components = __toESM(require_components(), 1);
var import_i18n = __toESM(require_i18n(), 1);
var import_data4 = __toESM(require_data(), 1);
var import_element = __toESM(require_element(), 1);
// packages/icons/build-module/library/close.mjs
var import_primitives = __toESM(require_primitives(), 1);
var import_jsx_runtime = __toESM(require_jsx_runtime(), 1);
var close_default = /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_primitives.SVG, { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_primitives.Path, { d: "m13.06 12 6.47-6.47-1.06-1.06L12 10.94 5.53 4.47 4.47 5.53 10.94 12l-6.47 6.47 1.06 1.06L12 13.06l6.47 6.47 1.06-1.06L13.06 12Z" }) });
// packages/nux/build-module/components/dot-tip/index.mjs
var import_jsx_runtime2 = __toESM(require_jsx_runtime(), 1);
function onClick(event) {
event.stopPropagation();
}
function DotTip({
position = "middle right",
children,
isVisible,
hasNextTip,
onDismiss,
onDisable
}) {
const anchorParent = (0, import_element.useRef)(null);
const onFocusOutsideCallback = (0, import_element.useCallback)(
(event) => {
if (!anchorParent.current) {
return;
}
if (anchorParent.current.contains(event.relatedTarget)) {
return;
}
onDisable();
},
[onDisable, anchorParent]
);
if (!isVisible) {
return null;
}
return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(
import_components.Popover,
{
className: "nux-dot-tip",
position,
focusOnMount: true,
role: "dialog",
"aria-label": (0, import_i18n.__)("Editor tips"),
onClick,
onFocusOutside: onFocusOutsideCallback,
children: [
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("p", { children }),
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("p", { children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
import_components.Button,
{
__next40pxDefaultSize: true,
variant: "link",
onClick: onDismiss,
children: hasNextTip ? (0, import_i18n.__)("See next tip") : (0, import_i18n.__)("Got it")
}
) }),
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
import_components.Button,
{
size: "small",
className: "nux-dot-tip__disable",
icon: close_default,
label: (0, import_i18n.__)("Disable tips"),
onClick: onDisable
}
)
]
}
);
}
var dot_tip_default = (0, import_compose.compose)(
(0, import_data4.withSelect)((select, { tipId }) => {
const { isTipVisible: isTipVisible2, getAssociatedGuide: getAssociatedGuide2 } = select(store);
const associatedGuide = getAssociatedGuide2(tipId);
return {
isVisible: isTipVisible2(tipId),
hasNextTip: !!(associatedGuide && associatedGuide.nextTipId)
};
}),
(0, import_data4.withDispatch)((dispatch, { tipId }) => {
const { dismissTip: dismissTip2, disableTips: disableTips2 } = dispatch(store);
return {
onDismiss() {
dismissTip2(tipId);
},
onDisable() {
disableTips2();
}
};
})
)(DotTip);
// packages/nux/build-module/index.mjs
(0, import_deprecated.default)("wp.nux", {
since: "5.4",
hint: "wp.components.Guide can be used to show a user guide.",
version: "6.2"
});
return __toCommonJS(index_exports);
})();
Nama
Tipe
Ukuran
Diubah
Aksi
📁 development
dir
—
2025-10-12 22:47
📁 script-modules
dir
—
2026-05-21 22:50
📁 vendor
dir
—
2026-05-21 22:50
📜 a11y.js
js
5.5 KB
2026-05-21 22:50
📜 a11y.min.js
js
2.4 KB
2026-05-21 22:50
📜 annotations.js
js
15.1 KB
2026-05-21 22:50
📜 annotations.min.js
js
5.6 KB
2026-05-21 22:50
📜 api-fetch.js
js
17.5 KB
2026-05-21 22:50
📜 api-fetch.min.js
js
6.3 KB
2026-05-21 22:50
📜 autop.js
js
9.7 KB
2026-05-21 22:50
📜 autop.min.js
js
5.5 KB
2026-05-21 22:50
📜 base-styles.js
js
48 B
2026-05-21 22:50
📜 base-styles.min.js
js
40 B
2026-05-21 22:50
📜 blob.js
js
2.3 KB
2026-05-21 22:50
📜 blob.min.js
js
1.1 KB
2026-05-21 22:50
📜 block-directory.js
js
55.7 KB
2026-05-21 22:50
📜 block-directory.min.js
js
21.9 KB
2026-05-21 22:50
📜 block-editor.js
js
2.7 MB
2026-05-21 22:50
📜 block-editor.min.js
js
1 MB
2026-05-21 22:50
📜 block-library.js
js
2.6 MB
2026-05-21 22:50
📜 block-library.min.js
js
1.1 MB
2026-05-21 22:50
📜 block-serialization-default-parser.js
js
6.5 KB
2026-05-21 22:50
📜 block-serialization-default-parser.min.js
js
2.4 KB
2026-05-21 22:50
📜 block-serialization-spec-parser.js
js
50.5 KB
2026-05-21 22:50
📜 block-serialization-spec-parser.min.js
js
10.3 KB
2026-05-21 22:50
📜 blocks.js
js
381.1 KB
2026-05-21 22:50
📜 blocks.min.js
js
180.6 KB
2026-05-21 22:50
📜 commands.js
js
151.7 KB
2026-05-21 22:50
📜 commands.min.js
js
63.1 KB
2026-05-21 22:50
📜 components.js
js
3.8 MB
2026-05-21 22:50
📜 components.min.js
js
786.2 KB
2026-05-21 22:50
📜 compose.js
js
80.8 KB
2026-05-21 22:50
📜 compose.min.js
js
28.2 KB
2026-05-21 22:50
📜 core-commands.js
js
28.7 KB
2026-05-21 22:50
📜 core-commands.min.js
js
11.8 KB
2026-05-21 22:50
📜 core-data.js
js
612 KB
2026-05-21 22:50
📜 core-data.min.js
js
210.4 KB
2026-05-21 22:50
📜 customize-widgets.js
js
91.6 KB
2026-05-21 22:50
📜 customize-widgets.min.js
js
36.6 KB
2026-05-21 22:50
📜 data-controls.js
js
4.1 KB
2026-05-21 22:50
📜 data-controls.min.js
js
1.7 KB
2026-05-21 22:50
📜 data.js
js
82.8 KB
2026-05-21 22:50
📜 data.min.js
js
25.9 KB
2026-05-21 22:50
📜 date.js
js
176.3 KB
2026-05-21 22:50
📜 date.min.js
js
141.2 KB
2026-05-21 22:50
📜 deprecated.js
js
3 KB
2026-05-21 22:50
📜 deprecated.min.js
js
1.3 KB
2026-05-21 22:50
📜 dom-ready.js
js
1.5 KB
2026-05-21 22:50
📜 dom-ready.min.js
js
783 B
2026-05-21 22:50
📜 dom.js
js
34.6 KB
2026-05-21 22:50
📜 dom.min.js
js
12.6 KB
2026-05-21 22:50
📜 edit-post.js
js
117.4 KB
2026-05-21 22:50
📜 edit-post.min.js
js
49.1 KB
2026-05-21 22:50
📜 edit-site.js
js
1.7 MB
2026-05-21 22:50
📜 edit-site.min.js
js
684.4 KB
2026-05-21 22:50
📜 edit-widgets.js
js
160.2 KB
2026-05-21 22:50
📜 edit-widgets.min.js
js
61.8 KB
2026-05-21 22:50
📜 editor.js
js
2.5 MB
2026-05-21 22:50
📜 editor.min.js
js
1021.2 KB
2026-05-21 22:50
📜 element.js
js
27.9 KB
2026-05-21 22:50
📜 element.min.js
js
12.1 KB
2026-05-21 22:50
📜 escape-html.js
js
2.3 KB
2026-05-21 22:50
📜 escape-html.min.js
js
1 KB
2026-05-21 22:50
📜 format-library.js
js
73.3 KB
2026-05-21 22:50
📜 format-library.min.js
js
28.8 KB
2026-05-21 22:50
📜 hooks.js
js
12 KB
2026-05-21 22:50
📜 hooks.min.js
js
4.9 KB
2026-05-21 22:50
📜 html-entities.js
js
1.6 KB
2026-05-21 22:50
📜 html-entities.min.js
js
844 B
2026-05-21 22:50
📜 i18n.js
js
15.3 KB
2026-05-21 22:50
📜 i18n.min.js
js
5.6 KB
2026-05-21 22:50
📜 is-shallow-equal.js
js
2.7 KB
2026-05-21 22:50
📜 is-shallow-equal.min.js
js
1.1 KB
2026-05-21 22:50
📜 keyboard-shortcuts.js
js
9.7 KB
2026-05-21 22:50
📜 keyboard-shortcuts.min.js
js
3.4 KB
2026-05-21 22:50
📜 keycodes.js
js
8.3 KB
2026-05-21 22:50
📜 keycodes.min.js
js
2.9 KB
2026-05-21 22:50
📜 list-reusable-blocks.js
js
13.1 KB
2026-05-21 22:50
📜 list-reusable-blocks.min.js
js
5.2 KB
2026-05-21 22:50
📜 media-utils.js
js
637.1 KB
2026-05-21 22:50
📜 media-utils.min.js
js
237.6 KB
2026-05-21 22:50
📜 notices.js
js
10.1 KB
2026-05-21 22:50
📜 notices.min.js
js
4.3 KB
2026-05-21 22:50
📜 nux.js
js
10.3 KB
2026-05-21 22:50
📜 nux.min.js
js
3.9 KB
2026-05-21 22:50
📜 patterns.js
js
58.2 KB
2026-05-21 22:50
📜 patterns.min.js
js
21.6 KB
2026-05-21 22:50
📜 plugins.js
js
11.7 KB
2026-05-21 22:50
📜 plugins.min.js
js
4.7 KB
2026-05-21 22:50
📜 preferences-persistence.js
js
17.2 KB
2026-05-21 22:50
📜 preferences-persistence.min.js
js
5.5 KB
2026-05-21 22:50
📜 preferences.js
js
21.1 KB
2026-05-21 22:50
📜 preferences.min.js
js
7.7 KB
2026-05-21 22:50
📜 primitives.js
js
5.1 KB
2026-05-21 22:50
📜 primitives.min.js
js
1.9 KB
2026-05-21 22:50
📜 priority-queue.js
js
10 KB
2026-05-21 22:50
📜 priority-queue.min.js
js
3.3 KB
2026-05-21 22:50
📜 private-apis.js
js
4.1 KB
2026-05-21 22:50
📜 private-apis.min.js
js
2.6 KB
2026-05-21 22:50
📜 react-i18n.js
js
3.9 KB
2026-05-21 22:50
📜 react-i18n.min.js
js
1.5 KB
2026-05-21 22:50
📜 redux-routine.js
js
24.7 KB
2026-05-21 22:50
📜 redux-routine.min.js
js
9.6 KB
2026-05-21 22:50
📜 reusable-blocks.js
js
20.5 KB
2026-05-21 22:50
📜 reusable-blocks.min.js
js
7.2 KB
2026-05-21 22:50
📜 rich-text.js
js
97 KB
2026-05-21 22:50
📜 rich-text.min.js
js
39.9 KB
2026-05-21 22:50
📜 router.js
js
36.1 KB
2026-05-21 22:50
📜 router.min.js
js
14.1 KB
2026-05-21 22:50
📜 server-side-render.js
js
11 KB
2026-05-21 22:50
📜 server-side-render.min.js
js
3.9 KB
2026-05-21 22:50
📜 shortcode.js
js
8 KB
2026-05-21 22:50
📜 shortcode.min.js
js
3.2 KB
2026-05-21 22:50
📜 style-engine.js
js
17.6 KB
2026-05-21 22:50
📜 style-engine.min.js
js
6.4 KB
2026-05-21 22:50
📜 sync.js
js
359.4 KB
2026-05-21 22:50
📜 sync.min.js
js
118.1 KB
2026-05-21 22:50
📜 theme.js
js
127.6 KB
2026-05-21 22:50
📜 theme.min.js
js
56.1 KB
2026-05-21 22:50
📜 token-list.js
js
6.1 KB
2026-05-21 22:50
📜 token-list.min.js
js
1.6 KB
2026-05-21 22:50
📜 undo-manager.js
js
5.3 KB
2026-05-21 22:50
📜 undo-manager.min.js
js
1.7 KB
2026-05-21 22:50
📜 upload-media.js
js
55.7 KB
2026-05-21 22:50
📜 upload-media.min.js
js
23 KB
2026-05-21 22:50
📜 url.js
js
23.4 KB
2026-05-21 22:50
📜 url.min.js
js
10.1 KB
2026-05-21 22:50
📜 viewport.js
js
6.6 KB
2026-05-21 22:50
📜 viewport.min.js
js
2.2 KB
2026-05-21 22:50
📜 warning.js
js
1.5 KB
2026-05-21 22:50
📜 warning.min.js
js
720 B
2026-05-21 22:50
📜 widgets.js
js
50.1 KB
2026-05-21 22:50
📜 widgets.min.js
js
20.8 KB
2026-05-21 22:50
📜 wordcount.js
js
6.9 KB
2026-05-21 22:50
📜 wordcount.min.js
js
2.4 KB
2026-05-21 22:50