@micromag/core 0.3.148 → 0.3.153
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/assets/css/vendor.css +1 -1
- package/es/components.js +17 -32
- package/es/contexts.js +283 -70
- package/es/hooks.js +476 -120
- package/es/index.js +1 -1
- package/lib/components.js +15 -30
- package/lib/contexts.js +291 -70
- package/lib/hooks.js +484 -119
- package/lib/index.js +1 -1
- package/package.json +2 -2
- package/scss/_theme.scss +1 -1
package/lib/index.js
CHANGED
|
@@ -1385,7 +1385,7 @@ var MediasParser = /*#__PURE__*/function () {
|
|
|
1385
1385
|
var newValue;
|
|
1386
1386
|
|
|
1387
1387
|
if (patternMatch) {
|
|
1388
|
-
newValue = isObject__default["default"](value) ? value : medias[value] ||
|
|
1388
|
+
newValue = isObject__default["default"](value) ? value : medias[value] || value;
|
|
1389
1389
|
} else {
|
|
1390
1390
|
newValue = isObject__default["default"](value) || isArray__default["default"](value) ? MediasParser.replacePathsWithMedias(value, medias, patterns, path) : value;
|
|
1391
1391
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@micromag/core",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.153",
|
|
4
4
|
"description": "",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"javascript"
|
|
@@ -132,5 +132,5 @@
|
|
|
132
132
|
"publishConfig": {
|
|
133
133
|
"access": "public"
|
|
134
134
|
},
|
|
135
|
-
"gitHead": "
|
|
135
|
+
"gitHead": "3832de24bc306639b162f9778b3250ce1d05b2aa"
|
|
136
136
|
}
|