mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-08 20:01:12 +01:00
d4a8067885
This updates the following dependencies: - `@pmmmwh/react-refresh-webpack-plugin` from `0.5.5` to `0.5.11`. - `autoprefixer` from `10.4.16` to `10.4.17`. - `copy-webpack-plugin` from `11.0.0` to `12.0.2`. - `cssnano` from `6.0.1` to `6.0.3`. - `dotenv` from `16.3.1` to `16.4.4`. - `dotenv-expand` from `10.0.0` to `11.0.3`. - `postcss` from `8.4.31` to `8.4.35`. - `sass` from `1.69.3` to `1.70.0`. - `sinon` from `16.0.3` to `16.1.3`. - `source-map-loader` from `4.0.1` to `5.0.0`. - `terser-webpack-plugin` from `5.3.9` to `5.3.10`. - `wait-on` from `7.0.1` to `7.2.0`. - `webpack` from `5.89.0` to `5.90.2`. Additionally, `npm audit fix` has been run. See #59658. Built from https://develop.svn.wordpress.org/trunk@57635 git-svn-id: http://core.svn.wordpress.org/trunk@57136 1a063a9b-81f0-0310-95a4-ce76da25c4cd
113 lines
3.9 KiB
JavaScript
113 lines
3.9 KiB
JavaScript
import * as __WEBPACK_EXTERNAL_MODULE__wordpress_interactivity_8e89b257__ from "@wordpress/interactivity";
|
|
/******/ // The require scope
|
|
/******/ var __webpack_require__ = {};
|
|
/******/
|
|
/************************************************************************/
|
|
/******/ /* webpack/runtime/define property getters */
|
|
/******/ (() => {
|
|
/******/ // define getter functions for harmony exports
|
|
/******/ __webpack_require__.d = (exports, definition) => {
|
|
/******/ for(var key in definition) {
|
|
/******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
|
|
/******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
|
|
/******/ }
|
|
/******/ }
|
|
/******/ };
|
|
/******/ })();
|
|
/******/
|
|
/******/ /* webpack/runtime/hasOwnProperty shorthand */
|
|
/******/ (() => {
|
|
/******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
|
|
/******/ })();
|
|
/******/
|
|
/************************************************************************/
|
|
var __webpack_exports__ = {};
|
|
|
|
;// CONCATENATED MODULE: external "@wordpress/interactivity"
|
|
var x = (y) => {
|
|
var x = {}; __webpack_require__.d(x, y); return x
|
|
}
|
|
var y = (x) => (() => (x))
|
|
const interactivity_namespaceObject = x({ ["getContext"]: () => (__WEBPACK_EXTERNAL_MODULE__wordpress_interactivity_8e89b257__.getContext), ["getElement"]: () => (__WEBPACK_EXTERNAL_MODULE__wordpress_interactivity_8e89b257__.getElement), ["store"]: () => (__WEBPACK_EXTERNAL_MODULE__wordpress_interactivity_8e89b257__.store) });
|
|
;// CONCATENATED MODULE: ./node_modules/@wordpress/block-library/build-module/search/view.js
|
|
/**
|
|
* WordPress dependencies
|
|
*/
|
|
|
|
const {
|
|
actions
|
|
} = (0,interactivity_namespaceObject.store)('core/search', {
|
|
state: {
|
|
get ariaLabel() {
|
|
const {
|
|
isSearchInputVisible,
|
|
ariaLabelCollapsed,
|
|
ariaLabelExpanded
|
|
} = (0,interactivity_namespaceObject.getContext)();
|
|
return isSearchInputVisible ? ariaLabelExpanded : ariaLabelCollapsed;
|
|
},
|
|
get ariaControls() {
|
|
const {
|
|
isSearchInputVisible,
|
|
inputId
|
|
} = (0,interactivity_namespaceObject.getContext)();
|
|
return isSearchInputVisible ? null : inputId;
|
|
},
|
|
get type() {
|
|
const {
|
|
isSearchInputVisible
|
|
} = (0,interactivity_namespaceObject.getContext)();
|
|
return isSearchInputVisible ? 'submit' : 'button';
|
|
},
|
|
get tabindex() {
|
|
const {
|
|
isSearchInputVisible
|
|
} = (0,interactivity_namespaceObject.getContext)();
|
|
return isSearchInputVisible ? '0' : '-1';
|
|
}
|
|
},
|
|
actions: {
|
|
openSearchInput(event) {
|
|
const ctx = (0,interactivity_namespaceObject.getContext)();
|
|
const {
|
|
ref
|
|
} = (0,interactivity_namespaceObject.getElement)();
|
|
if (!ctx.isSearchInputVisible) {
|
|
event.preventDefault();
|
|
ctx.isSearchInputVisible = true;
|
|
ref.parentElement.querySelector('input').focus();
|
|
}
|
|
},
|
|
closeSearchInput() {
|
|
const ctx = (0,interactivity_namespaceObject.getContext)();
|
|
ctx.isSearchInputVisible = false;
|
|
},
|
|
handleSearchKeydown(event) {
|
|
const {
|
|
ref
|
|
} = (0,interactivity_namespaceObject.getElement)();
|
|
// If Escape close the menu.
|
|
if (event?.key === 'Escape') {
|
|
actions.closeSearchInput();
|
|
ref.querySelector('button').focus();
|
|
}
|
|
},
|
|
handleSearchFocusout(event) {
|
|
const {
|
|
ref
|
|
} = (0,interactivity_namespaceObject.getElement)();
|
|
// If focus is outside search form, and in the document, close menu
|
|
// event.target === The element losing focus
|
|
// event.relatedTarget === The element receiving focus (if any)
|
|
// When focusout is outside the document,
|
|
// `window.document.activeElement` doesn't change.
|
|
if (!ref.contains(event.relatedTarget) && event.target !== window.document.activeElement) {
|
|
actions.closeSearchInput();
|
|
}
|
|
}
|
|
}
|
|
}, {
|
|
lock: true
|
|
});
|
|
|