@king-design/react 2.1.2 → 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.
- package/components/dialog/index.spec.js +65 -4
- package/components/dialog/usePosition.js +7 -0
- package/components/dropdown/usePosition.js +15 -12
- package/components/portal.js +15 -3
- package/components/table/row.js +8 -1
- package/components/utils.d.ts +1 -0
- package/components/utils.js +16 -0
- package/components/virtual.js +5 -2
- package/index.d.ts +2 -2
- package/index.js +2 -2
- package/package.json +2 -2
- package/yarn-error.log +205 -221
|
@@ -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
|
|
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
|
-
|
|
645
|
+
style = document.body.getAttribute('style');
|
|
646
|
+
expect(!!style).to.be.false;
|
|
646
647
|
|
|
647
|
-
case
|
|
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, {
|
|
@@ -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 {
|
|
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
|
-
|
|
21
|
-
!(newValue instanceof Event) &&
|
|
22
|
-
|
|
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) {
|
package/components/portal.js
CHANGED
|
@@ -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
|
-
|
|
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) {
|
package/components/table/row.js
CHANGED
|
@@ -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 (
|
|
28
|
+
if (key === 'offsetMap' && isEqualObject(lastValue, nextValue)) {
|
|
29
|
+
continue;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
if (lastValue !== nextValue) {
|
|
26
33
|
isSame = false;
|
|
27
34
|
break;
|
|
28
35
|
}
|
package/components/utils.d.ts
CHANGED
|
@@ -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;
|
package/components/utils.js
CHANGED
|
@@ -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
|
}
|
package/components/virtual.js
CHANGED
|
@@ -82,14 +82,17 @@ export var Virtual = /*#__PURE__*/function (_Component) {
|
|
|
82
82
|
/* vue2 vnode */
|
|
83
83
|
) {
|
|
84
84
|
var data = vnode.data;
|
|
85
|
-
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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/
|
|
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
|
-
/
|
|
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
|
-
|
|
11
|
+
14.21.3
|
|
12
12
|
|
|
13
13
|
Platform:
|
|
14
14
|
linux x64
|
|
15
15
|
|
|
16
16
|
Trace:
|
|
17
|
-
Error:
|
|
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": "
|
|
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.
|
|
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.
|
|
82
|
-
resolved "https://registry.npmmirror.com/@babel/code-frame/-/code-frame-7.
|
|
83
|
-
integrity sha512
|
|
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.
|
|
87
|
+
"@babel/highlight" "^7.22.10"
|
|
88
|
+
chalk "^2.4.2"
|
|
86
89
|
|
|
87
|
-
"@babel/helper-module-imports@^7.
|
|
88
|
-
version "7.
|
|
89
|
-
resolved "https://registry.npmmirror.com/@babel/helper-module-imports/-/helper-module-imports-7.
|
|
90
|
-
integrity sha512-
|
|
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.
|
|
93
|
-
|
|
94
|
-
"@babel/helper-
|
|
95
|
-
version "7.
|
|
96
|
-
resolved "https://registry.npmmirror.com/@babel/helper-
|
|
97
|
-
integrity sha512-
|
|
98
|
-
|
|
99
|
-
"@babel/helper-validator-identifier@^7.
|
|
100
|
-
version "7.
|
|
101
|
-
resolved "https://registry.npmmirror.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.
|
|
102
|
-
integrity sha512-
|
|
103
|
-
|
|
104
|
-
"@babel/highlight@^7.
|
|
105
|
-
version "7.
|
|
106
|
-
resolved "https://registry.npmmirror.com/@babel/highlight/-/highlight-7.
|
|
107
|
-
integrity sha512-
|
|
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.
|
|
110
|
-
chalk "^2.
|
|
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.
|
|
122
|
-
resolved "https://registry.npmmirror.com/@babel/runtime-corejs3/-/runtime-corejs3-7.
|
|
123
|
-
integrity sha512-
|
|
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.
|
|
126
|
-
regenerator-runtime "^0.
|
|
121
|
+
core-js-pure "^3.30.2"
|
|
122
|
+
regenerator-runtime "^0.14.0"
|
|
127
123
|
|
|
128
|
-
"@babel/runtime@^7.
|
|
129
|
-
version "7.
|
|
130
|
-
resolved "https://registry.npmmirror.com/@babel/runtime/-/runtime-7.
|
|
131
|
-
integrity sha512-
|
|
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.
|
|
129
|
+
regenerator-runtime "^0.14.0"
|
|
134
130
|
|
|
135
|
-
"@babel/types@^7.
|
|
136
|
-
version "7.
|
|
137
|
-
resolved "https://registry.npmmirror.com/@babel/types/-/types-7.
|
|
138
|
-
integrity sha512-
|
|
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-
|
|
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.
|
|
144
|
-
version "11.
|
|
145
|
-
resolved "https://registry.npmmirror.com/@emotion/babel-plugin/-/babel-plugin-11.
|
|
146
|
-
integrity sha512-
|
|
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.
|
|
149
|
-
"@babel/
|
|
150
|
-
"@
|
|
151
|
-
"@emotion/
|
|
152
|
-
"@emotion/
|
|
153
|
-
|
|
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
|
|
155
|
+
stylis "4.2.0"
|
|
160
156
|
|
|
161
|
-
"@emotion/cache@^11.
|
|
162
|
-
version "11.
|
|
163
|
-
resolved "https://registry.npmmirror.com/@emotion/cache/-/cache-11.
|
|
164
|
-
integrity sha512-
|
|
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.
|
|
167
|
-
"@emotion/sheet" "^1.
|
|
168
|
-
"@emotion/utils" "^1.
|
|
169
|
-
"@emotion/weak-memoize" "^0.
|
|
170
|
-
stylis "4.0
|
|
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.
|
|
174
|
-
resolved "https://registry.npmmirror.com/@emotion/css/-/css-11.
|
|
175
|
-
integrity sha512-
|
|
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.
|
|
178
|
-
"@emotion/cache" "^11.
|
|
179
|
-
"@emotion/serialize" "^1.
|
|
180
|
-
"@emotion/sheet" "^1.
|
|
181
|
-
"@emotion/utils" "^1.
|
|
182
|
-
|
|
183
|
-
"@emotion/hash@^0.
|
|
184
|
-
version "0.
|
|
185
|
-
resolved "https://registry.npmmirror.com/@emotion/hash/-/hash-0.
|
|
186
|
-
integrity sha512-
|
|
187
|
-
|
|
188
|
-
"@emotion/memoize@^0.
|
|
189
|
-
version "0.
|
|
190
|
-
resolved "https://registry.npmmirror.com/@emotion/memoize/-/memoize-0.
|
|
191
|
-
integrity sha512-
|
|
192
|
-
|
|
193
|
-
"@emotion/serialize@^1.
|
|
194
|
-
version "1.
|
|
195
|
-
resolved "https://registry.npmmirror.com/@emotion/serialize/-/serialize-1.
|
|
196
|
-
integrity sha512-
|
|
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.
|
|
199
|
-
"@emotion/memoize" "^0.
|
|
200
|
-
"@emotion/unitless" "^0.
|
|
201
|
-
"@emotion/utils" "^1.
|
|
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.
|
|
205
|
-
version "1.
|
|
206
|
-
resolved "https://registry.npmmirror.com/@emotion/sheet/-/sheet-1.
|
|
207
|
-
integrity sha512-
|
|
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.
|
|
210
|
-
version "0.
|
|
211
|
-
resolved "https://registry.npmmirror.com/@emotion/unitless/-/unitless-0.
|
|
212
|
-
integrity sha512-
|
|
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.
|
|
215
|
-
version "1.
|
|
216
|
-
resolved "https://registry.npmmirror.com/@emotion/utils/-/utils-1.
|
|
217
|
-
integrity sha512-
|
|
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.
|
|
220
|
-
version "0.
|
|
221
|
-
resolved "https://registry.npmmirror.com/@emotion/weak-memoize/-/weak-memoize-0.
|
|
222
|
-
integrity sha512-
|
|
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@^
|
|
237
|
-
version "
|
|
238
|
-
resolved "https://registry.npmmirror.com/babel-plugin-macros/-/babel-plugin-macros-
|
|
239
|
-
integrity sha512-
|
|
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.
|
|
242
|
-
cosmiconfig "^
|
|
243
|
-
resolve "^1.
|
|
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.
|
|
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.
|
|
273
|
-
resolved "https://registry.npmmirror.com/convert-source-map/-/convert-source-map-1.
|
|
274
|
-
integrity sha512
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
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
|
|
283
|
+
import-fresh "^3.2.1"
|
|
290
284
|
parse-json "^5.0.0"
|
|
291
285
|
path-type "^4.0.0"
|
|
292
|
-
yaml "^1.
|
|
286
|
+
yaml "^1.10.0"
|
|
293
287
|
|
|
294
288
|
csstype@^3.0.2:
|
|
295
|
-
version "3.
|
|
296
|
-
resolved "https://registry.npmmirror.com/csstype/-/csstype-3.
|
|
297
|
-
integrity sha512-
|
|
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.
|
|
301
|
-
resolved "https://registry.npmmirror.com/dayjs/-/dayjs-1.
|
|
302
|
-
integrity sha512-
|
|
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
|
|
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.
|
|
362
|
-
version "3.0.
|
|
363
|
-
resolved "https://registry.npmjs.org/intact-react/-/intact-react-3.0.
|
|
364
|
-
integrity sha512-
|
|
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.
|
|
367
|
-
intact-shared "^3.0.
|
|
355
|
+
intact "^3.0.22"
|
|
356
|
+
intact-shared "^3.0.22"
|
|
368
357
|
tslib "^2.3.1"
|
|
369
358
|
|
|
370
|
-
intact-shared@^3.0.
|
|
371
|
-
version "3.0.
|
|
372
|
-
resolved "https://registry.npmjs.org/intact-shared/-/intact-shared-3.0.
|
|
373
|
-
integrity sha512-
|
|
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.
|
|
376
|
-
version "3.0.
|
|
377
|
-
resolved "https://registry.npmjs.org/intact/-/intact-3.0.
|
|
378
|
-
integrity sha512-
|
|
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.
|
|
381
|
-
misstime "^3.0.
|
|
369
|
+
intact-shared "^3.0.22"
|
|
370
|
+
misstime "^3.0.22"
|
|
382
371
|
tslib "^2.2.0"
|
|
383
|
-
vdt "^3.0.
|
|
384
|
-
vdt-compiler "^3.0.
|
|
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.
|
|
392
|
-
version "2.
|
|
393
|
-
resolved "https://registry.npmmirror.com/is-core-module/-/is-core-module-2.
|
|
394
|
-
integrity sha512-
|
|
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.
|
|
414
|
-
version "3.0.
|
|
415
|
-
resolved "https://registry.npmjs.org/misstime/-/misstime-3.0.
|
|
416
|
-
integrity sha512-
|
|
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.
|
|
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.
|
|
458
|
-
version "0.
|
|
459
|
-
resolved "https://registry.npmmirror.com/regenerator-runtime/-/regenerator-runtime-0.
|
|
460
|
-
integrity sha512-
|
|
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.
|
|
473
|
-
version "1.22.
|
|
474
|
-
resolved "https://registry.npmmirror.com/resolve/-/resolve-1.22.
|
|
475
|
-
integrity sha512-
|
|
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.
|
|
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
|
|
492
|
-
version "4.0
|
|
493
|
-
resolved "https://registry.npmmirror.com/stylis/-/stylis-4.0.
|
|
494
|
-
integrity sha512-
|
|
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.
|
|
510
|
-
resolved "https://registry.npmmirror.com/tinycolor2/-/tinycolor2-1.
|
|
511
|
-
integrity sha512-
|
|
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.
|
|
520
|
-
resolved "https://registry.npmmirror.com/tslib/-/tslib-2.
|
|
521
|
-
integrity sha512-
|
|
522
|
-
|
|
523
|
-
vdt-compiler@^3.0.
|
|
524
|
-
version "3.0.
|
|
525
|
-
resolved "https://registry.npmjs.org/vdt-compiler/-/vdt-compiler-3.0.
|
|
526
|
-
integrity sha512-
|
|
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.
|
|
529
|
-
misstime "^3.0.
|
|
512
|
+
intact-shared "^3.0.22"
|
|
513
|
+
misstime "^3.0.22"
|
|
530
514
|
tslib "^2.2.0"
|
|
531
515
|
|
|
532
|
-
vdt@^3.0.
|
|
533
|
-
version "3.0.
|
|
534
|
-
resolved "https://registry.npmjs.org/vdt/-/vdt-3.0.
|
|
535
|
-
integrity sha512
|
|
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.
|
|
538
|
-
misstime "^3.0.
|
|
521
|
+
intact-shared "^3.0.22"
|
|
522
|
+
misstime "^3.0.22"
|
|
539
523
|
tslib "^2.2.0"
|
|
540
524
|
|
|
541
|
-
yaml@^1.
|
|
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==
|