@optimiser/common 1.0.448 → 1.0.449
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/lib/utility.js +19 -7
- package/package.json +1 -1
package/dist/lib/utility.js
CHANGED
|
@@ -80,6 +80,15 @@ var __rest = (this && this.__rest) || function (s, e) {
|
|
|
80
80
|
}
|
|
81
81
|
return t;
|
|
82
82
|
};
|
|
83
|
+
var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
|
|
84
|
+
if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
|
|
85
|
+
if (ar || !(i in from)) {
|
|
86
|
+
if (!ar) ar = Array.prototype.slice.call(from, 0, i);
|
|
87
|
+
ar[i] = from[i];
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
return to.concat(ar || Array.prototype.slice.call(from));
|
|
91
|
+
};
|
|
83
92
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
84
93
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
85
94
|
};
|
|
@@ -5035,18 +5044,21 @@ function IsAnotherObjectField(pageData, fieldName) {
|
|
|
5035
5044
|
return false;
|
|
5036
5045
|
}
|
|
5037
5046
|
var CustomSanitizeHtml = function (dirtyHtml, uiDataType) {
|
|
5038
|
-
// Define default sanitization options
|
|
5039
5047
|
var defaultOptions = {
|
|
5040
|
-
allowedTags: sanitize_html_1.default.defaults.allowedTags ||
|
|
5041
|
-
|
|
5048
|
+
allowedTags: __spreadArray(__spreadArray([], (sanitize_html_1.default.defaults.allowedTags || []), true), [
|
|
5049
|
+
'img' //allow img tag qpc-13026
|
|
5050
|
+
], false),
|
|
5051
|
+
allowedAttributes: {
|
|
5052
|
+
img: ['src', 'alt', 'title', 'width', 'height'],
|
|
5053
|
+
a: ['href', 'name', 'target']
|
|
5054
|
+
},
|
|
5055
|
+
allowedSchemes: ['http', 'https', 'data'], // allow base64 images if needed
|
|
5042
5056
|
};
|
|
5043
|
-
// Determine sanitization options based on uiDataType
|
|
5044
5057
|
var sanitizeOptions = (uiDataType === 'texteditor') ? defaultOptions : {};
|
|
5045
5058
|
try {
|
|
5046
|
-
// Sanitize the HTML content
|
|
5047
5059
|
var sanitizedHtmlContent = (0, sanitize_html_1.default)(dirtyHtml, sanitizeOptions);
|
|
5048
5060
|
if (uiDataType === 'texteditor') {
|
|
5049
|
-
return sanitizedHtmlContent;
|
|
5061
|
+
return sanitizedHtmlContent;
|
|
5050
5062
|
}
|
|
5051
5063
|
return sanitizedHtmlContent
|
|
5052
5064
|
.replace(/&/g, '&')
|
|
@@ -5055,7 +5067,7 @@ var CustomSanitizeHtml = function (dirtyHtml, uiDataType) {
|
|
|
5055
5067
|
}
|
|
5056
5068
|
catch (error) {
|
|
5057
5069
|
console.error('Sanitization failed:', error);
|
|
5058
|
-
return '';
|
|
5070
|
+
return '';
|
|
5059
5071
|
}
|
|
5060
5072
|
};
|
|
5061
5073
|
/*
|