@contentful/rich-text-react-renderer
Advanced tools
Comparing version 15.2.0 to 15.3.0
@@ -6,4 +6,12 @@ # Change Log | ||
# [15.3.0](https://github.com/contentful/rich-text/compare/v15.2.0...v15.3.0) (2021-09-06) | ||
**Note:** Version bump only for package @contentful/rich-text-react-renderer | ||
## [14.1.3](https://github.com/contentful/rich-text/compare/v14.1.2...v14.1.3) (2021-04-12) | ||
**Note:** Version bump only for package @contentful/rich-text-react-renderer |
@@ -233,3 +233,3 @@ 'use strict'; | ||
})('versions', []).push({ | ||
version: '3.16.1', | ||
version: '3.17.2', | ||
mode: 'global', | ||
@@ -781,13 +781,11 @@ copyright: '© 2021 Denis Pushkarev (zloirock.ru)' | ||
var iframeDocument; | ||
if (iframe.style) { | ||
iframe.style.display = 'none'; | ||
html.appendChild(iframe); | ||
// https://github.com/zloirock/core-js/issues/475 | ||
iframe.src = String(JS); | ||
iframeDocument = iframe.contentWindow.document; | ||
iframeDocument.open(); | ||
iframeDocument.write(scriptTag('document.F=Object')); | ||
iframeDocument.close(); | ||
return iframeDocument.F; | ||
} | ||
iframe.style.display = 'none'; | ||
html.appendChild(iframe); | ||
// https://github.com/zloirock/core-js/issues/475 | ||
iframe.src = String(JS); | ||
iframeDocument = iframe.contentWindow.document; | ||
iframeDocument.open(); | ||
iframeDocument.write(scriptTag('document.F=Object')); | ||
iframeDocument.close(); | ||
return iframeDocument.F; | ||
}; | ||
@@ -805,6 +803,7 @@ | ||
} catch (error) { /* ignore */ } | ||
NullProtoObject = document.domain && activeXDocument ? | ||
NullProtoObjectViaActiveX(activeXDocument) : // old IE | ||
NullProtoObjectViaIFrame() || | ||
NullProtoObjectViaActiveX(activeXDocument); // WSH | ||
NullProtoObject = typeof document != 'undefined' | ||
? document.domain && activeXDocument | ||
? NullProtoObjectViaActiveX(activeXDocument) // old IE | ||
: NullProtoObjectViaIFrame() | ||
: NullProtoObjectViaActiveX(activeXDocument); // WSH | ||
var length = enumBugKeys.length; | ||
@@ -922,2 +921,3 @@ while (length--) delete NullProtoObject[PROTOTYPE][enumBugKeys[length]]; | ||
BLOCKS["TABLE_CELL"] = "table-cell"; | ||
BLOCKS["TABLE_HEADER_CELL"] = "table-header-cell"; | ||
})(BLOCKS || (BLOCKS = {})); | ||
@@ -986,2 +986,3 @@ var BLOCKS$1 = BLOCKS; | ||
_a[BLOCKS$1.TABLE_CELL] = [BLOCKS$1.PARAGRAPH], | ||
_a[BLOCKS$1.TABLE_HEADER_CELL] = [BLOCKS$1.PARAGRAPH], | ||
_a); | ||
@@ -988,0 +989,0 @@ |
{ | ||
"name": "@contentful/rich-text-react-renderer", | ||
"version": "15.2.0", | ||
"version": "15.3.0", | ||
"main": "dist/rich-text-react-renderer.es5.js", | ||
@@ -27,3 +27,3 @@ "typings": "dist/types/index.d.ts", | ||
"dependencies": { | ||
"@contentful/rich-text-types": "^15.1.0" | ||
"@contentful/rich-text-types": "^15.3.0" | ||
}, | ||
@@ -51,3 +51,3 @@ "peerDependencies": { | ||
}, | ||
"gitHead": "09a15e9635f8b5f2dba0f10648e3ccdcb03d87e5" | ||
"gitHead": "8744fa8300f14a0ee224152fa8da3bbc6f085c69" | ||
} |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
192779
2106