PHP 8.2.31
Preview: a11y.js Size: 8.55 KB
/home/nshryvcy/himaltourism.com/wp-includes/js/dist/a11y.js

/******/ (function() { // webpackBootstrap
/******/ 	"use strict";
/******/ 	// The require scope
/******/ 	var __webpack_require__ = {};
/******/ 	
/************************************************************************/
/******/ 	/* webpack/runtime/compat get default export */
/******/ 	!function() {
/******/ 		// getDefaultExport function for compatibility with non-harmony modules
/******/ 		__webpack_require__.n = function(module) {
/******/ 			var getter = module && module.__esModule ?
/******/ 				function() { return module['default']; } :
/******/ 				function() { return module; };
/******/ 			__webpack_require__.d(getter, { a: getter });
/******/ 			return getter;
/******/ 		};
/******/ 	}();
/******/ 	
/******/ 	/* webpack/runtime/define property getters */
/******/ 	!function() {
/******/ 		// define getter functions for harmony exports
/******/ 		__webpack_require__.d = function(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 */
/******/ 	!function() {
/******/ 		__webpack_require__.o = function(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); }
/******/ 	}();
/******/ 	
/******/ 	/* webpack/runtime/make namespace object */
/******/ 	!function() {
/******/ 		// define __esModule on exports
/******/ 		__webpack_require__.r = function(exports) {
/******/ 			if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
/******/ 				Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
/******/ 			}
/******/ 			Object.defineProperty(exports, '__esModule', { value: true });
/******/ 		};
/******/ 	}();
/******/ 	
/************************************************************************/
var __webpack_exports__ = {};
// ESM COMPAT FLAG
__webpack_require__.r(__webpack_exports__);

// EXPORTS
__webpack_require__.d(__webpack_exports__, {
  "setup": function() { return /* binding */ setup; },
  "speak": function() { return /* binding */ speak; }
});

;// CONCATENATED MODULE: external ["wp","domReady"]
var external_wp_domReady_namespaceObject = window["wp"]["domReady"];
var external_wp_domReady_default = /*#__PURE__*/__webpack_require__.n(external_wp_domReady_namespaceObject);
;// CONCATENATED MODULE: external ["wp","i18n"]
var external_wp_i18n_namespaceObject = window["wp"]["i18n"];
;// CONCATENATED MODULE: ./node_modules/@wordpress/a11y/build-module/add-intro-text.js
/**
 * WordPress dependencies
 */

/**
 * Build the explanatory text to be placed before the aria live regions.
 *
 * This text is initially hidden from assistive technologies by using a `hidden`
 * HTML attribute which is then removed once a message fills the aria-live regions.
 *
 * @return {HTMLParagraphElement} The explanatory text HTML element.
 */

function addIntroText() {
  const introText = document.createElement('p');
  introText.id = 'a11y-speak-intro-text';
  introText.className = 'a11y-speak-intro-text';
  introText.textContent = (0,external_wp_i18n_namespaceObject.__)('Notifications');
  introText.setAttribute('style', 'position: absolute;' + 'margin: -1px;' + 'padding: 0;' + 'height: 1px;' + 'width: 1px;' + 'overflow: hidden;' + 'clip: rect(1px, 1px, 1px, 1px);' + '-webkit-clip-path: inset(50%);' + 'clip-path: inset(50%);' + 'border: 0;' + 'word-wrap: normal !important;');
  introText.setAttribute('hidden', 'hidden');
  const {
    body
  } = document;

  if (body) {
    body.appendChild(introText);
  }

  return introText;
}

;// CONCATENATED MODULE: ./node_modules/@wordpress/a11y/build-module/add-container.js
/**
 * Build the live regions markup.
 *
 * @param {string} [ariaLive] Value for the 'aria-live' attribute; default: 'polite'.
 *
 * @return {HTMLDivElement} The ARIA live region HTML element.
 */
function addContainer() {
  let ariaLive = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 'polite';
  const container = document.createElement('div');
  container.id = `a11y-speak-${ariaLive}`;
  container.className = 'a11y-speak-region';
  container.setAttribute('style', 'position: absolute;' + 'margin: -1px;' + 'padding: 0;' + 'height: 1px;' + 'width: 1px;' + 'overflow: hidden;' + 'clip: rect(1px, 1px, 1px, 1px);' + '-webkit-clip-path: inset(50%);' + 'clip-path: inset(50%);' + 'border: 0;' + 'word-wrap: normal !important;');
  container.setAttribute('aria-live', ariaLive);
  container.setAttribute('aria-relevant', 'additions text');
  container.setAttribute('aria-atomic', 'true');
  const {
    body
  } = document;

  if (body) {
    body.appendChild(container);
  }

  return container;
}

;// CONCATENATED MODULE: ./node_modules/@wordpress/a11y/build-module/clear.js
/**
 * Clears the a11y-speak-region elements and hides the explanatory text.
 */
function clear() {
  const regions = document.getElementsByClassName('a11y-speak-region');
  const introText = document.getElementById('a11y-speak-intro-text');

  for (let i = 0; i < regions.length; i++) {
    regions[i].textContent = '';
  } // Make sure the explanatory text is hidden from assistive technologies.


  if (introText) {
    introText.setAttribute('hidden', 'hidden');
  }
}

;// CONCATENATED MODULE: ./node_modules/@wordpress/a11y/build-module/filter-message.js
let previousMessage = '';
/**
 * Filter the message to be announced to the screenreader.
 *
 * @param {string} message The message to be announced.
 *
 * @return {string} The filtered message.
 */

function filterMessage(message) {
  /*
   * Strip HTML tags (if any) from the message string. Ideally, messages should
   * be simple strings, carefully crafted for specific use with A11ySpeak.
   * When re-using already existing strings this will ensure simple HTML to be
   * stripped out and replaced with a space. Browsers will collapse multiple
   * spaces natively.
   */
  message = message.replace(/<[^<>]+>/g, ' ');
  /*
   * Safari + VoiceOver don't announce repeated, identical strings. We use
   * a `no-break space` to force them to think identical strings are different.
   */

  if (previousMessage === message) {
    message += '\u00A0';
  }

  previousMessage = message;
  return message;
}

;// CONCATENATED MODULE: ./node_modules/@wordpress/a11y/build-module/index.js
/**
 * WordPress dependencies
 */

/**
 * Internal dependencies
 */





/**
 * Create the live regions.
 */

function setup() {
  const introText = document.getElementById('a11y-speak-intro-text');
  const containerAssertive = document.getElementById('a11y-speak-assertive');
  const containerPolite = document.getElementById('a11y-speak-polite');

  if (introText === null) {
    addIntroText();
  }

  if (containerAssertive === null) {
    addContainer('assertive');
  }

  if (containerPolite === null) {
    addContainer('polite');
  }
}
/**
 * Run setup on domReady.
 */

external_wp_domReady_default()(setup);
/**
 * Allows you to easily announce dynamic interface updates to screen readers using ARIA live regions.
 * This module is inspired by the `speak` function in `wp-a11y.js`.
 *
 * @param {string} message    The message to be announced by assistive technologies.
 * @param {string} [ariaLive] The politeness level for aria-live; default: 'polite'.
 *
 * @example
 * ```js
 * import { speak } from '@wordpress/a11y';
 *
 * // For polite messages that shouldn't interrupt what screen readers are currently announcing.
 * speak( 'The message you want to send to the ARIA live region' );
 *
 * // For assertive messages that should interrupt what screen readers are currently announcing.
 * speak( 'The message you want to send to the ARIA live region', 'assertive' );
 * ```
 */

function speak(message, ariaLive) {
  /*
   * Clear previous messages to allow repeated strings being read out and hide
   * the explanatory text from assistive technologies.
   */
  clear();
  message = filterMessage(message);
  const introText = document.getElementById('a11y-speak-intro-text');
  const containerAssertive = document.getElementById('a11y-speak-assertive');
  const containerPolite = document.getElementById('a11y-speak-polite');

  if (containerAssertive && ariaLive === 'assertive') {
    containerAssertive.textContent = message;
  } else if (containerPolite) {
    containerPolite.textContent = message;
  }
  /*
   * Make the explanatory text available to assistive technologies by removing
   * the 'hidden' HTML attribute.
   */


  if (introText) {
    introText.removeAttribute('hidden');
  }
}

(window.wp = window.wp || {}).a11y = __webpack_exports__;
/******/ })()
;

Directory Contents

Dirs: 2 × Files: 110

Name Size Perms Modified Actions
- drwxr-xr-x 2022-11-10 06:10:12
Edit Download
vendor DIR
- drwxr-xr-x 2023-04-04 05:42:20
Edit Download
8.55 KB lrw-r--r-- 2022-04-11 22:34:30
Edit Download
2.45 KB lrw-r--r-- 2022-04-11 22:34:30
Edit Download
31.69 KB lrw-r--r-- 2022-09-24 06:34:14
Edit Download
7.08 KB lrw-r--r-- 2022-09-24 06:34:14
Edit Download
21.46 KB lrw-r--r-- 2022-04-13 01:42:48
Edit Download
5.20 KB lrw-r--r-- 2022-04-13 01:42:48
Edit Download
15.89 KB lrw-r--r-- 2022-04-11 22:34:30
Edit Download
5.60 KB lrw-r--r-- 2022-04-11 22:34:30
Edit Download
3.72 KB lrw-r--r-- 2023-04-04 05:42:20
Edit Download
954 B lrw-r--r-- 2023-04-04 05:42:20
Edit Download
73.21 KB lrw-r--r-- 2024-12-30 06:23:12
Edit Download
21.39 KB lrw-r--r-- 2024-12-30 06:23:12
Edit Download
2.40 MB lrw-r--r-- 2024-12-30 06:23:12
Edit Download
856.03 KB lrw-r--r-- 2024-12-30 06:23:12
Edit Download
1.81 MB lrw-r--r-- 2024-12-30 06:23:12
Edit Download
767.30 KB lrw-r--r-- 2024-12-30 06:23:12
Edit Download
14.94 KB lrw-r--r-- 2023-04-04 05:42:19
Edit Download
2.39 KB lrw-r--r-- 2023-04-04 05:42:20
Edit Download
529.91 KB lrw-r--r-- 2024-12-30 06:23:12
Edit Download
166.23 KB lrw-r--r-- 2024-12-30 06:23:12
Edit Download
2.16 MB lrw-r--r-- 2024-12-30 06:23:12
Edit Download
644.93 KB lrw-r--r-- 2024-12-30 06:23:12
Edit Download
184.61 KB lrw-r--r-- 2024-12-30 06:23:12
Edit Download
36.20 KB lrw-r--r-- 2024-12-30 06:23:12
Edit Download
217.96 KB lrw-r--r-- 2023-04-04 05:42:20
Edit Download
54.39 KB lrw-r--r-- 2023-04-04 05:42:19
Edit Download
107.76 KB lrw-r--r-- 2024-12-30 06:23:12
Edit Download
38.87 KB lrw-r--r-- 2024-12-30 06:23:12
Edit Download
6.80 KB lrw-r--r-- 2022-04-11 22:34:30
Edit Download
1.59 KB lrw-r--r-- 2022-04-11 22:34:30
Edit Download
141.69 KB lrw-r--r-- 2024-12-30 06:23:12
Edit Download
25.48 KB lrw-r--r-- 2024-12-30 06:23:12
Edit Download
807.89 KB lrw-r--r-- 2024-12-30 06:23:12
Edit Download
775.44 KB lrw-r--r-- 2024-12-30 06:23:12
Edit Download
4.74 KB lrw-r--r-- 2022-04-11 22:34:30
Edit Download
812 B lrw-r--r-- 2022-04-11 22:34:30
Edit Download
2.45 KB lrw-r--r-- 2022-04-11 22:34:30
Edit Download
498 B lrw-r--r-- 2022-04-11 22:34:30
Edit Download
61.50 KB lrw-r--r-- 2023-04-04 05:42:20
Edit Download
12.81 KB lrw-r--r-- 2023-04-04 05:42:19
Edit Download
350.63 KB lrw-r--r-- 2024-12-30 06:23:12
Edit Download
122.79 KB lrw-r--r-- 2024-12-30 06:23:12
Edit Download
651.94 KB lrw-r--r-- 2024-12-30 06:23:12
Edit Download
239.39 KB lrw-r--r-- 2024-12-30 06:23:12
Edit Download
163.08 KB lrw-r--r-- 2024-12-30 06:23:12
Edit Download
57.30 KB lrw-r--r-- 2024-12-30 06:23:12
Edit Download
431.16 KB lrw-r--r-- 2024-12-30 06:23:12
Edit Download
148.84 KB lrw-r--r-- 2024-12-30 06:23:12
Edit Download
62.29 KB lrw-r--r-- 2023-04-04 05:42:19
Edit Download
12.63 KB lrw-r--r-- 2023-04-04 05:42:19
Edit Download
6.22 KB lrw-r--r-- 2022-09-21 02:13:30
Edit Download
1.11 KB lrw-r--r-- 2022-04-11 22:34:30
Edit Download
60.49 KB lrw-r--r-- 2023-04-04 05:42:19
Edit Download
20.75 KB lrw-r--r-- 2023-04-04 05:42:20
Edit Download
20.09 KB lrw-r--r-- 2022-04-13 01:42:48
Edit Download
4.79 KB lrw-r--r-- 2022-04-11 22:34:30
Edit Download
3.63 KB lrw-r--r-- 2022-04-13 01:42:48
Edit Download
837 B lrw-r--r-- 2022-04-11 22:34:30
Edit Download
50.63 KB lrw-r--r-- 2022-04-13 01:42:48
Edit Download
9.99 KB lrw-r--r-- 2022-09-24 06:25:30
Edit Download
4.33 KB lrw-r--r-- 2022-04-11 22:34:30
Edit Download
1.07 KB lrw-r--r-- 2022-04-11 22:34:30
Edit Download
22.38 KB lrw-r--r-- 2024-12-30 06:23:12
Edit Download
4.37 KB lrw-r--r-- 2024-12-30 06:23:12
Edit Download
29.57 KB lrw-r--r-- 2023-04-04 05:42:20
Edit Download
4.30 KB lrw-r--r-- 2023-04-04 05:42:20
Edit Download
25.78 KB lrw-r--r-- 2023-04-04 05:42:19
Edit Download
4.83 KB lrw-r--r-- 2023-04-04 05:42:19
Edit Download
22.52 KB lrw-r--r-- 2023-04-04 05:42:20
Edit Download
7.43 KB lrw-r--r-- 2023-04-04 05:42:19
Edit Download
19.59 KB lrw-r--r-- 2022-09-21 02:13:30
Edit Download
2.37 KB lrw-r--r-- 2022-09-21 02:13:30
Edit Download
21.21 KB lrw-r--r-- 2022-09-21 02:13:30
Edit Download
4.86 KB lrw-r--r-- 2022-09-21 02:13:30
Edit Download
19.72 KB lrw-r--r-- 2024-12-30 06:23:12
Edit Download
4.81 KB lrw-r--r-- 2024-12-30 06:23:12
Edit Download
34.15 KB lrw-r--r-- 2023-04-04 05:42:20
Edit Download
6.56 KB lrw-r--r-- 2022-09-16 03:15:40
Edit Download
12.12 KB lrw-r--r-- 2023-04-04 05:42:20
Edit Download
2.89 KB lrw-r--r-- 2023-04-04 05:42:20
Edit Download
9.47 KB lrw-r--r-- 2024-12-30 06:23:12
Edit Download
2.45 KB lrw-r--r-- 2024-12-30 06:23:12
Edit Download
13.99 KB lrw-r--r-- 2023-04-04 05:42:20
Edit Download
3.36 KB lrw-r--r-- 2023-04-04 05:42:20
Edit Download
8.43 KB lrw-r--r-- 2023-04-04 05:42:20
Edit Download
2.56 KB lrw-r--r-- 2023-04-04 05:42:20
Edit Download
23.83 KB lrw-r--r-- 2024-12-30 06:23:12
Edit Download
9.03 KB lrw-r--r-- 2024-12-30 06:23:12
Edit Download
18.09 KB lrw-r--r-- 2023-04-04 05:42:19
Edit Download
5.63 KB lrw-r--r-- 2023-04-04 05:42:19
Edit Download
128.69 KB lrw-r--r-- 2024-12-30 06:23:12
Edit Download
33.04 KB lrw-r--r-- 2024-12-30 06:23:12
Edit Download
15.14 KB lrw-r--r-- 2024-12-30 06:23:12
Edit Download
4.78 KB lrw-r--r-- 2024-12-30 06:23:12
Edit Download
16.62 KB lrw-r--r-- 2023-04-04 05:42:19
Edit Download
3.20 KB lrw-r--r-- 2022-09-21 02:13:30
Edit Download
16.84 KB lrw-r--r-- 2023-04-04 05:42:20
Edit Download
4.75 KB lrw-r--r-- 2023-04-04 05:42:19
Edit Download
6.83 KB lrw-r--r-- 2022-09-21 02:13:30
Edit Download
1.48 KB lrw-r--r-- 2022-09-21 02:13:30
Edit Download
32.79 KB lrw-r--r-- 2023-04-04 05:42:19
Edit Download
8.98 KB lrw-r--r-- 2023-04-04 05:42:19
Edit Download
11.14 KB lrw-r--r-- 2024-12-30 06:23:12
Edit Download
2.28 KB lrw-r--r-- 2024-12-30 06:23:12
Edit Download
2.51 KB lrw-r--r-- 2022-04-13 01:42:48
Edit Download
392 B lrw-r--r-- 2022-04-11 22:34:30
Edit Download
55.97 KB lrw-r--r-- 2024-12-30 06:23:12
Edit Download
21.52 KB lrw-r--r-- 2024-12-30 06:23:12
Edit Download
14.96 KB lrw-r--r-- 2022-09-21 02:13:30
Edit Download
2.57 KB lrw-r--r-- 2022-09-21 02:13:30
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).