cloudcmd 19.9.0 → 19.9.1
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/ChangeLog +5 -0
- package/HELP.md +2 -1
- package/README.md +1 -1
- package/dist/cloudcmd.common.js +16 -6
- package/dist/cloudcmd.common.js.map +1 -1
- package/dist/sw.js +1 -1
- package/dist-dev/cloudcmd.common.js +1 -1
- package/dist-dev/sw.js +1 -1
- package/package.json +1 -1
package/ChangeLog
CHANGED
package/HELP.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Cloud Commander v19.9.
|
|
1
|
+
# Cloud Commander v19.9.1
|
|
2
2
|
|
|
3
3
|
### [Main][MainURL] [Blog][BlogURL] [Support][SupportURL] [Demo][DemoURL]
|
|
4
4
|
|
|
@@ -1114,6 +1114,7 @@ There are a lot of ways to be involved in `Cloud Commander` development:
|
|
|
1114
1114
|
|
|
1115
1115
|
## Version history
|
|
1116
1116
|
|
|
1117
|
+
- *2026.03.23*, **[v19.9.1](//github.com/coderaiser/cloudcmd/releases/tag/v19.9.1)**
|
|
1117
1118
|
- *2026.03.23*, **[v19.9.0](//github.com/coderaiser/cloudcmd/releases/tag/v19.9.0)**
|
|
1118
1119
|
- *2026.03.23*, **[v19.8.15](//github.com/coderaiser/cloudcmd/releases/tag/v19.8.15)**
|
|
1119
1120
|
- *2026.03.23*, **[v19.8.14](//github.com/coderaiser/cloudcmd/releases/tag/v19.8.14)**
|
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Cloud Commander v19.9.
|
|
1
|
+
# Cloud Commander v19.9.1 [![Build Status][BuildStatusIMGURL]][BuildStatusURL] [![Codacy][CodacyIMG]][CodacyURL] [![Gitter][GitterIMGURL]][GitterURL]
|
|
2
2
|
|
|
3
3
|
### [Main][MainURL] [Blog][BlogURL] [Support][SupportURL] [Demo][DemoURL]
|
|
4
4
|
|
package/dist/cloudcmd.common.js
CHANGED
|
@@ -10790,10 +10790,15 @@ var files = __webpack_require__(5907);
|
|
|
10790
10790
|
var cloudfunc = __webpack_require__(2518);
|
|
10791
10791
|
// EXTERNAL MODULE: ./client/dom/images.js
|
|
10792
10792
|
var dom_images = __webpack_require__(9732);
|
|
10793
|
+
// EXTERNAL MODULE: ./common/entity.js
|
|
10794
|
+
var entity = __webpack_require__(634);
|
|
10793
10795
|
;// ./client/modules/config/input.js
|
|
10794
10796
|
|
|
10795
|
-
const
|
|
10796
|
-
const
|
|
10797
|
+
const isBool = a => typeof a === 'boolean';
|
|
10798
|
+
const isString = a => typeof a === 'string';
|
|
10799
|
+
const {
|
|
10800
|
+
keys
|
|
10801
|
+
} = Object;
|
|
10797
10802
|
function getElementByName(selector, element) {
|
|
10798
10803
|
const str = `[data-name="js-${selector}"]`;
|
|
10799
10804
|
return element.querySelector(str);
|
|
@@ -10804,11 +10809,16 @@ const getName = element => {
|
|
|
10804
10809
|
};
|
|
10805
10810
|
const convert = config => {
|
|
10806
10811
|
const result = config;
|
|
10807
|
-
const
|
|
10808
|
-
const filtered = array.filter(isBool(config));
|
|
10809
|
-
for (const name of filtered) {
|
|
10812
|
+
for (const name of keys(config)) {
|
|
10810
10813
|
const item = config[name];
|
|
10811
|
-
|
|
10814
|
+
if (isBool(item)) {
|
|
10815
|
+
result[name] = setState(item);
|
|
10816
|
+
continue;
|
|
10817
|
+
}
|
|
10818
|
+
if (isString(item)) {
|
|
10819
|
+
result[name] = (0,entity/* encode */.l)(item);
|
|
10820
|
+
continue;
|
|
10821
|
+
}
|
|
10812
10822
|
}
|
|
10813
10823
|
return result;
|
|
10814
10824
|
};
|