@noah-libjs/components 0.0.49 → 0.0.50
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/a_chunks/index.js +2 -2
- package/package.json +4 -4
package/dist/a_chunks/index.js
CHANGED
|
@@ -605,13 +605,13 @@ function use_options(props) {
|
|
|
605
605
|
function process_frugal_local(props, changedValue) {
|
|
606
606
|
var frugal = props.frugal;
|
|
607
607
|
if (!frugal) return changedValue;
|
|
608
|
-
console.log('frugal_value local', changedValue[0])
|
|
608
|
+
// console.log('frugal_value local', changedValue[0])
|
|
609
609
|
return changedValue[0];
|
|
610
610
|
}
|
|
611
611
|
function process_frugal_remote(value, frugal) {
|
|
612
612
|
if (!frugal) return safe_json_parse_arr(value, value);
|
|
613
613
|
var frugal_value = safe_json_parse(value);
|
|
614
|
-
console.log('frugal_value remote', frugal_value)
|
|
614
|
+
// console.log('frugal_value remote', frugal_value)
|
|
615
615
|
if (isNil(frugal_value === null || frugal_value === void 0 ? void 0 : frugal_value.value)) return [];
|
|
616
616
|
return [frugal_value];
|
|
617
617
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@noah-libjs/components",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.50",
|
|
4
4
|
"description": "",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
@@ -38,12 +38,12 @@
|
|
|
38
38
|
"rollup-plugin-postcss": "^4.0.2"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@noah-libjs/request": "^0.0.
|
|
42
|
-
"@noah-libjs/utils": "^0.0.
|
|
41
|
+
"@noah-libjs/request": "^0.0.50",
|
|
42
|
+
"@noah-libjs/utils": "^0.0.50"
|
|
43
43
|
},
|
|
44
44
|
"publishConfig": {
|
|
45
45
|
"access": "public"
|
|
46
46
|
},
|
|
47
47
|
"license": "MIT",
|
|
48
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "d7a3ef40f91e9151067ef7c877fdbf1b52b66fdf"
|
|
49
49
|
}
|