@king-design/react 2.1.1 → 2.1.3

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.
@@ -7,7 +7,7 @@ import _asyncToGenerator from "@babel/runtime-corejs3/helpers/asyncToGenerator";
7
7
 
8
8
  function _createForOfIteratorHelperLoose(o, allowArrayLike) { var it = typeof _Symbol !== "undefined" && _getIteratorMethod(o) || o["@@iterator"]; if (it) return (it = it.call(o)).next.bind(it); if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") { if (it) o = it; var i = 0; return function () { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
9
9
 
10
- function _unsupportedIterableToArray(o, minLen) { var _context18; if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = _sliceInstanceProperty(_context18 = Object.prototype.toString.call(o)).call(_context18, 8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return _Array$from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
10
+ function _unsupportedIterableToArray(o, minLen) { var _context20; if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = _sliceInstanceProperty(_context20 = Object.prototype.toString.call(o)).call(_context20, 8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return _Array$from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
11
11
 
12
12
  function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }
13
13
 
@@ -594,7 +594,7 @@ describe('Dialog', function () {
594
594
  }, _callee12);
595
595
  })));
596
596
  it('should remove body style when destroy', /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee13() {
597
- var Demo, _mount13, instance, element;
597
+ var Demo, _mount13, instance, element, style;
598
598
 
599
599
  return _regeneratorRuntime.wrap(function _callee13$(_context17) {
600
600
  while (1) {
@@ -642,14 +642,75 @@ describe('Dialog', function () {
642
642
  return wait();
643
643
 
644
644
  case 7:
645
- expect(document.body.getAttribute('style')).to.be.null;
645
+ style = document.body.getAttribute('style');
646
+ expect(!!style).to.be.false;
646
647
 
647
- case 8:
648
+ case 9:
648
649
  case "end":
649
650
  return _context17.stop();
650
651
  }
651
652
  }
652
653
  }, _callee13);
654
+ })));
655
+ it('should update position when change container', /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee14() {
656
+ var Demo, _mount14, instance, element, dialogDom, style;
657
+
658
+ return _regeneratorRuntime.wrap(function _callee14$(_context19) {
659
+ while (1) {
660
+ switch (_context19.prev = _context19.next) {
661
+ case 0:
662
+ Demo = /*#__PURE__*/function (_Component5) {
663
+ _inheritsLoose(Demo, _Component5);
664
+
665
+ function Demo() {
666
+ var _context18;
667
+
668
+ var _this5;
669
+
670
+ for (var _len5 = arguments.length, args = new Array(_len5), _key5 = 0; _key5 < _len5; _key5++) {
671
+ args[_key5] = arguments[_key5];
672
+ }
673
+
674
+ _this5 = _Component5.call.apply(_Component5, _concatInstanceProperty(_context18 = [this]).call(_context18, args)) || this;
675
+ _this5.Dialog = Dialog;
676
+ return _this5;
677
+ }
678
+
679
+ Demo.defaults = function defaults() {
680
+ return {
681
+ container: function container(parentDom) {
682
+ return parentDom;
683
+ }
684
+ };
685
+ };
686
+
687
+ return Demo;
688
+ }(Component);
689
+
690
+ Demo.template = "\n var Dialog = this.Dialog;\n <Dialog value={true} container={this.get('container')} ref=\"dialog\">test</Dialog>\n ";
691
+ _mount14 = mount(Demo), instance = _mount14[0], element = _mount14[1];
692
+ _context19.next = 5;
693
+ return wait();
694
+
695
+ case 5:
696
+ instance.set('container', undefined);
697
+ _context19.next = 8;
698
+ return wait();
699
+
700
+ case 8:
701
+ dialogDom = instance.refs.dialog.dialogRef.value;
702
+ style = dialogDom.style;
703
+ expect(style.left).not.eql('');
704
+ expect(style.top).not.eql(''); // should append to body
705
+
706
+ expect(dialogDom.closest('.k-dialog-wrapper').parentElement).to.eql(document.body);
707
+
708
+ case 13:
709
+ case "end":
710
+ return _context19.stop();
711
+ }
712
+ }
713
+ }, _callee14);
653
714
  }))); // it('should handle v-if and v-model at the same time correctly in Vue', async () => {
654
715
  // const Test = {
655
716
  // template: `<Dialog v-model="show" v-if="show" ref="dialog">test</Dialog>`,
@@ -5,6 +5,13 @@ export function usePosition(elementRef) {
5
5
  var instance = useInstance();
6
6
  instance.on(SHOW, center);
7
7
  instance.on('afterClose', onAfterLeave);
8
+ instance.watch('container', function () {
9
+ if (!instance.get('value')) return;
10
+ center();
11
+ }, {
12
+ presented: true,
13
+ inited: true
14
+ });
8
15
 
9
16
  function center() {
10
17
  position(elementRef.value, {
@@ -28,7 +28,8 @@ var typeDefs = {
28
28
  var defaults = function defaults() {
29
29
  return {
30
30
  trigger: 'hover',
31
- of: 'self'
31
+ of: 'self',
32
+ value: false
32
33
  };
33
34
  };
34
35
 
@@ -1,9 +1,8 @@
1
1
  import _extends from "@babel/runtime-corejs3/helpers/extends";
2
- import _JSON$stringify from "@babel/runtime-corejs3/core-js/json/stringify";
3
2
  import { useInstance, findDomFromVNode } from 'intact-react';
4
3
  import { position } from '../position';
5
- import { noop } from 'intact-shared';
6
- import { isObject } from 'intact-shared';
4
+ import { noop, isObject, isFunction } from 'intact-shared';
5
+ import { isEqualObject } from '../utils';
7
6
  export function usePosition() {
8
7
  var instance = useInstance();
9
8
  var positioned = {
@@ -16,19 +15,23 @@ export function usePosition() {
16
15
  });
17
16
  ['of', 'position'].forEach(function (item) {
18
17
  instance.watch(item, function (newValue, oldValue) {
19
- // return if object is the same
20
- if (isObject(newValue) && isObject(oldValue) && // is not event object
21
- !(newValue instanceof Event) && _JSON$stringify(newValue) === _JSON$stringify(oldValue)) {
22
- return;
23
- }
24
-
25
- if (instance.get('value')) {
26
- handle(noop);
27
- }
18
+ if (!instance.get('value') || // return if object is the same
19
+ isObject(newValue) && isObject(oldValue) && // is not event object
20
+ !(newValue instanceof Event) && isEqualObject(newValue, oldValue)) return;
21
+ handle(noop);
28
22
  }, {
29
23
  presented: true,
30
24
  inited: true
31
25
  });
26
+ }); // watch container, it is not commonly used
27
+
28
+ instance.watch('container', function (newValue, oldValue) {
29
+ if (!instance.get('value') || // return if function is the same. Not rigorous!
30
+ isFunction(newValue) && isFunction(oldValue) && newValue.toString() === oldValue.toString()) return;
31
+ handle(noop);
32
+ }, {
33
+ presented: true,
34
+ inited: true
32
35
  }); // if the dropdown is nested, we must show child after parent has positioned
33
36
 
34
37
  function p(ofElement, parentFeedback) {
@@ -8,10 +8,11 @@ import BasicDemo, { data as basicDemoData } from '~/components/form/demos/basic'
8
8
  import CustomDemo from '~/components/form/demos/custom';
9
9
  import VariableDemo from '~/components/form/demos/variable';
10
10
  import RemoteDemo from '~/components/form/demos/remote';
11
- import { mount, dispatchEvent, wait } from '../../test/utils';
11
+ import { mount, unmount, dispatchEvent, wait } from '../../test/utils';
12
12
  import { Component } from 'intact-react';
13
13
  import { Form, FormItem } from './';
14
14
  import { Input } from '../input';
15
+ import { Select } from '../select';
15
16
 
16
17
  RemoteDemo.prototype.validateUserName = function (value) {
17
18
  // mock api
@@ -29,7 +30,9 @@ RemoteDemo.prototype.validateUserName = function (value) {
29
30
  };
30
31
 
31
32
  describe('Form', function () {
32
- // afterEach(() => unmount());
33
+ afterEach(function () {
34
+ return unmount();
35
+ });
33
36
  it('validate', /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee() {
34
37
  var _mount, instance, element, form, item, input;
35
38
 
@@ -1315,4 +1318,48 @@ describe('Form', function () {
1315
1318
  }
1316
1319
  }, _callee7);
1317
1320
  })));
1321
+ it('should not validate when select is disabled on init', /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee8() {
1322
+ var Demo, _mount8, instance, element;
1323
+
1324
+ return _regeneratorRuntime.wrap(function _callee8$(_context11) {
1325
+ while (1) {
1326
+ switch (_context11.prev = _context11.next) {
1327
+ case 0:
1328
+ Demo = /*#__PURE__*/function (_Component3) {
1329
+ _inheritsLoose(Demo, _Component3);
1330
+
1331
+ function Demo() {
1332
+ var _context10;
1333
+
1334
+ var _this3;
1335
+
1336
+ for (var _len3 = arguments.length, args = new Array(_len3), _key3 = 0; _key3 < _len3; _key3++) {
1337
+ args[_key3] = arguments[_key3];
1338
+ }
1339
+
1340
+ _this3 = _Component3.call.apply(_Component3, _concatInstanceProperty(_context10 = [this]).call(_context10, args)) || this;
1341
+ _this3.Form = Form;
1342
+ _this3.FormItem = FormItem;
1343
+ _this3.Select = Select;
1344
+ return _this3;
1345
+ }
1346
+
1347
+ return Demo;
1348
+ }(Component);
1349
+
1350
+ Demo.template = "\n const {Form, FormItem, Select} = this;\n <Form ref=\"form\">\n <FormItem rules={{required: true}}>\n <Select disabled />\n </FormItem>\n </Form>\n ";
1351
+ _mount8 = mount(Demo), instance = _mount8[0], element = _mount8[1];
1352
+ _context11.next = 5;
1353
+ return wait(500);
1354
+
1355
+ case 5:
1356
+ expect(element.querySelector('.k-form-error')).to.be.null;
1357
+
1358
+ case 6:
1359
+ case "end":
1360
+ return _context11.stop();
1361
+ }
1362
+ }
1363
+ }, _callee8);
1364
+ })));
1318
1365
  });
@@ -1,6 +1,6 @@
1
1
  import _inheritsLoose from "@babel/runtime-corejs3/helpers/inheritsLoose";
2
2
  import _concatInstanceProperty from "@babel/runtime-corejs3/core-js/instance/concat";
3
- import { Component, createCommentVNode, createTextVNode, mount, patch, remove, inject } from 'intact-react';
3
+ import { Component, createCommentVNode, createTextVNode, mount, patch, remove, inject, unmount, removeVNodeDom } from 'intact-react';
4
4
  import { isString } from 'intact-shared';
5
5
  import { DIALOG } from './dialog/constants';
6
6
  import { BaseDialog } from './dialog/base';
@@ -49,7 +49,9 @@ export var Portal = /*#__PURE__*/function (_Component) {
49
49
  var nextProps = nextVNode.props;
50
50
  var fakeContainer = document.createDocumentFragment();
51
51
  (mountedQueue.priority || mountedQueue).push(function () {
52
- var parentDom = _this2.$lastInput.dom.parentElement;
52
+ var parentDom = _this2.$lastInput.dom.parentElement; // maybe the <!-- portal --> has been removed by react, #938
53
+
54
+ if (!parentDom) return;
53
55
 
54
56
  _this2.initContainer(nextProps.container, parentDom, anchor);
55
57
 
@@ -95,7 +97,14 @@ export var Portal = /*#__PURE__*/function (_Component) {
95
97
  };
96
98
 
97
99
  _proto.$unmount = function $unmount(vNode, nextVNode) {
98
- remove(vNode.props.children, this.container, false); // removeVNodeDom(vNode.props!.children as VNode, this.container!);
100
+ var children = vNode.props.children;
101
+ unmount(children, null);
102
+
103
+ if (this.container) {
104
+ // maybe the <!-- portal --> has been removed by react, #938
105
+ // remove(children, this.container, false);
106
+ removeVNodeDom(children, this.container);
107
+ }
99
108
 
100
109
  _Component.prototype.$unmount.call(this, vNode, nextVNode);
101
110
  };
@@ -107,6 +116,9 @@ export var Portal = /*#__PURE__*/function (_Component) {
107
116
  } else {
108
117
  this.container = container(parentDom, anchor);
109
118
  }
119
+ } else {
120
+ // let below logic to set container to default if container does not exist.
121
+ this.container = null;
110
122
  }
111
123
 
112
124
  if (!this.container) {
@@ -3,6 +3,7 @@ import { __decorate } from "tslib";
3
3
  import { Component } from 'intact-react';
4
4
  import template from './row.vdt';
5
5
  import { bind } from '../utils';
6
+ import { isEqualObject } from '../utils';
6
7
  export var TableRow = /*#__PURE__*/function (_Component) {
7
8
  _inheritsLoose(TableRow, _Component);
8
9
 
@@ -21,8 +22,14 @@ export var TableRow = /*#__PURE__*/function (_Component) {
21
22
  for (key in lastProps) {
22
23
  // ignore index
23
24
  if (key === 'index') continue;
25
+ var lastValue = lastProps[key];
26
+ var nextValue = nextProps[key]; // deeply compare for offsetMap
24
27
 
25
- if (lastProps[key] !== nextProps[key]) {
28
+ if (key === 'offsetMap' && isEqualObject(lastValue, nextValue)) {
29
+ continue;
30
+ }
31
+
32
+ if (lastValue !== nextValue) {
26
33
  isSame = false;
27
34
  break;
28
35
  }
@@ -15,6 +15,7 @@ import { Tooltip } from './';
15
15
  import { Dialog } from '../dialog';
16
16
  import { mount, unmount, dispatchEvent, getElement, wait } from '../../test/utils';
17
17
  import { tooltip as tooltipTheme } from './styles';
18
+ import { Select, Option } from '../select';
18
19
  describe('Tooltip', function () {
19
20
  afterEach(function (done) {
20
21
  unmount();
@@ -685,4 +686,60 @@ describe('Tooltip', function () {
685
686
  }
686
687
  }, _callee11);
687
688
  })));
689
+ it('should not impact select when wrap select with tooltip', /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee12() {
690
+ var Demo, _mount12, instance, element, menu;
691
+
692
+ return _regeneratorRuntime.wrap(function _callee12$(_context17) {
693
+ while (1) {
694
+ switch (_context17.prev = _context17.next) {
695
+ case 0:
696
+ Demo = /*#__PURE__*/function (_Component5) {
697
+ _inheritsLoose(Demo, _Component5);
698
+
699
+ function Demo() {
700
+ var _context16;
701
+
702
+ var _this5;
703
+
704
+ for (var _len5 = arguments.length, args = new Array(_len5), _key5 = 0; _key5 < _len5; _key5++) {
705
+ args[_key5] = arguments[_key5];
706
+ }
707
+
708
+ _this5 = _Component5.call.apply(_Component5, _concatInstanceProperty(_context16 = [this]).call(_context16, args)) || this;
709
+ _this5.Tooltip = Tooltip;
710
+ _this5.Select = Select;
711
+ _this5.Option = Option;
712
+ return _this5;
713
+ }
714
+
715
+ return Demo;
716
+ }(Component);
717
+
718
+ Demo.template = "\n const {Tooltip, Select, Option} = this;\n <Tooltip>\n <Select>\n <Option value=\"1\">Option 1</Option>\n <Option value=\"2\">Option 2</Option>\n </Select>\n </Tooltip>\n ";
719
+ _mount12 = mount(Demo), instance = _mount12[0], element = _mount12[1];
720
+ dispatchEvent(element, 'mouseenter');
721
+ _context17.next = 6;
722
+ return wait();
723
+
724
+ case 6:
725
+ dispatchEvent(element, 'click');
726
+ _context17.next = 9;
727
+ return wait();
728
+
729
+ case 9:
730
+ menu = getElement(".k-select-menu");
731
+ dispatchEvent(element, 'mouseleave');
732
+ _context17.next = 13;
733
+ return wait(500);
734
+
735
+ case 13:
736
+ expect(menu.style.display).to.eql('');
737
+
738
+ case 14:
739
+ case "end":
740
+ return _context17.stop();
741
+ }
742
+ }
743
+ }, _callee12);
744
+ })));
688
745
  });
@@ -64,7 +64,11 @@ export var Tooltip = /*#__PURE__*/function (_Dropdown) {
64
64
 
65
65
  if (this.get('hoverable')) {
66
66
  return _Dropdown.prototype.hide.call(this, immediately);
67
- }
67
+ } // tooltip can show any number sub-tooltips, we should not close the showed tooltip
68
+ // #885
69
+
70
+
71
+ this.showedDropdown = null;
68
72
 
69
73
  _Dropdown.prototype.hide.call(this, true);
70
74
  };
@@ -24,6 +24,7 @@ export declare function range(start: number, end: number): number[];
24
24
  export declare function strPad(str: number | string, length: number, pad?: string): string;
25
25
  declare type EqualArrayValue = any | EqualArrayValue[];
26
26
  export declare function isEqualArray(a: EqualArrayValue, b: EqualArrayValue): boolean;
27
+ export declare function isEqualObject(a: Record<string, any>, b: Record<string, any>): boolean;
27
28
  export declare function last<T>(arr: T[]): T | undefined;
28
29
  export declare const expandAnimationCallbacks: {
29
30
  name: string;
@@ -287,6 +287,22 @@ export function isEqualArray(a, b) {
287
287
 
288
288
  return false;
289
289
  }
290
+ export function isEqualObject(a, b) {
291
+ if (a === b) return true;
292
+
293
+ if (a && b) {
294
+ var keysA = _Object$keys(a);
295
+
296
+ var keysB = _Object$keys(b);
297
+
298
+ if (keysA.length !== keysB.length) return false;
299
+ return keysA.every(function (key) {
300
+ return a[key] === b[key];
301
+ });
302
+ }
303
+
304
+ return false;
305
+ }
290
306
  export function last(arr) {
291
307
  return arr[arr.length - 1];
292
308
  }
@@ -82,14 +82,17 @@ export var Virtual = /*#__PURE__*/function (_Component) {
82
82
  /* vue2 vnode */
83
83
  ) {
84
84
  var data = vnode.data;
85
- var on = data && data.on || EMPTY_OBJ;
85
+ if (!data) return props;
86
+ var on = data.on || EMPTY_OBJ;
86
87
  var _events = {};
87
88
 
88
89
  for (var _key2 in on) {
89
90
  _events["ev-" + _key2] = on[_key2];
90
91
  }
91
92
 
92
- return _extends({}, props, _events);
93
+ return _extends({}, props, _events, {
94
+ className: data.staticClass
95
+ });
93
96
  }
94
97
 
95
98
  return props;
package/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * @king-design v2.1.1
2
+ * @king-design v2.1.3
3
3
  *
4
4
  * Copyright (c) Kingsoft Cloud
5
5
  * Released under the MIT License
@@ -57,7 +57,7 @@ export * from './components/tree';
57
57
  export * from './components/treeSelect';
58
58
  export * from './components/upload';
59
59
  export * from './components/wave';
60
- export declare const version = "2.1.1";
60
+ export declare const version = "2.1.3";
61
61
 
62
62
 
63
63
  export {normalize} from 'intact-react';
package/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * @king-design v2.1.1
2
+ * @king-design v2.1.3
3
3
  *
4
4
  * Copyright (c) Kingsoft Cloud
5
5
  * Released under the MIT License
@@ -59,7 +59,7 @@ export * from './components/tree';
59
59
  export * from './components/treeSelect';
60
60
  export * from './components/upload';
61
61
  export * from './components/wave';
62
- export var version = '2.1.1';
62
+ export var version = '2.1.3';
63
63
  /* generate end */
64
64
 
65
65
  export {normalize} from 'intact-react';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@king-design/react",
3
- "version": "2.1.1",
3
+ "version": "2.1.3",
4
4
  "description": "King-Design UI components for React.",
5
5
  "keywords": [
6
6
  "component",
@@ -37,7 +37,7 @@
37
37
  "dayjs": "^1.10.7",
38
38
  "downloadjs": "^1.4.7",
39
39
  "enquire.js": "^2.1.6",
40
- "intact-react": "3.0.19",
40
+ "intact-react": "3.0.26",
41
41
  "monaco-editor": "^0.26.1",
42
42
  "mxgraphx": "^4.0.7",
43
43
  "resize-observer-polyfill": "^1.5.1",
package/yarn-error.log CHANGED
@@ -1,25 +1,28 @@
1
1
  Arguments:
2
- /home/javey/.nvm/versions/node/v16.19.1/bin/node /usr/share/yarn/bin/yarn.js --registry=https://registry.npmjs.org
2
+ /home/javey/.nvm/versions/node/v14.21.3/bin/node /usr/share/yarn/bin/yarn.js --registry=https://registry.npmjs.org
3
3
 
4
4
  PATH:
5
- /tmp/yarn--1694142768580-0.3925068659168893:/home/javey/Workspaces/kpc/node_modules/.bin:/home/javey/.config/yarn/link/node_modules/.bin:/home/javey/.nvm/versions/node/v16.19.1/libexec/lib/node_modules/npm/bin/node-gyp-bin:/home/javey/.nvm/versions/node/v16.19.1/lib/node_modules/npm/bin/node-gyp-bin:/home/javey/.nvm/versions/node/v16.19.1/bin/node_modules/npm/bin/node-gyp-bin:/home/javey/.nvm/versions/node/v16.19.1/bin:/home/javey/.cargo/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/snap/bin:/home/javey/.yarn/bin:/home/javey/.yarn/bin
5
+ /home/javey/.nvm/versions/node/v14.21.3/lib/node_modules/npm/node_modules/npm-lifecycle/node-gyp-bin:/home/javey/Workspaces/kpc/node_modules/.bin:/home/javey/.nvm/versions/node/v14.21.3/bin:/home/javey/.cargo/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/snap/bin:/home/javey/.yarn/bin:/home/javey/.local/bin:/home/javey/.yarn/bin:/home/javey/.local/bin
6
6
 
7
7
  Yarn version:
8
8
  1.22.19
9
9
 
10
10
  Node version:
11
- 16.19.1
11
+ 14.21.3
12
12
 
13
13
  Platform:
14
14
  linux x64
15
15
 
16
16
  Trace:
17
- Error: ENOENT: no such file or directory, open '/home/javey/.cache/yarn/v6/npm-intact-react-3.0.18-709102ea317f420aefce885e19d0b988f6d2a756-integrity/node_modules/intact-react/.yarn-metadata.json'
17
+ Error: https://registry.npmjs.org/intact-react: ETIMEDOUT
18
+ at Timeout._onTimeout (/usr/share/yarn/lib/cli.js:141550:19)
19
+ at listOnTimeout (internal/timers.js:557:17)
20
+ at processTimers (internal/timers.js:500:7)
18
21
 
19
22
  npm manifest:
20
23
  {
21
24
  "name": "@king-design/react",
22
- "version": "2.0.17-beta.0",
25
+ "version": "3.1.1",
23
26
  "description": "King-Design UI components for React.",
24
27
  "keywords": [
25
28
  "component",
@@ -54,9 +57,8 @@ npm manifest:
54
57
  "@babel/runtime-corejs3": "^7.16.0",
55
58
  "@emotion/css": "^11.5.0",
56
59
  "dayjs": "^1.10.7",
57
- "downloadjs": "^1.4.7",
58
60
  "enquire.js": "^2.1.6",
59
- "intact-react": "3.0.18",
61
+ "intact-react": "3.0.23",
60
62
  "monaco-editor": "^0.26.1",
61
63
  "mxgraphx": "^4.0.7",
62
64
  "resize-observer-polyfill": "^1.5.1",
@@ -78,148 +80,142 @@ Lockfile:
78
80
 
79
81
 
80
82
  "@babel/code-frame@^7.0.0":
81
- version "7.16.7"
82
- resolved "https://registry.npmmirror.com/@babel/code-frame/-/code-frame-7.16.7.tgz#44416b6bd7624b998f5b1af5d470856c40138789"
83
- integrity sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==
83
+ version "7.22.10"
84
+ resolved "https://registry.npmmirror.com/@babel/code-frame/-/code-frame-7.22.10.tgz#1c20e612b768fefa75f6e90d6ecb86329247f0a3"
85
+ integrity sha512-/KKIMG4UEL35WmI9OlvMhurwtytjvXoFcGNrOvyG9zIzA8YmPjVtIZUf7b05+TPO7G7/GEmLHDaoCgACHl9hhA==
84
86
  dependencies:
85
- "@babel/highlight" "^7.16.7"
87
+ "@babel/highlight" "^7.22.10"
88
+ chalk "^2.4.2"
86
89
 
87
- "@babel/helper-module-imports@^7.12.13":
88
- version "7.16.7"
89
- resolved "https://registry.npmmirror.com/@babel/helper-module-imports/-/helper-module-imports-7.16.7.tgz#25612a8091a999704461c8a222d0efec5d091437"
90
- integrity sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==
90
+ "@babel/helper-module-imports@^7.16.7":
91
+ version "7.22.5"
92
+ resolved "https://registry.npmmirror.com/@babel/helper-module-imports/-/helper-module-imports-7.22.5.tgz#1a8f4c9f4027d23f520bd76b364d44434a72660c"
93
+ integrity sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==
91
94
  dependencies:
92
- "@babel/types" "^7.16.7"
93
-
94
- "@babel/helper-plugin-utils@^7.16.7":
95
- version "7.16.7"
96
- resolved "https://registry.npmmirror.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.7.tgz#aa3a8ab4c3cceff8e65eb9e73d87dc4ff320b2f5"
97
- integrity sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA==
98
-
99
- "@babel/helper-validator-identifier@^7.16.7":
100
- version "7.16.7"
101
- resolved "https://registry.npmmirror.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz#e8c602438c4a8195751243da9031d1607d247cad"
102
- integrity sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==
103
-
104
- "@babel/highlight@^7.16.7":
105
- version "7.16.10"
106
- resolved "https://registry.npmmirror.com/@babel/highlight/-/highlight-7.16.10.tgz#744f2eb81579d6eea753c227b0f570ad785aba88"
107
- integrity sha512-5FnTQLSLswEj6IkgVw5KusNUUFY9ZGqe/TRFnP/BKYHYgfh7tc+C7mwiy95/yNP7Dh9x580Vv8r7u7ZfTBFxdw==
95
+ "@babel/types" "^7.22.5"
96
+
97
+ "@babel/helper-string-parser@^7.22.5":
98
+ version "7.22.5"
99
+ resolved "https://registry.npmmirror.com/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz#533f36457a25814cf1df6488523ad547d784a99f"
100
+ integrity sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==
101
+
102
+ "@babel/helper-validator-identifier@^7.22.5":
103
+ version "7.22.5"
104
+ resolved "https://registry.npmmirror.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz#9544ef6a33999343c8740fa51350f30eeaaaf193"
105
+ integrity sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==
106
+
107
+ "@babel/highlight@^7.22.10":
108
+ version "7.22.10"
109
+ resolved "https://registry.npmmirror.com/@babel/highlight/-/highlight-7.22.10.tgz#02a3f6d8c1cb4521b2fd0ab0da8f4739936137d7"
110
+ integrity sha512-78aUtVcT7MUscr0K5mIEnkwxPE0MaxkR5RxRwuHaQ+JuU5AmTPhY+do2mdzVTnIJJpyBglql2pehuBIWHug+WQ==
108
111
  dependencies:
109
- "@babel/helper-validator-identifier" "^7.16.7"
110
- chalk "^2.0.0"
112
+ "@babel/helper-validator-identifier" "^7.22.5"
113
+ chalk "^2.4.2"
111
114
  js-tokens "^4.0.0"
112
115
 
113
- "@babel/plugin-syntax-jsx@^7.12.13":
114
- version "7.16.7"
115
- resolved "https://registry.npmmirror.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.16.7.tgz#50b6571d13f764266a113d77c82b4a6508bbe665"
116
- integrity sha512-Esxmk7YjA8QysKeT3VhTXvF6y77f/a91SIs4pWb4H2eWGQkCKFgQaG6hdoEVZtGsrAcb2K5BW66XsOErD4WU3Q==
117
- dependencies:
118
- "@babel/helper-plugin-utils" "^7.16.7"
119
-
120
116
  "@babel/runtime-corejs3@^7.16.0":
121
- version "7.17.2"
122
- resolved "https://registry.npmmirror.com/@babel/runtime-corejs3/-/runtime-corejs3-7.17.2.tgz#fdca2cd05fba63388babe85d349b6801b008fd13"
123
- integrity sha512-NcKtr2epxfIrNM4VOmPKO46TvDMCBhgi2CrSHaEarrz+Plk2K5r9QemmOFTGpZaoKnWoGH5MO+CzeRsih/Fcgg==
117
+ version "7.22.10"
118
+ resolved "https://registry.npmmirror.com/@babel/runtime-corejs3/-/runtime-corejs3-7.22.10.tgz#5ecc3d32faa70009f084cc2e087d79e5f5cdcca9"
119
+ integrity sha512-IcixfV2Jl3UrqZX4c81+7lVg5++2ufYJyAFW3Aux/ZTvY6LVYYhJ9rMgnbX0zGVq6eqfVpnoatTjZdVki/GmWA==
124
120
  dependencies:
125
- core-js-pure "^3.20.2"
126
- regenerator-runtime "^0.13.4"
121
+ core-js-pure "^3.30.2"
122
+ regenerator-runtime "^0.14.0"
127
123
 
128
- "@babel/runtime@^7.13.10", "@babel/runtime@^7.7.2":
129
- version "7.17.2"
130
- resolved "https://registry.npmmirror.com/@babel/runtime/-/runtime-7.17.2.tgz#66f68591605e59da47523c631416b18508779941"
131
- integrity sha512-hzeyJyMA1YGdJTuWU0e/j4wKXrU4OMFvY2MSlaI9B7VQb0r5cxTE3EAIS2Q7Tn2RIcDkRvTA/v2JsAEhxe99uw==
124
+ "@babel/runtime@^7.12.5", "@babel/runtime@^7.18.3":
125
+ version "7.22.10"
126
+ resolved "https://registry.npmmirror.com/@babel/runtime/-/runtime-7.22.10.tgz#ae3e9631fd947cb7e3610d3e9d8fef5f76696682"
127
+ integrity sha512-21t/fkKLMZI4pqP2wlmsQAWnYW1PDyKyyUV4vCi+B25ydmdaYTKXPwCj0BzSUnZf4seIiYvSA3jcZ3gdsMFkLQ==
132
128
  dependencies:
133
- regenerator-runtime "^0.13.4"
129
+ regenerator-runtime "^0.14.0"
134
130
 
135
- "@babel/types@^7.16.7":
136
- version "7.17.0"
137
- resolved "https://registry.npmmirror.com/@babel/types/-/types-7.17.0.tgz#a826e368bccb6b3d84acd76acad5c0d87342390b"
138
- integrity sha512-TmKSNO4D5rzhL5bjWFcVHHLETzfQ/AmbKpKPOSjlP0WoHZ6L911fgoOKY4Alp/emzG4cHJdyN49zpgkbXFEHHw==
131
+ "@babel/types@^7.22.5":
132
+ version "7.22.10"
133
+ resolved "https://registry.npmmirror.com/@babel/types/-/types-7.22.10.tgz#4a9e76446048f2c66982d1a989dd12b8a2d2dc03"
134
+ integrity sha512-obaoigiLrlDZ7TUQln/8m4mSqIW2QFeOrCQc9r+xsaHGNoplVNYlRVpsfE8Vj35GEm2ZH4ZhrNYogs/3fj85kg==
139
135
  dependencies:
140
- "@babel/helper-validator-identifier" "^7.16.7"
136
+ "@babel/helper-string-parser" "^7.22.5"
137
+ "@babel/helper-validator-identifier" "^7.22.5"
141
138
  to-fast-properties "^2.0.0"
142
139
 
143
- "@emotion/babel-plugin@^11.7.1":
144
- version "11.7.2"
145
- resolved "https://registry.npmmirror.com/@emotion/babel-plugin/-/babel-plugin-11.7.2.tgz#fec75f38a6ab5b304b0601c74e2a5e77c95e5fa0"
146
- integrity sha512-6mGSCWi9UzXut/ZAN6lGFu33wGR3SJisNl3c0tvlmb8XChH1b2SUvxvnOh7hvLpqyRdHHU9AiazV3Cwbk5SXKQ==
140
+ "@emotion/babel-plugin@^11.11.0":
141
+ version "11.11.0"
142
+ resolved "https://registry.npmmirror.com/@emotion/babel-plugin/-/babel-plugin-11.11.0.tgz#c2d872b6a7767a9d176d007f5b31f7d504bb5d6c"
143
+ integrity sha512-m4HEDZleaaCH+XgDDsPF15Ht6wTLsgDTeR3WYj9Q/k76JtWhrJjcP4+/XlG8LGT/Rol9qUfOIztXeA84ATpqPQ==
147
144
  dependencies:
148
- "@babel/helper-module-imports" "^7.12.13"
149
- "@babel/plugin-syntax-jsx" "^7.12.13"
150
- "@babel/runtime" "^7.13.10"
151
- "@emotion/hash" "^0.8.0"
152
- "@emotion/memoize" "^0.7.5"
153
- "@emotion/serialize" "^1.0.2"
154
- babel-plugin-macros "^2.6.1"
145
+ "@babel/helper-module-imports" "^7.16.7"
146
+ "@babel/runtime" "^7.18.3"
147
+ "@emotion/hash" "^0.9.1"
148
+ "@emotion/memoize" "^0.8.1"
149
+ "@emotion/serialize" "^1.1.2"
150
+ babel-plugin-macros "^3.1.0"
155
151
  convert-source-map "^1.5.0"
156
152
  escape-string-regexp "^4.0.0"
157
153
  find-root "^1.1.0"
158
154
  source-map "^0.5.7"
159
- stylis "4.0.13"
155
+ stylis "4.2.0"
160
156
 
161
- "@emotion/cache@^11.7.1":
162
- version "11.7.1"
163
- resolved "https://registry.npmmirror.com/@emotion/cache/-/cache-11.7.1.tgz#08d080e396a42e0037848214e8aa7bf879065539"
164
- integrity sha512-r65Zy4Iljb8oyjtLeCuBH8Qjiy107dOYC6SJq7g7GV5UCQWMObY4SJDPGFjiiVpPrOJ2hmJOoBiYTC7hwx9E2A==
157
+ "@emotion/cache@^11.11.0":
158
+ version "11.11.0"
159
+ resolved "https://registry.npmmirror.com/@emotion/cache/-/cache-11.11.0.tgz#809b33ee6b1cb1a625fef7a45bc568ccd9b8f3ff"
160
+ integrity sha512-P34z9ssTCBi3e9EI1ZsWpNHcfY1r09ZO0rZbRO2ob3ZQMnFI35jB536qoXbkdesr5EUhYi22anuEJuyxifaqAQ==
165
161
  dependencies:
166
- "@emotion/memoize" "^0.7.4"
167
- "@emotion/sheet" "^1.1.0"
168
- "@emotion/utils" "^1.0.0"
169
- "@emotion/weak-memoize" "^0.2.5"
170
- stylis "4.0.13"
162
+ "@emotion/memoize" "^0.8.1"
163
+ "@emotion/sheet" "^1.2.2"
164
+ "@emotion/utils" "^1.2.1"
165
+ "@emotion/weak-memoize" "^0.3.1"
166
+ stylis "4.2.0"
171
167
 
172
168
  "@emotion/css@^11.5.0":
173
- version "11.7.1"
174
- resolved "https://registry.npmmirror.com/@emotion/css/-/css-11.7.1.tgz#516b717340d36b0bbd2304ba7e1a090e866f8acc"
175
- integrity sha512-RUUgPlMZunlc7SE5A6Hg+VWRzb2cU6O9xlV78KCFgcnl25s7Qz/20oQg71iKudpLqk7xj0vhbJlwcJJMT0BOZg==
169
+ version "11.11.2"
170
+ resolved "https://registry.npmmirror.com/@emotion/css/-/css-11.11.2.tgz#e5fa081d0c6e335352e1bc2b05953b61832dca5a"
171
+ integrity sha512-VJxe1ucoMYMS7DkiMdC2T7PWNbrEI0a39YRiyDvK2qq4lXwjRbVP/z4lpG+odCsRzadlR+1ywwrTzhdm5HNdew==
176
172
  dependencies:
177
- "@emotion/babel-plugin" "^11.7.1"
178
- "@emotion/cache" "^11.7.1"
179
- "@emotion/serialize" "^1.0.0"
180
- "@emotion/sheet" "^1.0.3"
181
- "@emotion/utils" "^1.0.0"
182
-
183
- "@emotion/hash@^0.8.0":
184
- version "0.8.0"
185
- resolved "https://registry.npmmirror.com/@emotion/hash/-/hash-0.8.0.tgz#bbbff68978fefdbe68ccb533bc8cbe1d1afb5413"
186
- integrity sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==
187
-
188
- "@emotion/memoize@^0.7.4", "@emotion/memoize@^0.7.5":
189
- version "0.7.5"
190
- resolved "https://registry.npmmirror.com/@emotion/memoize/-/memoize-0.7.5.tgz#2c40f81449a4e554e9fc6396910ed4843ec2be50"
191
- integrity sha512-igX9a37DR2ZPGYtV6suZ6whr8pTFtyHL3K/oLUotxpSVO2ASaprmAe2Dkq7tBo7CRY7MMDrAa9nuQP9/YG8FxQ==
192
-
193
- "@emotion/serialize@^1.0.0", "@emotion/serialize@^1.0.2":
194
- version "1.0.2"
195
- resolved "https://registry.npmmirror.com/@emotion/serialize/-/serialize-1.0.2.tgz#77cb21a0571c9f68eb66087754a65fa97bfcd965"
196
- integrity sha512-95MgNJ9+/ajxU7QIAruiOAdYNjxZX7G2mhgrtDWswA21VviYIRP1R5QilZ/bDY42xiKsaktP4egJb3QdYQZi1A==
173
+ "@emotion/babel-plugin" "^11.11.0"
174
+ "@emotion/cache" "^11.11.0"
175
+ "@emotion/serialize" "^1.1.2"
176
+ "@emotion/sheet" "^1.2.2"
177
+ "@emotion/utils" "^1.2.1"
178
+
179
+ "@emotion/hash@^0.9.1":
180
+ version "0.9.1"
181
+ resolved "https://registry.npmmirror.com/@emotion/hash/-/hash-0.9.1.tgz#4ffb0055f7ef676ebc3a5a91fb621393294e2f43"
182
+ integrity sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ==
183
+
184
+ "@emotion/memoize@^0.8.1":
185
+ version "0.8.1"
186
+ resolved "https://registry.npmmirror.com/@emotion/memoize/-/memoize-0.8.1.tgz#c1ddb040429c6d21d38cc945fe75c818cfb68e17"
187
+ integrity sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==
188
+
189
+ "@emotion/serialize@^1.1.2":
190
+ version "1.1.2"
191
+ resolved "https://registry.npmmirror.com/@emotion/serialize/-/serialize-1.1.2.tgz#017a6e4c9b8a803bd576ff3d52a0ea6fa5a62b51"
192
+ integrity sha512-zR6a/fkFP4EAcCMQtLOhIgpprZOwNmCldtpaISpvz348+DP4Mz8ZoKaGGCQpbzepNIUWbq4w6hNZkwDyKoS+HA==
197
193
  dependencies:
198
- "@emotion/hash" "^0.8.0"
199
- "@emotion/memoize" "^0.7.4"
200
- "@emotion/unitless" "^0.7.5"
201
- "@emotion/utils" "^1.0.0"
194
+ "@emotion/hash" "^0.9.1"
195
+ "@emotion/memoize" "^0.8.1"
196
+ "@emotion/unitless" "^0.8.1"
197
+ "@emotion/utils" "^1.2.1"
202
198
  csstype "^3.0.2"
203
199
 
204
- "@emotion/sheet@^1.0.3", "@emotion/sheet@^1.1.0":
205
- version "1.1.0"
206
- resolved "https://registry.npmmirror.com/@emotion/sheet/-/sheet-1.1.0.tgz#56d99c41f0a1cda2726a05aa6a20afd4c63e58d2"
207
- integrity sha512-u0AX4aSo25sMAygCuQTzS+HsImZFuS8llY8O7b9MDRzbJM0kVJlAz6KNDqcG7pOuQZJmj/8X/rAW+66kMnMW+g==
200
+ "@emotion/sheet@^1.2.2":
201
+ version "1.2.2"
202
+ resolved "https://registry.npmmirror.com/@emotion/sheet/-/sheet-1.2.2.tgz#d58e788ee27267a14342303e1abb3d508b6d0fec"
203
+ integrity sha512-0QBtGvaqtWi+nx6doRwDdBIzhNdZrXUppvTM4dtZZWEGTXL/XE/yJxLMGlDT1Gt+UHH5IX1n+jkXyytE/av7OA==
208
204
 
209
- "@emotion/unitless@^0.7.5":
210
- version "0.7.5"
211
- resolved "https://registry.npmmirror.com/@emotion/unitless/-/unitless-0.7.5.tgz#77211291c1900a700b8a78cfafda3160d76949ed"
212
- integrity sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==
205
+ "@emotion/unitless@^0.8.1":
206
+ version "0.8.1"
207
+ resolved "https://registry.npmmirror.com/@emotion/unitless/-/unitless-0.8.1.tgz#182b5a4704ef8ad91bde93f7a860a88fd92c79a3"
208
+ integrity sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ==
213
209
 
214
- "@emotion/utils@^1.0.0":
215
- version "1.0.0"
216
- resolved "https://registry.npmmirror.com/@emotion/utils/-/utils-1.0.0.tgz#abe06a83160b10570816c913990245813a2fd6af"
217
- integrity sha512-mQC2b3XLDs6QCW+pDQDiyO/EdGZYOygE8s5N5rrzjSI4M3IejPE/JPndCBwRT9z982aqQNi6beWs1UeayrQxxA==
210
+ "@emotion/utils@^1.2.1":
211
+ version "1.2.1"
212
+ resolved "https://registry.npmmirror.com/@emotion/utils/-/utils-1.2.1.tgz#bbab58465738d31ae4cb3dbb6fc00a5991f755e4"
213
+ integrity sha512-Y2tGf3I+XVnajdItskUCn6LX+VUDmP6lTL4fcqsXAv43dnlbZiuW4MWQW38rW/BVWSE7Q/7+XQocmpnRYILUmg==
218
214
 
219
- "@emotion/weak-memoize@^0.2.5":
220
- version "0.2.5"
221
- resolved "https://registry.npmmirror.com/@emotion/weak-memoize/-/weak-memoize-0.2.5.tgz#8eed982e2ee6f7f4e44c253e12962980791efd46"
222
- integrity sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA==
215
+ "@emotion/weak-memoize@^0.3.1":
216
+ version "0.3.1"
217
+ resolved "https://registry.npmmirror.com/@emotion/weak-memoize/-/weak-memoize-0.3.1.tgz#d0fce5d07b0620caa282b5131c297bb60f9d87e6"
218
+ integrity sha512-EsBwpc7hBUJWAsNPBmJy4hxWx12v6bshQsldrVmjxJoc3isbxhOrF2IcCpaXxfvq03NwkI7sbsOLXbYuqF/8Ww==
223
219
 
224
220
  "@types/parse-json@^4.0.0":
225
221
  version "4.0.0"
@@ -233,21 +229,21 @@ Lockfile:
233
229
  dependencies:
234
230
  color-convert "^1.9.0"
235
231
 
236
- babel-plugin-macros@^2.6.1:
237
- version "2.8.0"
238
- resolved "https://registry.npmmirror.com/babel-plugin-macros/-/babel-plugin-macros-2.8.0.tgz#0f958a7cc6556b1e65344465d99111a1e5e10138"
239
- integrity sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==
232
+ babel-plugin-macros@^3.1.0:
233
+ version "3.1.0"
234
+ resolved "https://registry.npmmirror.com/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz#9ef6dc74deb934b4db344dc973ee851d148c50c1"
235
+ integrity sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==
240
236
  dependencies:
241
- "@babel/runtime" "^7.7.2"
242
- cosmiconfig "^6.0.0"
243
- resolve "^1.12.0"
237
+ "@babel/runtime" "^7.12.5"
238
+ cosmiconfig "^7.0.0"
239
+ resolve "^1.19.0"
244
240
 
245
241
  callsites@^3.0.0:
246
242
  version "3.1.0"
247
243
  resolved "https://registry.npmmirror.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73"
248
244
  integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==
249
245
 
250
- chalk@^2.0.0:
246
+ chalk@^2.4.2:
251
247
  version "2.4.2"
252
248
  resolved "https://registry.npmmirror.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
253
249
  integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
@@ -269,42 +265,35 @@ Lockfile:
269
265
  integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==
270
266
 
271
267
  convert-source-map@^1.5.0:
272
- version "1.8.0"
273
- resolved "https://registry.npmmirror.com/convert-source-map/-/convert-source-map-1.8.0.tgz#f3373c32d21b4d780dd8004514684fb791ca4369"
274
- integrity sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==
275
- dependencies:
276
- safe-buffer "~5.1.1"
277
-
278
- core-js-pure@^3.20.2:
279
- version "3.21.0"
280
- resolved "https://registry.npmmirror.com/core-js-pure/-/core-js-pure-3.21.0.tgz#819adc8dfb808205ce25b51d50591becd615db7e"
281
- integrity sha512-VaJUunCZLnxuDbo1rNOzwbet9E1K9joiXS5+DQMPtgxd24wfsZbJZMMfQLGYMlCUvSxLfsRUUhoOR2x28mFfeg==
282
-
283
- cosmiconfig@^6.0.0:
284
- version "6.0.0"
285
- resolved "https://registry.npmmirror.com/cosmiconfig/-/cosmiconfig-6.0.0.tgz#da4fee853c52f6b1e6935f41c1a2fc50bd4a9982"
286
- integrity sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==
268
+ version "1.9.0"
269
+ resolved "https://registry.npmmirror.com/convert-source-map/-/convert-source-map-1.9.0.tgz#7faae62353fb4213366d0ca98358d22e8368b05f"
270
+ integrity sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==
271
+
272
+ core-js-pure@^3.30.2:
273
+ version "3.32.0"
274
+ resolved "https://registry.npmmirror.com/core-js-pure/-/core-js-pure-3.32.0.tgz#5d79f85da7a4373e9a06494ccbef995a4c639f8b"
275
+ integrity sha512-qsev1H+dTNYpDUEURRuOXMvpdtAnNEvQWS/FMJ2Vb5AY8ZP4rAPQldkE27joykZPJTe0+IVgHZYh1P5Xu1/i1g==
276
+
277
+ cosmiconfig@^7.0.0:
278
+ version "7.1.0"
279
+ resolved "https://registry.npmmirror.com/cosmiconfig/-/cosmiconfig-7.1.0.tgz#1443b9afa596b670082ea46cbd8f6a62b84635f6"
280
+ integrity sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==
287
281
  dependencies:
288
282
  "@types/parse-json" "^4.0.0"
289
- import-fresh "^3.1.0"
283
+ import-fresh "^3.2.1"
290
284
  parse-json "^5.0.0"
291
285
  path-type "^4.0.0"
292
- yaml "^1.7.2"
286
+ yaml "^1.10.0"
293
287
 
294
288
  csstype@^3.0.2:
295
- version "3.0.10"
296
- resolved "https://registry.npmmirror.com/csstype/-/csstype-3.0.10.tgz#2ad3a7bed70f35b965707c092e5f30b327c290e5"
297
- integrity sha512-2u44ZG2OcNUO9HDp/Jl8C07x6pU/eTR3ncV91SiK3dhG9TWvRVsCoJw14Ckx5DgWkzGA3waZWO3d7pgqpUI/XA==
289
+ version "3.1.2"
290
+ resolved "https://registry.npmmirror.com/csstype/-/csstype-3.1.2.tgz#1d4bf9d572f11c14031f0436e1c10bc1f571f50b"
291
+ integrity sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==
298
292
 
299
293
  dayjs@^1.10.7:
300
- version "1.10.7"
301
- resolved "https://registry.npmmirror.com/dayjs/-/dayjs-1.10.7.tgz#2cf5f91add28116748440866a0a1d26f3a6ce468"
302
- integrity sha512-P6twpd70BcPK34K26uJ1KT3wlhpuOAPoMwJzpsIWUxHZ7wpmbdZL/hQqBDfz7hGurYSa5PhzdhDHtt319hL3ig==
303
-
304
- downloadjs@^1.4.7:
305
- version "1.4.7"
306
- resolved "https://registry.npmmirror.com/downloadjs/-/downloadjs-1.4.7.tgz#f69f96f940e0d0553dac291139865a3cd0101e3c"
307
- integrity sha512-LN1gO7+u9xjU5oEScGFKvXhYf7Y/empUIIEAGBs1LzUq/rg5duiDrkuH5A2lQGd5jfMOb9X9usDa2oVXwJ0U/Q==
294
+ version "1.11.9"
295
+ resolved "https://registry.npmmirror.com/dayjs/-/dayjs-1.11.9.tgz#9ca491933fadd0a60a2c19f6c237c03517d71d1a"
296
+ integrity sha512-QvzAURSbQ0pKdIye2txOzNaHmxtUBXerpY0FJsFXUMKbIZeFm5ht1LS/jFsrncjnmtv8HsG0W2g6c0zUjZWmpA==
308
297
 
309
298
  enquire.js@^2.1.6:
310
299
  version "2.1.6"
@@ -350,7 +339,7 @@ Lockfile:
350
339
  dependencies:
351
340
  function-bind "^1.1.1"
352
341
 
353
- import-fresh@^3.1.0:
342
+ import-fresh@^3.2.1:
354
343
  version "3.3.0"
355
344
  resolved "https://registry.npmmirror.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b"
356
345
  integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==
@@ -358,40 +347,40 @@ Lockfile:
358
347
  parent-module "^1.0.0"
359
348
  resolve-from "^4.0.0"
360
349
 
361
- intact-react@3.0.17:
362
- version "3.0.17"
363
- resolved "https://registry.npmjs.org/intact-react/-/intact-react-3.0.17.tgz#d2ec8e9d9a4806edff93322703335f523e8a6851"
364
- integrity sha512-aEwD1Gb6yZEPtswkipgiHkcV9DA7SuWyCpO/Ky3CMEKTu8nYoKI/a70c6KCNIE4vPWbBUQhCYxidby4u6MKWnw==
350
+ intact-react@3.0.22:
351
+ version "3.0.22"
352
+ resolved "https://registry.npmjs.org/intact-react/-/intact-react-3.0.22.tgz#cbc8361671ba68fb420045a9341765bad0a531c1"
353
+ integrity sha512-kmFvWQHENtNU81SCdFvPgY1SRZjHzpleEhT8DdY8iaSY1OZI/jMMwLjxmNhEJ+nGTFGoWozyw/QVZyN/l8H0fw==
365
354
  dependencies:
366
- intact "^3.0.17"
367
- intact-shared "^3.0.17"
355
+ intact "^3.0.22"
356
+ intact-shared "^3.0.22"
368
357
  tslib "^2.3.1"
369
358
 
370
- intact-shared@^3.0.17:
371
- version "3.0.17"
372
- resolved "https://registry.npmjs.org/intact-shared/-/intact-shared-3.0.17.tgz#4fbdfcabb30236680f6fcde2dbce18353c75f1ea"
373
- integrity sha512-wAjwFgP0rvsWxLQuMteeC2lstfkldVbek13YWsqGQCtaNRiL5fng0vI2WMuVgX9kzBh3YGBfTa/Hz/19UCtLSg==
359
+ intact-shared@^3.0.22:
360
+ version "3.0.22"
361
+ resolved "https://registry.npmjs.org/intact-shared/-/intact-shared-3.0.22.tgz#e399ee4748fe7be9345ad9b7b251faca551035fe"
362
+ integrity sha512-l3k3M1N1Q4lkUX2xF/0XPV6nXZ5ChHfRaI85dQqC7E3oPaVGUA8oNR0+07jmwhMBaB550TyxbQv/b3iNWTwtJw==
374
363
 
375
- intact@^3.0.17:
376
- version "3.0.17"
377
- resolved "https://registry.npmjs.org/intact/-/intact-3.0.17.tgz#2c43e751d08829798025035901028793d169278e"
378
- integrity sha512-UTQB/ukXSM4t5dL5FL6MXMmmvvIA8J9nDvDfCWtp57th65X03Qub5PSIINiqtLKQ6D5g/kl+MGk2m71X0tdCAw==
364
+ intact@^3.0.22:
365
+ version "3.0.22"
366
+ resolved "https://registry.npmjs.org/intact/-/intact-3.0.22.tgz#15b0b04bdd28ffd0c3d1770f8aac5a622e453d74"
367
+ integrity sha512-SFkCK5qQT6j6jseQASjjiZGUH92CxfvK5BGMHViL6l04igtug+TDC9dHox8QWHyLqnE/guNGqd39n8oCr3tYUQ==
379
368
  dependencies:
380
- intact-shared "^3.0.17"
381
- misstime "^3.0.17"
369
+ intact-shared "^3.0.22"
370
+ misstime "^3.0.22"
382
371
  tslib "^2.2.0"
383
- vdt "^3.0.17"
384
- vdt-compiler "^3.0.17"
372
+ vdt "^3.0.22"
373
+ vdt-compiler "^3.0.22"
385
374
 
386
375
  is-arrayish@^0.2.1:
387
376
  version "0.2.1"
388
377
  resolved "https://registry.npmmirror.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
389
378
  integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==
390
379
 
391
- is-core-module@^2.8.1:
392
- version "2.8.1"
393
- resolved "https://registry.npmmirror.com/is-core-module/-/is-core-module-2.8.1.tgz#f59fdfca701d5879d0a6b100a40aa1560ce27211"
394
- integrity sha512-SdNCUs284hr40hFTFP6l0IfZ/RSrMXF3qgoRHd3/79unUTvrFO/JoXwkGm+5J/Oe3E/b5GsnG330uUNgRpu1PA==
380
+ is-core-module@^2.13.0:
381
+ version "2.13.0"
382
+ resolved "https://registry.npmmirror.com/is-core-module/-/is-core-module-2.13.0.tgz#bb52aa6e2cbd49a30c2ba68c42bf3435ba6072db"
383
+ integrity sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==
395
384
  dependencies:
396
385
  has "^1.0.3"
397
386
 
@@ -410,12 +399,12 @@ Lockfile:
410
399
  resolved "https://registry.npmmirror.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632"
411
400
  integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==
412
401
 
413
- misstime@^3.0.17:
414
- version "3.0.17"
415
- resolved "https://registry.npmjs.org/misstime/-/misstime-3.0.17.tgz#da70bcb3ad742d9ba24ae8ba33f36cc06858eb3a"
416
- integrity sha512-YSI69+pj1IpnngBSNUntusmbuxjmHQS+VxxeYULoI38AYO8dsbUD+UXixjtyfKwzWfHRx85vMRl552qYJKN6lw==
402
+ misstime@^3.0.22:
403
+ version "3.0.22"
404
+ resolved "https://registry.npmjs.org/misstime/-/misstime-3.0.22.tgz#a9c62d3cb03b40aba7e420930e9f7efd5f2d195f"
405
+ integrity sha512-gK/j4A83SXNNzG3wuHFoNo5UJxkfXmFyiCeDEsyXqWmWJ/Htcrf2hM8Jg8ZwG4DCF7g1gQ20A+bm1+DAve/7gQ==
417
406
  dependencies:
418
- intact-shared "^3.0.17"
407
+ intact-shared "^3.0.22"
419
408
 
420
409
  monaco-editor@^0.26.1:
421
410
  version "0.26.1"
@@ -454,10 +443,10 @@ Lockfile:
454
443
  resolved "https://registry.npmmirror.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b"
455
444
  integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==
456
445
 
457
- regenerator-runtime@^0.13.4:
458
- version "0.13.9"
459
- resolved "https://registry.npmmirror.com/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz#8925742a98ffd90814988d7566ad30ca3b263b52"
460
- integrity sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==
446
+ regenerator-runtime@^0.14.0:
447
+ version "0.14.0"
448
+ resolved "https://registry.npmmirror.com/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz#5e19d68eb12d486f797e15a3c6a918f7cec5eb45"
449
+ integrity sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==
461
450
 
462
451
  resize-observer-polyfill@^1.5.1:
463
452
  version "1.5.1"
@@ -469,29 +458,24 @@ Lockfile:
469
458
  resolved "https://registry.npmmirror.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6"
470
459
  integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==
471
460
 
472
- resolve@^1.12.0:
473
- version "1.22.0"
474
- resolved "https://registry.npmmirror.com/resolve/-/resolve-1.22.0.tgz#5e0b8c67c15df57a89bdbabe603a002f21731198"
475
- integrity sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw==
461
+ resolve@^1.19.0:
462
+ version "1.22.4"
463
+ resolved "https://registry.npmmirror.com/resolve/-/resolve-1.22.4.tgz#1dc40df46554cdaf8948a486a10f6ba1e2026c34"
464
+ integrity sha512-PXNdCiPqDqeUou+w1C2eTQbNfxKSuMxqTCuvlmmMsk1NWHL5fRrhY6Pl0qEYYc6+QqGClco1Qj8XnjPego4wfg==
476
465
  dependencies:
477
- is-core-module "^2.8.1"
466
+ is-core-module "^2.13.0"
478
467
  path-parse "^1.0.7"
479
468
  supports-preserve-symlinks-flag "^1.0.0"
480
469
 
481
- safe-buffer@~5.1.1:
482
- version "5.1.2"
483
- resolved "https://registry.npmmirror.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
484
- integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==
485
-
486
470
  source-map@^0.5.7:
487
471
  version "0.5.7"
488
472
  resolved "https://registry.npmmirror.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
489
473
  integrity sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==
490
474
 
491
- stylis@4.0.13:
492
- version "4.0.13"
493
- resolved "https://registry.npmmirror.com/stylis/-/stylis-4.0.13.tgz#f5db332e376d13cc84ecfe5dace9a2a51d954c91"
494
- integrity sha512-xGPXiFVl4YED9Jh7Euv2V220mriG9u4B2TA6Ybjc1catrstKD2PpIdU3U0RKpkVBC2EhmL/F0sPCr9vrFTNRag==
475
+ stylis@4.2.0:
476
+ version "4.2.0"
477
+ resolved "https://registry.npmmirror.com/stylis/-/stylis-4.2.0.tgz#79daee0208964c8fe695a42fcffcac633a211a51"
478
+ integrity sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==
495
479
 
496
480
  supports-color@^5.3.0:
497
481
  version "5.5.0"
@@ -506,9 +490,9 @@ Lockfile:
506
490
  integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==
507
491
 
508
492
  tinycolor2@^1.4.2:
509
- version "1.4.2"
510
- resolved "https://registry.npmmirror.com/tinycolor2/-/tinycolor2-1.4.2.tgz#3f6a4d1071ad07676d7fa472e1fac40a719d8803"
511
- integrity sha512-vJhccZPs965sV/L2sU4oRQVAos0pQXwsvTLkWYdqJ+a8Q5kPFzJTuOFwy7UniPli44NKQGAglksjvOcpo95aZA==
493
+ version "1.6.0"
494
+ resolved "https://registry.npmmirror.com/tinycolor2/-/tinycolor2-1.6.0.tgz#f98007460169b0263b97072c5ae92484ce02d09e"
495
+ integrity sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==
512
496
 
513
497
  to-fast-properties@^2.0.0:
514
498
  version "2.0.0"
@@ -516,29 +500,29 @@ Lockfile:
516
500
  integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==
517
501
 
518
502
  tslib@^2.2.0, tslib@^2.3.1:
519
- version "2.3.1"
520
- resolved "https://registry.npmmirror.com/tslib/-/tslib-2.3.1.tgz#e8a335add5ceae51aa261d32a490158ef042ef01"
521
- integrity sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==
522
-
523
- vdt-compiler@^3.0.17:
524
- version "3.0.17"
525
- resolved "https://registry.npmjs.org/vdt-compiler/-/vdt-compiler-3.0.17.tgz#84c20eadbff523b73791acb6b0090201b552de85"
526
- integrity sha512-oH5CF2ow1IWFkB35uft+AGbyUIhr6gdzCWFchN4Q9sHhlLhoDoYeMQ/KzadePAfvzzj7B8of+nqnvEXg5t5XMw==
503
+ version "2.6.1"
504
+ resolved "https://registry.npmmirror.com/tslib/-/tslib-2.6.1.tgz#fd8c9a0ff42590b25703c0acb3de3d3f4ede0410"
505
+ integrity sha512-t0hLfiEKfMUoqhG+U1oid7Pva4bbDPHYfJNiB7BiIjRkj1pyC++4N3huJfqY6aRH6VTB0rvtzQwjM4K6qpfOig==
506
+
507
+ vdt-compiler@^3.0.22:
508
+ version "3.0.22"
509
+ resolved "https://registry.npmjs.org/vdt-compiler/-/vdt-compiler-3.0.22.tgz#7e91ab022f667565d4084111777ed316314f1420"
510
+ integrity sha512-aOGCA6a3omPIEIMUwafu6HUMzejzQ47Ex/logHhYcxIhy9LGl/MOkvwd+j/oxNALy1GPLLHF6a2oZ5wj133ZQw==
527
511
  dependencies:
528
- intact-shared "^3.0.17"
529
- misstime "^3.0.17"
512
+ intact-shared "^3.0.22"
513
+ misstime "^3.0.22"
530
514
  tslib "^2.2.0"
531
515
 
532
- vdt@^3.0.17:
533
- version "3.0.17"
534
- resolved "https://registry.npmjs.org/vdt/-/vdt-3.0.17.tgz#0bb42507c79a0edf322857d6f65a5e354be3d315"
535
- integrity sha512-iz8w8JqU+fBwbObycXSH3DWU1q7UPyq2+vbOWnlNZJubGr5oaVzuCkvRZ2613185ca0+KSxT7Mswx3FQCm0uZQ==
516
+ vdt@^3.0.22:
517
+ version "3.0.22"
518
+ resolved "https://registry.npmjs.org/vdt/-/vdt-3.0.22.tgz#fddd4f048dd5eb1ec3dae72f7b00ba3c6411d6e5"
519
+ integrity sha512-+N4Ic9H+VFaSSp5rVZWCQi2fzXrr2kEyIXXpYTWMCYi7bBMWsT9xzlNtKpWTJ6r7jkDMR33TabWge1tn9hPIFA==
536
520
  dependencies:
537
- intact-shared "^3.0.17"
538
- misstime "^3.0.17"
521
+ intact-shared "^3.0.22"
522
+ misstime "^3.0.22"
539
523
  tslib "^2.2.0"
540
524
 
541
- yaml@^1.7.2:
525
+ yaml@^1.10.0:
542
526
  version "1.10.2"
543
527
  resolved "https://registry.npmmirror.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b"
544
528
  integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==