@micromag/core 0.3.110 → 0.3.111
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/components.js +15 -1
- package/es/utils.js +11 -9
- package/lib/components.js +33 -19
- package/lib/utils.js +11 -9
- package/package.json +2 -2
package/es/components.js
CHANGED
|
@@ -8,7 +8,7 @@ import { PropTypes } from '@micromag/core';
|
|
|
8
8
|
import { FormattedMessage, defineMessages, FormattedDate, FormattedTime } from 'react-intl';
|
|
9
9
|
import { isMessage, getFieldFromPath, getComponentFromName, setFieldValue, validateFields, getDisplayName, pascalCase, convertStyleToString } from '@micromag/core/utils';
|
|
10
10
|
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
|
|
11
|
-
import { faAngleLeft
|
|
11
|
+
import { faAngleLeft } from '@fortawesome/free-solid-svg-icons/faAngleLeft';
|
|
12
12
|
import _toConsumableArray from '@babel/runtime/helpers/toConsumableArray';
|
|
13
13
|
import _slicedToArray from '@babel/runtime/helpers/slicedToArray';
|
|
14
14
|
import { useFieldsManager, useFieldComponent, FieldContextProvider, withModals, useModals, useUppy, withPanels, usePanels, ScreenSizeProvider, useScreenComponent, ScreenProvider, useScreenRenderContext, useScreenSize } from '@micromag/core/contexts';
|
|
@@ -18,14 +18,28 @@ import get from 'lodash/get';
|
|
|
18
18
|
import ReactDOM from 'react-dom';
|
|
19
19
|
import { DashboardModal } from '@uppy/react';
|
|
20
20
|
import isArray from 'lodash/isArray';
|
|
21
|
+
import { faAngleDown } from '@fortawesome/free-solid-svg-icons/faAngleDown';
|
|
22
|
+
import { faAngleUp } from '@fortawesome/free-solid-svg-icons/faAngleUp';
|
|
21
23
|
import dayjs from 'dayjs';
|
|
22
24
|
import throttle from 'lodash/throttle';
|
|
23
25
|
import isObject from 'lodash/isObject';
|
|
24
26
|
import { Helmet } from 'react-helmet';
|
|
25
27
|
import isString from 'lodash/isString';
|
|
26
28
|
import 'snake-case';
|
|
29
|
+
import { faAd } from '@fortawesome/free-solid-svg-icons/faAd';
|
|
30
|
+
import { faImage } from '@fortawesome/free-solid-svg-icons/faImage';
|
|
31
|
+
import { faMusic } from '@fortawesome/free-solid-svg-icons/faMusic';
|
|
27
32
|
import isNumber from 'lodash/isNumber';
|
|
33
|
+
import { faMapMarkerAlt } from '@fortawesome/free-solid-svg-icons/faMapMarkerAlt';
|
|
34
|
+
import { faMapMarkedAlt } from '@fortawesome/free-solid-svg-icons/faMapMarkedAlt';
|
|
35
|
+
import { faVideo } from '@fortawesome/free-solid-svg-icons/faVideo';
|
|
36
|
+
import { faPlay } from '@fortawesome/free-solid-svg-icons/faPlay';
|
|
37
|
+
import { faRedo } from '@fortawesome/free-solid-svg-icons/faRedo';
|
|
28
38
|
import { getSizeWithinBounds } from '@folklore/size';
|
|
39
|
+
import { faCommentDots } from '@fortawesome/free-solid-svg-icons/faCommentDots';
|
|
40
|
+
import { faCheck } from '@fortawesome/free-solid-svg-icons/faCheck';
|
|
41
|
+
import { faTimes } from '@fortawesome/free-solid-svg-icons/faTimes';
|
|
42
|
+
import { faPercent } from '@fortawesome/free-solid-svg-icons/faPercent';
|
|
29
43
|
import { useSpring } from '@react-spring/core';
|
|
30
44
|
import { animated } from '@react-spring/web';
|
|
31
45
|
|
package/es/utils.js
CHANGED
|
@@ -405,8 +405,8 @@ var getScreenExtraField = function getScreenExtraField(intl) {
|
|
|
405
405
|
};
|
|
406
406
|
|
|
407
407
|
function getShadowCoords(angle, distance) {
|
|
408
|
-
var x = Math.cos(angle) * distance;
|
|
409
|
-
var y = Math.sin(angle) * distance;
|
|
408
|
+
var x = (Math.cos(angle) * distance).toFixed(3);
|
|
409
|
+
var y = (Math.sin(angle) * distance).toFixed(3);
|
|
410
410
|
return {
|
|
411
411
|
x: x,
|
|
412
412
|
y: y
|
|
@@ -446,21 +446,23 @@ var getStyleFromShadow = function getStyleFromShadow(value) {
|
|
|
446
446
|
|
|
447
447
|
var _ref = value || {},
|
|
448
448
|
_ref$shadowAngle = _ref.shadowAngle,
|
|
449
|
-
shadowAngle = _ref$shadowAngle === void 0 ?
|
|
449
|
+
shadowAngle = _ref$shadowAngle === void 0 ? null : _ref$shadowAngle,
|
|
450
450
|
_ref$shadowDistance = _ref.shadowDistance,
|
|
451
|
-
shadowDistance = _ref$shadowDistance === void 0 ?
|
|
451
|
+
shadowDistance = _ref$shadowDistance === void 0 ? null : _ref$shadowDistance,
|
|
452
452
|
_ref$shadowBlur = _ref.shadowBlur,
|
|
453
|
-
shadowBlur = _ref$shadowBlur === void 0 ?
|
|
453
|
+
shadowBlur = _ref$shadowBlur === void 0 ? null : _ref$shadowBlur,
|
|
454
454
|
_ref$shadowColor = _ref.shadowColor,
|
|
455
|
-
shadowColor = _ref$shadowColor === void 0 ?
|
|
455
|
+
shadowColor = _ref$shadowColor === void 0 ? null : _ref$shadowColor;
|
|
456
456
|
|
|
457
|
-
|
|
457
|
+
if (!shadowAngle) return null;
|
|
458
|
+
var blur = shadowBlur || '0';
|
|
459
|
+
var color = getColorAsString(shadowColor) || '#000000';
|
|
458
460
|
|
|
459
461
|
var _getShadowCoords = getShadowCoords(shadowAngle, shadowDistance),
|
|
460
462
|
x = _getShadowCoords.x,
|
|
461
463
|
y = _getShadowCoords.y;
|
|
462
464
|
|
|
463
|
-
var boxShadow = "".concat(x, "px ").concat(y, "px ").concat(
|
|
465
|
+
var boxShadow = "".concat(x, "px ").concat(y, "px ").concat(blur, "px 0 ").concat(color);
|
|
464
466
|
return {
|
|
465
467
|
boxShadow: boxShadow
|
|
466
468
|
};
|
|
@@ -527,7 +529,7 @@ var getStyleFromBox = function getStyleFromBox(value) {
|
|
|
527
529
|
|
|
528
530
|
return _objectSpread(_objectSpread(_objectSpread(_objectSpread(_objectSpread(_objectSpread(_objectSpread(_objectSpread(_objectSpread({}, getStyleFromColor(backgroundColor, 'backgroundColor')), borderRadius !== null ? {
|
|
529
531
|
borderRadius: borderRadius
|
|
530
|
-
} : null), getStyleFromBorder(border)),
|
|
532
|
+
} : null), getStyleFromBorder(border)), getStyleFromShadow(shadow)), padding !== null || paddingValue !== null ? {
|
|
531
533
|
padding: padding || paddingValue
|
|
532
534
|
} : null), paddingTop !== null || paddingValueTop !== null ? {
|
|
533
535
|
paddingTop: paddingTop || paddingValueTop
|
package/lib/components.js
CHANGED
|
@@ -12,7 +12,7 @@ var core = require('@micromag/core');
|
|
|
12
12
|
var reactIntl = require('react-intl');
|
|
13
13
|
var utils = require('@micromag/core/utils');
|
|
14
14
|
var reactFontawesome = require('@fortawesome/react-fontawesome');
|
|
15
|
-
var
|
|
15
|
+
var faAngleLeft = require('@fortawesome/free-solid-svg-icons/faAngleLeft');
|
|
16
16
|
var _toConsumableArray = require('@babel/runtime/helpers/toConsumableArray');
|
|
17
17
|
var _slicedToArray = require('@babel/runtime/helpers/slicedToArray');
|
|
18
18
|
var contexts = require('@micromag/core/contexts');
|
|
@@ -22,14 +22,28 @@ var get = require('lodash/get');
|
|
|
22
22
|
var ReactDOM = require('react-dom');
|
|
23
23
|
var react = require('@uppy/react');
|
|
24
24
|
var isArray = require('lodash/isArray');
|
|
25
|
+
var faAngleDown = require('@fortawesome/free-solid-svg-icons/faAngleDown');
|
|
26
|
+
var faAngleUp = require('@fortawesome/free-solid-svg-icons/faAngleUp');
|
|
25
27
|
var dayjs = require('dayjs');
|
|
26
28
|
var throttle = require('lodash/throttle');
|
|
27
29
|
var isObject = require('lodash/isObject');
|
|
28
30
|
var reactHelmet = require('react-helmet');
|
|
29
31
|
var isString = require('lodash/isString');
|
|
30
32
|
require('snake-case');
|
|
33
|
+
var faAd = require('@fortawesome/free-solid-svg-icons/faAd');
|
|
34
|
+
var faImage = require('@fortawesome/free-solid-svg-icons/faImage');
|
|
35
|
+
var faMusic = require('@fortawesome/free-solid-svg-icons/faMusic');
|
|
31
36
|
var isNumber = require('lodash/isNumber');
|
|
37
|
+
var faMapMarkerAlt = require('@fortawesome/free-solid-svg-icons/faMapMarkerAlt');
|
|
38
|
+
var faMapMarkedAlt = require('@fortawesome/free-solid-svg-icons/faMapMarkedAlt');
|
|
39
|
+
var faVideo = require('@fortawesome/free-solid-svg-icons/faVideo');
|
|
40
|
+
var faPlay = require('@fortawesome/free-solid-svg-icons/faPlay');
|
|
41
|
+
var faRedo = require('@fortawesome/free-solid-svg-icons/faRedo');
|
|
32
42
|
var size = require('@folklore/size');
|
|
43
|
+
var faCommentDots = require('@fortawesome/free-solid-svg-icons/faCommentDots');
|
|
44
|
+
var faCheck = require('@fortawesome/free-solid-svg-icons/faCheck');
|
|
45
|
+
var faTimes = require('@fortawesome/free-solid-svg-icons/faTimes');
|
|
46
|
+
var faPercent = require('@fortawesome/free-solid-svg-icons/faPercent');
|
|
33
47
|
var core$1 = require('@react-spring/core');
|
|
34
48
|
var web = require('@react-spring/web');
|
|
35
49
|
|
|
@@ -313,7 +327,7 @@ var BackButton = function BackButton(_ref) {
|
|
|
313
327
|
className: classNames__default["default"](['px-2', _defineProperty__default["default"]({}, className, className)]),
|
|
314
328
|
size: "sm",
|
|
315
329
|
icon: /*#__PURE__*/React__default["default"].createElement(reactFontawesome.FontAwesomeIcon, {
|
|
316
|
-
icon:
|
|
330
|
+
icon: faAngleLeft.faAngleLeft,
|
|
317
331
|
size: "lg"
|
|
318
332
|
})
|
|
319
333
|
}, props));
|
|
@@ -1988,7 +2002,7 @@ var CollapsablePanel = function CollapsablePanel(_ref) {
|
|
|
1988
2002
|
withoutStyle: true,
|
|
1989
2003
|
className: classNames__default["default"]([styles$h.button, _defineProperty__default["default"]({}, buttonClassName, buttonClassName !== null)]),
|
|
1990
2004
|
icon: /*#__PURE__*/React__default["default"].createElement(reactFontawesome.FontAwesomeIcon, {
|
|
1991
|
-
icon: opened ?
|
|
2005
|
+
icon: opened ? faAngleUp.faAngleUp : faAngleDown.faAngleDown,
|
|
1992
2006
|
className: styles$h.icon
|
|
1993
2007
|
}),
|
|
1994
2008
|
iconPosition: "right",
|
|
@@ -3168,7 +3182,7 @@ var AdFrame = function AdFrame(_ref) {
|
|
|
3168
3182
|
height: height,
|
|
3169
3183
|
className: className
|
|
3170
3184
|
}, /*#__PURE__*/React__default["default"].createElement(reactFontawesome.FontAwesomeIcon, {
|
|
3171
|
-
icon:
|
|
3185
|
+
icon: faAd.faAd,
|
|
3172
3186
|
className: styles$c.icon
|
|
3173
3187
|
}));
|
|
3174
3188
|
};
|
|
@@ -3183,7 +3197,7 @@ var AdImage = function AdImage(_ref) {
|
|
|
3183
3197
|
height: height,
|
|
3184
3198
|
className: className
|
|
3185
3199
|
}, /*#__PURE__*/React__default["default"].createElement(reactFontawesome.FontAwesomeIcon, {
|
|
3186
|
-
icon:
|
|
3200
|
+
icon: faImage.faImage,
|
|
3187
3201
|
className: styles$c.icon
|
|
3188
3202
|
}));
|
|
3189
3203
|
};
|
|
@@ -3200,7 +3214,7 @@ var Audio = function Audio(_ref) {
|
|
|
3200
3214
|
height: height,
|
|
3201
3215
|
className: className
|
|
3202
3216
|
}, /*#__PURE__*/React__default["default"].createElement(reactFontawesome.FontAwesomeIcon, {
|
|
3203
|
-
icon:
|
|
3217
|
+
icon: faMusic.faMusic,
|
|
3204
3218
|
className: styles$c.icon
|
|
3205
3219
|
}));
|
|
3206
3220
|
};
|
|
@@ -3280,7 +3294,7 @@ var Image = function Image(_ref) {
|
|
|
3280
3294
|
height: height,
|
|
3281
3295
|
className: className
|
|
3282
3296
|
}, /*#__PURE__*/React__default["default"].createElement(reactFontawesome.FontAwesomeIcon, {
|
|
3283
|
-
icon:
|
|
3297
|
+
icon: faImage.faImage,
|
|
3284
3298
|
className: styles$c.icon
|
|
3285
3299
|
}));
|
|
3286
3300
|
};
|
|
@@ -3302,16 +3316,16 @@ var Map = function Map(props) {
|
|
|
3302
3316
|
height: "100%",
|
|
3303
3317
|
className: classNames__default["default"]([styles$a.container, _defineProperty__default["default"]({}, props.className, props.className !== null)])
|
|
3304
3318
|
}), /*#__PURE__*/React__default["default"].createElement(reactFontawesome.FontAwesomeIcon, {
|
|
3305
|
-
icon: props.withImages ?
|
|
3319
|
+
icon: props.withImages ? faImage.faImage : faMapMarkerAlt.faMapMarkerAlt,
|
|
3306
3320
|
className: styles$a.icon
|
|
3307
3321
|
}), /*#__PURE__*/React__default["default"].createElement(reactFontawesome.FontAwesomeIcon, {
|
|
3308
|
-
icon: props.withImages ?
|
|
3322
|
+
icon: props.withImages ? faImage.faImage : faMapMarkerAlt.faMapMarkerAlt,
|
|
3309
3323
|
className: styles$a.icon
|
|
3310
3324
|
}), /*#__PURE__*/React__default["default"].createElement(reactFontawesome.FontAwesomeIcon, {
|
|
3311
|
-
icon: props.withImages ?
|
|
3325
|
+
icon: props.withImages ? faImage.faImage : faMapMarkerAlt.faMapMarkerAlt,
|
|
3312
3326
|
className: styles$a.icon
|
|
3313
3327
|
}), /*#__PURE__*/React__default["default"].createElement(reactFontawesome.FontAwesomeIcon, {
|
|
3314
|
-
icon: props.withImages ?
|
|
3328
|
+
icon: props.withImages ? faImage.faImage : faMapMarkerAlt.faMapMarkerAlt,
|
|
3315
3329
|
className: styles$a.icon
|
|
3316
3330
|
}));
|
|
3317
3331
|
};
|
|
@@ -3323,7 +3337,7 @@ var MapPath = function MapPath(props) {
|
|
|
3323
3337
|
height: "70%",
|
|
3324
3338
|
className: classNames__default["default"]([props.className, styles$c.mapPath])
|
|
3325
3339
|
}), /*#__PURE__*/React__default["default"].createElement(reactFontawesome.FontAwesomeIcon, {
|
|
3326
|
-
icon:
|
|
3340
|
+
icon: faMapMarkedAlt.faMapMarkedAlt,
|
|
3327
3341
|
size: "lg",
|
|
3328
3342
|
className: styles$c.icon
|
|
3329
3343
|
}));
|
|
@@ -3400,7 +3414,7 @@ var Video = function Video(_ref) {
|
|
|
3400
3414
|
height: height,
|
|
3401
3415
|
className: className
|
|
3402
3416
|
}, /*#__PURE__*/React__default["default"].createElement(reactFontawesome.FontAwesomeIcon, {
|
|
3403
|
-
icon:
|
|
3417
|
+
icon: faVideo.faVideo,
|
|
3404
3418
|
className: styles$c.icon
|
|
3405
3419
|
}));
|
|
3406
3420
|
};
|
|
@@ -3417,7 +3431,7 @@ var Video360 = function Video360(_ref) {
|
|
|
3417
3431
|
className: classNames__default["default"]([styles$9.container, _defineProperty__default["default"]({}, className, className !== null)]),
|
|
3418
3432
|
boxClassName: styles$9.box
|
|
3419
3433
|
}, /*#__PURE__*/React__default["default"].createElement(reactFontawesome.FontAwesomeIcon, {
|
|
3420
|
-
icon:
|
|
3434
|
+
icon: faVideo.faVideo,
|
|
3421
3435
|
className: styles$9.icon
|
|
3422
3436
|
}), /*#__PURE__*/React__default["default"].createElement("div", {
|
|
3423
3437
|
className: styles$9.label
|
|
@@ -3434,10 +3448,10 @@ var VideoLoop = function VideoLoop(_ref) {
|
|
|
3434
3448
|
height: height,
|
|
3435
3449
|
className: className
|
|
3436
3450
|
}, /*#__PURE__*/React__default["default"].createElement(reactFontawesome.FontAwesomeIcon, {
|
|
3437
|
-
icon:
|
|
3451
|
+
icon: faPlay.faPlay,
|
|
3438
3452
|
className: styles$c.icon
|
|
3439
3453
|
}), /*#__PURE__*/React__default["default"].createElement(reactFontawesome.FontAwesomeIcon, {
|
|
3440
|
-
icon:
|
|
3454
|
+
icon: faRedo.faRedo,
|
|
3441
3455
|
className: styles$c.icon
|
|
3442
3456
|
}));
|
|
3443
3457
|
};
|
|
@@ -3761,7 +3775,7 @@ var Conversation = function Conversation() {
|
|
|
3761
3775
|
className: classNames__default["default"]([styles$4.message, styles$4["placeholderMessage".concat(idx)]])
|
|
3762
3776
|
});
|
|
3763
3777
|
}), /*#__PURE__*/React__default["default"].createElement(reactFontawesome.FontAwesomeIcon, {
|
|
3764
|
-
icon:
|
|
3778
|
+
icon: faCommentDots.faCommentDots,
|
|
3765
3779
|
className: styles$4.icon
|
|
3766
3780
|
}));
|
|
3767
3781
|
};
|
|
@@ -3799,7 +3813,7 @@ var Answer$1 = function Answer(_ref) {
|
|
|
3799
3813
|
className: styles$3.answer
|
|
3800
3814
|
}, /*#__PURE__*/React__default["default"].createElement(reactFontawesome.FontAwesomeIcon, {
|
|
3801
3815
|
className: styles$3.answerIcon,
|
|
3802
|
-
icon: good ?
|
|
3816
|
+
icon: good ? faCheck.faCheck : faTimes.faTimes
|
|
3803
3817
|
})), /*#__PURE__*/React__default["default"].createElement(PlaceholderBlock, {
|
|
3804
3818
|
outline: true,
|
|
3805
3819
|
width: width,
|
|
@@ -3833,7 +3847,7 @@ var Answer = function Answer(_ref) {
|
|
|
3833
3847
|
className: styles$2.percent
|
|
3834
3848
|
}, /*#__PURE__*/React__default["default"].createElement(reactFontawesome.FontAwesomeIcon, {
|
|
3835
3849
|
className: styles$2.percentIcon,
|
|
3836
|
-
icon:
|
|
3850
|
+
icon: faPercent.faPercent
|
|
3837
3851
|
})));
|
|
3838
3852
|
};
|
|
3839
3853
|
|
package/lib/utils.js
CHANGED
|
@@ -422,8 +422,8 @@ var getScreenExtraField = function getScreenExtraField(intl) {
|
|
|
422
422
|
};
|
|
423
423
|
|
|
424
424
|
function getShadowCoords(angle, distance) {
|
|
425
|
-
var x = Math.cos(angle) * distance;
|
|
426
|
-
var y = Math.sin(angle) * distance;
|
|
425
|
+
var x = (Math.cos(angle) * distance).toFixed(3);
|
|
426
|
+
var y = (Math.sin(angle) * distance).toFixed(3);
|
|
427
427
|
return {
|
|
428
428
|
x: x,
|
|
429
429
|
y: y
|
|
@@ -463,21 +463,23 @@ var getStyleFromShadow = function getStyleFromShadow(value) {
|
|
|
463
463
|
|
|
464
464
|
var _ref = value || {},
|
|
465
465
|
_ref$shadowAngle = _ref.shadowAngle,
|
|
466
|
-
shadowAngle = _ref$shadowAngle === void 0 ?
|
|
466
|
+
shadowAngle = _ref$shadowAngle === void 0 ? null : _ref$shadowAngle,
|
|
467
467
|
_ref$shadowDistance = _ref.shadowDistance,
|
|
468
|
-
shadowDistance = _ref$shadowDistance === void 0 ?
|
|
468
|
+
shadowDistance = _ref$shadowDistance === void 0 ? null : _ref$shadowDistance,
|
|
469
469
|
_ref$shadowBlur = _ref.shadowBlur,
|
|
470
|
-
shadowBlur = _ref$shadowBlur === void 0 ?
|
|
470
|
+
shadowBlur = _ref$shadowBlur === void 0 ? null : _ref$shadowBlur,
|
|
471
471
|
_ref$shadowColor = _ref.shadowColor,
|
|
472
|
-
shadowColor = _ref$shadowColor === void 0 ?
|
|
472
|
+
shadowColor = _ref$shadowColor === void 0 ? null : _ref$shadowColor;
|
|
473
473
|
|
|
474
|
-
|
|
474
|
+
if (!shadowAngle) return null;
|
|
475
|
+
var blur = shadowBlur || '0';
|
|
476
|
+
var color = getColorAsString(shadowColor) || '#000000';
|
|
475
477
|
|
|
476
478
|
var _getShadowCoords = getShadowCoords(shadowAngle, shadowDistance),
|
|
477
479
|
x = _getShadowCoords.x,
|
|
478
480
|
y = _getShadowCoords.y;
|
|
479
481
|
|
|
480
|
-
var boxShadow = "".concat(x, "px ").concat(y, "px ").concat(
|
|
482
|
+
var boxShadow = "".concat(x, "px ").concat(y, "px ").concat(blur, "px 0 ").concat(color);
|
|
481
483
|
return {
|
|
482
484
|
boxShadow: boxShadow
|
|
483
485
|
};
|
|
@@ -544,7 +546,7 @@ var getStyleFromBox = function getStyleFromBox(value) {
|
|
|
544
546
|
|
|
545
547
|
return _objectSpread__default["default"](_objectSpread__default["default"](_objectSpread__default["default"](_objectSpread__default["default"](_objectSpread__default["default"](_objectSpread__default["default"](_objectSpread__default["default"](_objectSpread__default["default"](_objectSpread__default["default"]({}, getStyleFromColor(backgroundColor, 'backgroundColor')), borderRadius !== null ? {
|
|
546
548
|
borderRadius: borderRadius
|
|
547
|
-
} : null), getStyleFromBorder(border)),
|
|
549
|
+
} : null), getStyleFromBorder(border)), getStyleFromShadow(shadow)), padding !== null || paddingValue !== null ? {
|
|
548
550
|
padding: padding || paddingValue
|
|
549
551
|
} : null), paddingTop !== null || paddingValueTop !== null ? {
|
|
550
552
|
paddingTop: paddingTop || paddingValueTop
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@micromag/core",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.111",
|
|
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": "0b8e0748efe102dae09d162dc4f06a0b0797ea35"
|
|
136
136
|
}
|