@micromag/core 0.3.505 → 0.3.506
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/es/index.js +2 -2
- package/lib/index.js +2 -2
- package/package.json +2 -2
package/es/index.js
CHANGED
|
@@ -1301,7 +1301,7 @@ var MediasParser = /*#__PURE__*/function () {
|
|
|
1301
1301
|
_field$type = field.type,
|
|
1302
1302
|
type = _field$type === void 0 ? null : _field$type;
|
|
1303
1303
|
var path = [namePrefix, name].filter(function (it) {
|
|
1304
|
-
return it !== null;
|
|
1304
|
+
return it !== null && it !== '';
|
|
1305
1305
|
}).join('\\.');
|
|
1306
1306
|
var fieldDefinition = _objectSpread(_objectSpread({}, type !== null ? _this2.fieldsManager.getDefinition(type) : null), field);
|
|
1307
1307
|
|
|
@@ -1558,7 +1558,7 @@ var FontsParser = /*#__PURE__*/function () {
|
|
|
1558
1558
|
_field$type = field.type,
|
|
1559
1559
|
type = _field$type === void 0 ? null : _field$type;
|
|
1560
1560
|
var path = [namePrefix, name].filter(function (it) {
|
|
1561
|
-
return it !== null;
|
|
1561
|
+
return it !== null && it !== '';
|
|
1562
1562
|
}).join('\\.');
|
|
1563
1563
|
var fieldDefinition = _objectSpread(_objectSpread({}, type !== null ? _this2.fieldsManager.getDefinition(type) : null), field);
|
|
1564
1564
|
|
package/lib/index.js
CHANGED
|
@@ -1387,7 +1387,7 @@ var MediasParser = /*#__PURE__*/function () {
|
|
|
1387
1387
|
_field$type = field.type,
|
|
1388
1388
|
type = _field$type === void 0 ? null : _field$type;
|
|
1389
1389
|
var path = [namePrefix, name].filter(function (it) {
|
|
1390
|
-
return it !== null;
|
|
1390
|
+
return it !== null && it !== '';
|
|
1391
1391
|
}).join('\\.');
|
|
1392
1392
|
var fieldDefinition = _objectSpread(_objectSpread({}, type !== null ? _this2.fieldsManager.getDefinition(type) : null), field);
|
|
1393
1393
|
|
|
@@ -1644,7 +1644,7 @@ var FontsParser = /*#__PURE__*/function () {
|
|
|
1644
1644
|
_field$type = field.type,
|
|
1645
1645
|
type = _field$type === void 0 ? null : _field$type;
|
|
1646
1646
|
var path = [namePrefix, name].filter(function (it) {
|
|
1647
|
-
return it !== null;
|
|
1647
|
+
return it !== null && it !== '';
|
|
1648
1648
|
}).join('\\.');
|
|
1649
1649
|
var fieldDefinition = _objectSpread(_objectSpread({}, type !== null ? _this2.fieldsManager.getDefinition(type) : null), field);
|
|
1650
1650
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@micromag/core",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.506",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "",
|
|
6
6
|
"keywords": [
|
|
@@ -155,5 +155,5 @@
|
|
|
155
155
|
"access": "public",
|
|
156
156
|
"registry": "https://registry.npmjs.org/"
|
|
157
157
|
},
|
|
158
|
-
"gitHead": "
|
|
158
|
+
"gitHead": "b3bc0905b6e926384f26f5807551c772ccc55452"
|
|
159
159
|
}
|