@jupyterlab/apputils-extension
Advanced tools
Comparing version 4.2.4 to 4.2.5
@@ -564,2 +564,4 @@ /* ----------------------------------------------------------------------------- | ||
const autolink = setting.get('autolink').composite; | ||
const allowNamedProperties = setting.get('allowNamedProperties') | ||
.composite; | ||
if (allowedSchemes) { | ||
@@ -569,2 +571,3 @@ sanitizer.setAllowedSchemes(allowedSchemes); | ||
sanitizer.setAutolink(autolink); | ||
sanitizer.setAllowNamedProperties(allowNamedProperties); | ||
}; | ||
@@ -571,0 +574,0 @@ // Wait for the application to be restored and |
{ | ||
"name": "@jupyterlab/apputils-extension", | ||
"version": "4.2.4", | ||
"version": "4.2.5", | ||
"description": "JupyterLab - Application Utilities Extension", | ||
@@ -40,15 +40,15 @@ "homepage": "https://github.com/jupyterlab/jupyterlab", | ||
"dependencies": { | ||
"@jupyterlab/application": "^4.2.4", | ||
"@jupyterlab/apputils": "^4.3.4", | ||
"@jupyterlab/coreutils": "^6.2.4", | ||
"@jupyterlab/docregistry": "^4.2.4", | ||
"@jupyterlab/mainmenu": "^4.2.4", | ||
"@jupyterlab/rendermime-interfaces": "^3.10.4", | ||
"@jupyterlab/services": "^7.2.4", | ||
"@jupyterlab/settingregistry": "^4.2.4", | ||
"@jupyterlab/statedb": "^4.2.4", | ||
"@jupyterlab/statusbar": "^4.2.4", | ||
"@jupyterlab/translation": "^4.2.4", | ||
"@jupyterlab/ui-components": "^4.2.4", | ||
"@jupyterlab/workspaces": "^4.2.4", | ||
"@jupyterlab/application": "^4.2.5", | ||
"@jupyterlab/apputils": "^4.3.5", | ||
"@jupyterlab/coreutils": "^6.2.5", | ||
"@jupyterlab/docregistry": "^4.2.5", | ||
"@jupyterlab/mainmenu": "^4.2.5", | ||
"@jupyterlab/rendermime-interfaces": "^3.10.5", | ||
"@jupyterlab/services": "^7.2.5", | ||
"@jupyterlab/settingregistry": "^4.2.5", | ||
"@jupyterlab/statedb": "^4.2.5", | ||
"@jupyterlab/statusbar": "^4.2.5", | ||
"@jupyterlab/translation": "^4.2.5", | ||
"@jupyterlab/ui-components": "^4.2.5", | ||
"@jupyterlab/workspaces": "^4.2.5", | ||
"@lumino/algorithm": "^2.0.1", | ||
@@ -55,0 +55,0 @@ "@lumino/commands": "^2.3.0", |
@@ -22,2 +22,8 @@ { | ||
"default": true | ||
}, | ||
"allowNamedProperties": { | ||
"type": "boolean", | ||
"title": "Allow named properties", | ||
"description": "Whether to allow untrusted elements to include `name` and `id` attributes. These attributes are stripped by default to prevent DOM clobbering attacks.", | ||
"default": false | ||
} | ||
@@ -24,0 +30,0 @@ }, |
@@ -696,2 +696,4 @@ /* ----------------------------------------------------------------------------- | ||
const autolink = setting.get('autolink').composite as boolean; | ||
const allowNamedProperties = setting.get('allowNamedProperties') | ||
.composite as boolean; | ||
@@ -703,2 +705,3 @@ if (allowedSchemes) { | ||
sanitizer.setAutolink(autolink); | ||
sanitizer.setAllowNamedProperties(allowNamedProperties); | ||
}; | ||
@@ -705,0 +708,0 @@ |
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
307615
6333
Updated@jupyterlab/apputils@^4.3.5
Updated@jupyterlab/coreutils@^6.2.5
Updated@jupyterlab/mainmenu@^4.2.5
Updated@jupyterlab/services@^7.2.5
Updated@jupyterlab/statedb@^4.2.5
Updated@jupyterlab/statusbar@^4.2.5