pacem 0.60.1 → 0.60.2-voronoy
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/css/pacem-dark-content.min.css +1 -1
- package/dist/css/pacem-dark-shell.min.css +1 -1
- package/dist/css/pacem-dark.min.css +1 -1
- package/dist/css/pacem-light-content.min.css +1 -1
- package/dist/css/pacem-light-shell.min.css +1 -1
- package/dist/css/pacem-light.min.css +1 -1
- package/dist/css/pacem-phousys-content.min.css +1 -1
- package/dist/css/pacem-phousys-shell.min.css +1 -1
- package/dist/css/pacem-phousys.min.css +1 -1
- package/dist/js/azure-maps.d.ts +1 -1
- package/dist/js/pacem-2d.d.ts +1 -1
- package/dist/js/pacem-2d.js +1 -1
- package/dist/js/pacem-2d.min.js +1 -1
- package/dist/js/pacem-3d.d.ts +1 -1
- package/dist/js/pacem-3d.js +1 -1
- package/dist/js/pacem-3d.min.js +1 -1
- package/dist/js/pacem-charts.d.ts +1 -1
- package/dist/js/pacem-charts.js +1 -1
- package/dist/js/pacem-charts.min.js +1 -1
- package/dist/js/pacem-cms.d.ts +1 -1
- package/dist/js/pacem-cms.js +1 -1
- package/dist/js/pacem-cms.min.js +1 -1
- package/dist/js/pacem-core.d.ts +2 -1
- package/dist/js/pacem-core.js +7 -2
- package/dist/js/pacem-core.min.js +2 -2
- package/dist/js/pacem-foundation.d.ts +1 -1
- package/dist/js/pacem-foundation.js +1 -1
- package/dist/js/pacem-foundation.min.js +1 -1
- package/dist/js/pacem-fx.d.ts +1 -1
- package/dist/js/pacem-fx.js +1 -1
- package/dist/js/pacem-fx.min.js +1 -1
- package/dist/js/pacem-logging.d.ts +1 -1
- package/dist/js/pacem-logging.js +1 -1
- package/dist/js/pacem-logging.min.js +1 -1
- package/dist/js/pacem-maps.d.ts +1 -1
- package/dist/js/pacem-maps.js +1 -1
- package/dist/js/pacem-maps.min.js +1 -1
- package/dist/js/pacem-media.d.ts +1 -1
- package/dist/js/pacem-media.js +1 -1
- package/dist/js/pacem-media.min.js +1 -1
- package/dist/js/pacem-networking.d.ts +1 -1
- package/dist/js/pacem-networking.js +1 -1
- package/dist/js/pacem-networking.min.js +1 -1
- package/dist/js/pacem-numerical.d.ts +36 -9
- package/dist/js/pacem-numerical.js +194 -48
- package/dist/js/pacem-numerical.min.js +2 -2
- package/dist/js/pacem-plus.d.ts +1 -1
- package/dist/js/pacem-plus.js +1 -1
- package/dist/js/pacem-plus.min.js +1 -1
- package/dist/js/pacem-scaffolding.d.ts +1 -1
- package/dist/js/pacem-scaffolding.js +1 -1
- package/dist/js/pacem-scaffolding.min.js +1 -1
- package/dist/js/pacem-ui.d.ts +1 -1
- package/dist/js/pacem-ui.js +1 -1
- package/dist/js/pacem-ui.min.js +1 -1
- package/dist/js/swagger-types.d.ts +1 -1
- package/package.json +1 -1
package/dist/js/azure-maps.d.ts
CHANGED
package/dist/js/pacem-2d.d.ts
CHANGED
package/dist/js/pacem-2d.js
CHANGED
package/dist/js/pacem-2d.min.js
CHANGED
package/dist/js/pacem-3d.d.ts
CHANGED
package/dist/js/pacem-3d.js
CHANGED
package/dist/js/pacem-3d.min.js
CHANGED
package/dist/js/pacem-charts.js
CHANGED
package/dist/js/pacem-cms.d.ts
CHANGED
package/dist/js/pacem-cms.js
CHANGED
package/dist/js/pacem-cms.min.js
CHANGED
package/dist/js/pacem-core.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* pacem v0.60.
|
|
2
|
+
* pacem v0.60.2-voronoy (https://js.pacem.it)
|
|
3
3
|
* Copyright 2026 Pacem (https://pacem.it)
|
|
4
4
|
* Licensed under Apache-2.0
|
|
5
5
|
*/
|
|
@@ -1353,6 +1353,7 @@ declare namespace Pacem.Components {
|
|
|
1353
1353
|
protected sanitize(html: string): string | Node;
|
|
1354
1354
|
}
|
|
1355
1355
|
class PacemSafeContentElement extends PacemContentElement {
|
|
1356
|
+
private _sanitizeLegacy;
|
|
1356
1357
|
protected sanitize(html: string | Node): string | Node;
|
|
1357
1358
|
}
|
|
1358
1359
|
}
|
package/dist/js/pacem-core.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* pacem v0.60.
|
|
2
|
+
* pacem v0.60.2-voronoy (https://js.pacem.it)
|
|
3
3
|
* Copyright 2026 Pacem (https://pacem.it)
|
|
4
4
|
* Licensed under Apache-2.0
|
|
5
5
|
*/
|
|
@@ -5055,7 +5055,7 @@ var Pacem;
|
|
|
5055
5055
|
}
|
|
5056
5056
|
Components.PacemUnsafeContentElement = PacemUnsafeContentElement;
|
|
5057
5057
|
class PacemSafeContentElement extends PacemContentElement {
|
|
5058
|
-
|
|
5058
|
+
_sanitizeLegacy(html) {
|
|
5059
5059
|
if (Pacem.Utils.isNullOrEmpty(html)) {
|
|
5060
5060
|
return html;
|
|
5061
5061
|
}
|
|
@@ -5077,6 +5077,11 @@ var Pacem;
|
|
|
5077
5077
|
return (html || '').toString().replace(scriptBlockPattern, '');
|
|
5078
5078
|
}
|
|
5079
5079
|
}
|
|
5080
|
+
sanitize(html) {
|
|
5081
|
+
// TODO: implement by using (when available in dom library)
|
|
5082
|
+
// https://developer.mozilla.org/en-US/docs/Web/API/Sanitizer/Sanitizer
|
|
5083
|
+
return this._sanitizeLegacy(html);
|
|
5084
|
+
}
|
|
5080
5085
|
}
|
|
5081
5086
|
Components.PacemSafeContentElement = PacemSafeContentElement;
|
|
5082
5087
|
})(Components = Pacem.Components || (Pacem.Components = {}));
|