2023-09-26 16:23:26 +02:00
|
|
|
"use strict";
|
|
|
|
(self["__WordPressPrivateInteractivityAPI__"] = self["__WordPressPrivateInteractivityAPI__"] || []).push([[81],{
|
2022-04-11 14:04:30 +02:00
|
|
|
|
2023-09-26 16:23:26 +02:00
|
|
|
/***/ 149:
|
|
|
|
/***/ (function(__unused_webpack_module, __unused_webpack___webpack_exports__, __webpack_require__) {
|
|
|
|
|
|
|
|
|
|
|
|
// EXTERNAL MODULE: ./node_modules/@wordpress/interactivity/src/index.js + 15 modules
|
|
|
|
var src = __webpack_require__(754);
|
2023-06-27 16:24:19 +02:00
|
|
|
;// CONCATENATED MODULE: ./node_modules/@wordpress/block-library/build-module/file/utils/index.js
|
2021-07-28 12:06:59 +02:00
|
|
|
/**
|
|
|
|
* Uses a combination of user agent matching and feature detection to determine whether
|
|
|
|
* the current browser supports rendering PDFs inline.
|
|
|
|
*
|
|
|
|
* @return {boolean} Whether or not the browser supports inline PDFs.
|
|
|
|
*/
|
|
|
|
const browserSupportsPdfs = () => {
|
|
|
|
// Most mobile devices include "Mobi" in their UA.
|
|
|
|
if (window.navigator.userAgent.indexOf('Mobi') > -1) {
|
|
|
|
return false;
|
2023-09-26 16:23:26 +02:00
|
|
|
}
|
2021-07-28 12:06:59 +02:00
|
|
|
|
2023-09-26 16:23:26 +02:00
|
|
|
// Android tablets are the noteable exception.
|
2021-07-28 12:06:59 +02:00
|
|
|
if (window.navigator.userAgent.indexOf('Android') > -1) {
|
|
|
|
return false;
|
2023-09-26 16:23:26 +02:00
|
|
|
}
|
2021-07-28 12:06:59 +02:00
|
|
|
|
2023-09-26 16:23:26 +02:00
|
|
|
// iPad pretends to be a Mac.
|
2021-07-28 12:06:59 +02:00
|
|
|
if (window.navigator.userAgent.indexOf('Macintosh') > -1 && window.navigator.maxTouchPoints && window.navigator.maxTouchPoints > 2) {
|
|
|
|
return false;
|
2023-09-26 16:23:26 +02:00
|
|
|
}
|
2021-07-28 12:06:59 +02:00
|
|
|
|
2023-09-26 16:23:26 +02:00
|
|
|
// IE only supports PDFs when there's an ActiveX object available for it.
|
2021-07-28 12:06:59 +02:00
|
|
|
if (!!(window.ActiveXObject || 'ActiveXObject' in window) && !(createActiveXObject('AcroPDF.PDF') || createActiveXObject('PDF.PdfCtrl'))) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
};
|
2023-09-26 16:23:26 +02:00
|
|
|
|
2021-07-28 12:06:59 +02:00
|
|
|
/**
|
|
|
|
* Helper function for creating ActiveX objects, catching any errors that are thrown
|
|
|
|
* when it's generated.
|
|
|
|
*
|
|
|
|
* @param {string} type The name of the ActiveX object to create.
|
|
|
|
* @return {window.ActiveXObject|undefined} The generated ActiveXObject, or null if it failed.
|
|
|
|
*/
|
|
|
|
const createActiveXObject = type => {
|
|
|
|
let ax;
|
|
|
|
try {
|
|
|
|
ax = new window.ActiveXObject(type);
|
|
|
|
} catch (e) {
|
|
|
|
ax = undefined;
|
|
|
|
}
|
|
|
|
return ax;
|
|
|
|
};
|
2023-09-26 16:23:26 +02:00
|
|
|
;// CONCATENATED MODULE: ./node_modules/@wordpress/block-library/build-module/file/view.js
|
2021-07-28 12:06:59 +02:00
|
|
|
/**
|
2023-09-26 16:23:26 +02:00
|
|
|
* WordPress dependencies
|
2021-07-28 12:06:59 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Internal dependencies
|
|
|
|
*/
|
|
|
|
|
2023-09-26 16:23:26 +02:00
|
|
|
(0,src/* store */.h)({
|
|
|
|
selectors: {
|
|
|
|
core: {
|
|
|
|
file: {
|
Update editor related npm packages for 6.4 RC3.
The npm packages needed update for 6.4 RC3.
Patch: https://github.com/WordPress/wordpress-develop/pull/5587.
This PR includes the following changes:
- Regression: [https://github.com/WordPress/gutenberg/pull/55553 Patterns: fix bug with authors and contributors not seeing user pattern categories].
- Bugfix: [https://github.com/WordPress/gutenberg/pull/55539 Query Loop:Disallow "enhanced pagination" with core blocks that may contain third-party blocks].
- Regression: [https://github.com/WordPress/gutenberg/pull/55667 File: Fix embedded PDF files in Safari].
- Regression: [https://github.com/WordPress/gutenberg/pull/55669 Ensure Term Description block is registered in core]
Props DAreRodz, luisherranz, poena, afercia, danieldudzic, hellofromtonya, siobhyb, mikachan, get_dave, scruffian, wildworks, glendaviesnz, ramonopoly, aaronrobertshaw.
See #59411.
Built from https://develop.svn.wordpress.org/trunk@57034
git-svn-id: http://core.svn.wordpress.org/trunk@56545 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-10-31 16:14:05 +01:00
|
|
|
hasPdfPreview: browserSupportsPdfs
|
2023-09-26 16:23:26 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
/***/ })
|
2021-07-28 12:06:59 +02:00
|
|
|
|
2023-09-26 16:23:26 +02:00
|
|
|
},
|
|
|
|
/******/ function(__webpack_require__) { // webpackRuntimeModules
|
|
|
|
/******/ var __webpack_exec__ = function(moduleId) { return __webpack_require__(__webpack_require__.s = moduleId); }
|
|
|
|
/******/ var __webpack_exports__ = (__webpack_exec__(149));
|
|
|
|
/******/ }
|
|
|
|
]);
|