hoodcms 6.0.4 → 6.0.7
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/js/admin.js +3 -3
- package/dist/js/app/PropertyService.d.ts +5 -0
- package/dist/js/app/PropertyService.js +35 -23
- package/dist/js/app.js +7 -7
- package/dist/js/app.property.js +2 -2
- package/dist/js/login.js +1 -1
- package/package.json +13 -13
- package/src/js/admin.js +68 -1
- package/src/js/admin.js.map +1 -1
- package/src/js/app.js +13 -10
- package/src/js/app.js.map +1 -1
- package/src/js/app.property.js +27 -15
- package/src/js/app.property.js.map +1 -1
- package/src/js/login.js +1 -1
- package/src/ts/admin.ts +2 -1
- package/src/ts/app/PropertyService.ts +182 -176
package/src/js/app.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* hoodcms v6.0.
|
|
2
|
+
* hoodcms v6.0.7
|
|
3
3
|
* A fully customisable content management system built in ASP.NET Core 5 & Bootstrap 5.
|
|
4
4
|
* Written by George Whysall, 2022
|
|
5
5
|
* Released under the GPL-3.0 License.
|
|
@@ -321,7 +321,7 @@
|
|
|
321
321
|
* For LGPL see License.txt in the project root for license information.
|
|
322
322
|
* For commercial licenses see https://www.tiny.cloud/
|
|
323
323
|
*
|
|
324
|
-
* Version: 5.10.
|
|
324
|
+
* Version: 5.10.3 (2022-02-09)
|
|
325
325
|
*/
|
|
326
326
|
|
|
327
327
|
(function (module) {
|
|
@@ -16610,8 +16610,11 @@
|
|
|
16610
16610
|
var children = from(node.childNodes);
|
|
16611
16611
|
if (contentEditable && !hasContentEditableState) {
|
|
16612
16612
|
var removed = removeNodeFormat(node);
|
|
16613
|
+
var currentNodeMatches = removed || exists(formatList, function (f) {
|
|
16614
|
+
return matchName$1(dom, node, f);
|
|
16615
|
+
});
|
|
16613
16616
|
var parentNode = node.parentNode;
|
|
16614
|
-
if (!
|
|
16617
|
+
if (!currentNodeMatches && isNonNullable(parentNode) && shouldExpandToSelector(format)) {
|
|
16615
16618
|
removeNodeFormat(parentNode);
|
|
16616
16619
|
}
|
|
16617
16620
|
}
|
|
@@ -29319,8 +29322,8 @@
|
|
|
29319
29322
|
suffix: null,
|
|
29320
29323
|
$: DomQuery,
|
|
29321
29324
|
majorVersion: '5',
|
|
29322
|
-
minorVersion: '10.
|
|
29323
|
-
releaseDate: '
|
|
29325
|
+
minorVersion: '10.3',
|
|
29326
|
+
releaseDate: '2022-02-09',
|
|
29324
29327
|
editors: legacyEditors,
|
|
29325
29328
|
i18n: I18n,
|
|
29326
29329
|
activeEditor: null,
|
|
@@ -31020,9 +31023,9 @@
|
|
|
31020
31023
|
};
|
|
31021
31024
|
|
|
31022
31025
|
/*!
|
|
31023
|
-
* Chart.js v3.7.
|
|
31026
|
+
* Chart.js v3.7.1
|
|
31024
31027
|
* https://www.chartjs.org
|
|
31025
|
-
* (c)
|
|
31028
|
+
* (c) 2022 Chart.js Contributors
|
|
31026
31029
|
* Released under the MIT License
|
|
31027
31030
|
*/
|
|
31028
31031
|
const requestAnimFrame = (function() {
|
|
@@ -33507,9 +33510,9 @@
|
|
|
33507
33510
|
}
|
|
33508
33511
|
|
|
33509
33512
|
/*!
|
|
33510
|
-
* Chart.js v3.7.
|
|
33513
|
+
* Chart.js v3.7.1
|
|
33511
33514
|
* https://www.chartjs.org
|
|
33512
|
-
* (c)
|
|
33515
|
+
* (c) 2022 Chart.js Contributors
|
|
33513
33516
|
* Released under the MIT License
|
|
33514
33517
|
*/
|
|
33515
33518
|
|
|
@@ -38777,7 +38780,7 @@
|
|
|
38777
38780
|
return false;
|
|
38778
38781
|
}
|
|
38779
38782
|
|
|
38780
|
-
var version = "3.7.
|
|
38783
|
+
var version = "3.7.1";
|
|
38781
38784
|
|
|
38782
38785
|
const KNOWN_POSITIONS = ['top', 'bottom', 'left', 'right', 'chartArea'];
|
|
38783
38786
|
function positionIsHorizontal(position, axis) {
|