@king-design/react 2.0.10 → 2.0.12

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.
@@ -1,14 +1,21 @@
1
- import React, {createRef} from 'react';
1
+ import React, {createRef, useState} from 'react';
2
2
  import * as ReactDOM from 'react-dom';
3
3
  import {Drawer, Card, Button} from '../../';
4
4
  import {Component} from 'intact-react';
5
5
  import {getElement, wait, dispatchEvent} from '../../../../test/utils';
6
6
 
7
7
  describe('Drawer', () => {
8
- it('should render react element correctly', async () => {
9
- const container = document.createElement('div');
8
+ let container: HTMLDivElement;
9
+ beforeEach(() => {
10
+ container = document.createElement('div');
10
11
  document.body.appendChild(container);
12
+ });
13
+ afterEach(() => {
14
+ ReactDOM.unmountComponentAtNode(container);
15
+ document.body.removeChild(container);
16
+ });
11
17
 
18
+ it('should render react element correctly', async () => {
12
19
  class Test extends Component {
13
20
  static template = `<div ref="a">test</div>`;
14
21
  mounted() {
@@ -16,23 +23,20 @@ describe('Drawer', () => {
16
23
  }
17
24
  }
18
25
 
19
- ReactDOM.render(
20
- <Card>
21
- <Drawer>
26
+ function App() {
27
+ const [show, setShow] = useState(false);
28
+ return <Card>
29
+ <div onClick={() => setShow(true)}>show</div>
30
+ <Drawer value={show} mode="destroy">
22
31
  <div><Test /></div>
23
32
  </Drawer>
24
- </Card>,
25
- container
26
- );
33
+ </Card>;
34
+ }
27
35
 
28
- ReactDOM.unmountComponentAtNode(container);
29
- document.body.removeChild(container);
36
+ ReactDOM.render(<App />, container);
30
37
  });
31
38
 
32
39
  it('should handle event correctly', async () => {
33
- const container = document.createElement('div');
34
- document.body.appendChild(container);
35
-
36
40
  const click1 = sinon.spy(() => console.log(1));
37
41
  const click2 = sinon.spy(() => console.log(2));
38
42
 
@@ -41,7 +45,10 @@ describe('Drawer', () => {
41
45
  <Drawer value={true} title="1">
42
46
  <div className="click" onClick={click1}>click</div>
43
47
  </Drawer>
44
- <Drawer value={true} placement="left" title="2">
48
+ <Drawer value={true} placement="left" title="2"
49
+ onClose={() => console.log('click')}
50
+ slotFooter={<Button onClick={e => console.log(1)}>click</Button>}
51
+ >
45
52
  <Card>
46
53
  <div className="click" onClick={click2}>click</div>
47
54
  </Card>
@@ -59,8 +66,5 @@ describe('Drawer', () => {
59
66
  dispatchEvent(element2, 'click');
60
67
  await wait();
61
68
  expect(click2.callCount).to.eql(1);
62
-
63
- ReactDOM.unmountComponentAtNode(container);
64
- document.body.removeChild(container);
65
69
  });
66
70
  });
@@ -43,7 +43,7 @@ setDefault(function () {
43
43
  }).cascader;
44
44
  });
45
45
  export function makeMenuStyles() {
46
- return /*#__PURE__*/css("min-width:", cascader.width, "!important;height:", cascader.height, ";.k-cascader-arrow{float:right;height:100%;margin-left:", cascader.arrowGap, ";line-height:inherit;}.k-cascader-loading{display:block;text-align:center;margin-top:", cascader.loadingGap, ";}.k-cascader-empty{padding:", cascader.empty.padding, ";color:", cascader.empty.color, ";text-align:center;}.k-cascader-option{&.k-selected{color:", cascader.selectedColor, ";}&.k-active{background:", cascader.activeBgColor, ";}}");
46
+ return /*#__PURE__*/css("min-width:", cascader.width, "!important;min-height:", cascader.height, ";.k-cascader-arrow{float:right;height:100%;margin-left:", cascader.arrowGap, ";line-height:inherit;}.k-cascader-loading{display:block;text-align:center;margin-top:", cascader.loadingGap, ";}.k-cascader-empty{padding:", cascader.empty.padding, ";color:", cascader.empty.color, ";text-align:center;}.k-cascader-option{&.k-selected{color:", cascader.selectedColor, ";}&.k-active{background:", cascader.activeBgColor, ";}}");
47
47
  }
48
48
  export function makeFilterMenuStyles() {
49
49
  return /*#__PURE__*/css("min-width:", _filterInstanceProperty(cascader).minWidth, "!important;height:auto;max-height:", _filterInstanceProperty(cascader).maxHeight, ";em{font-style:normal;color:", _filterInstanceProperty(cascader).highlightColor, ";}");
@@ -34,7 +34,7 @@ export function useEscClosable() {
34
34
  }
35
35
  }
36
36
 
37
- _spliceInstanceProperty(dialogs).call(dialogs, 0, index);
37
+ _spliceInstanceProperty(dialogs).call(dialogs, index, 1);
38
38
 
39
39
  if (!dialogs.length) {
40
40
  document.removeEventListener('keydown', escClose);
@@ -1,4 +1,5 @@
1
- export declare type Method = (value: any, param: any) => boolean | string;
1
+ export declare type MethodReturn = boolean | string;
2
+ export declare type Method = (value: any, param: any) => MethodReturn | Promise<MethodReturn>;
2
3
  export declare type Message = string | ((value: any, param: any) => string);
3
4
  export declare type ClassName = string | ((value: any, param: any) => string);
4
5
  export declare const methods: Record<string, Method>;
@@ -106,7 +106,7 @@ export var Table = /*#__PURE__*/function (_Component) {
106
106
  _this.selected = useSelected();
107
107
  _this.resetRowStatus = useRestRowStatus(_this.disableRow.getAllKeys);
108
108
  _this.draggable = useDraggable();
109
- _this.stickyScrollbar = useStickyScrollbar(_this.stickyHeader.elementRef, _this.scroll, _this.width.tableRef, _this.fixedColumns.setScrollPosition, _this.width.tableWidth);
109
+ _this.stickyScrollbar = useStickyScrollbar(_this.stickyHeader.elementRef, _this.scroll, _this.width.tableRef, _this.fixedColumns.setScrollPosition);
110
110
  return _this;
111
111
  }
112
112
 
@@ -0,0 +1,2 @@
1
+ import { RefObject } from 'intact-react';
2
+ export declare function useResizeObserver(elementRef: RefObject<HTMLElement>, callback: Function): void;
@@ -0,0 +1,20 @@
1
+ import { onMounted, onBeforeUnmount, useInstance } from 'intact-react';
2
+ import { debounce } from '../utils';
3
+ import ResizeObserver from 'resize-observer-polyfill';
4
+ export function useResizeObserver(elementRef, callback) {
5
+ var instance = useInstance();
6
+ var ro;
7
+ onMounted(function () {
8
+ // use debounce instead of throttle, because if there is
9
+ // transition on parent container, the width is weired
10
+ // #342
11
+ ro = new ResizeObserver(debounce(function () {
12
+ if (instance.$unmounted) return;
13
+ callback();
14
+ }, 100, true));
15
+ ro.observe(elementRef.value);
16
+ });
17
+ onBeforeUnmount(function () {
18
+ ro.disconnect();
19
+ });
20
+ }
@@ -2,7 +2,7 @@ import { RefObject } from 'intact-react';
2
2
  import { ShouldFixParam } from '../affix';
3
3
  import { State } from '../../hooks/useState';
4
4
  import type { useScroll } from './useScroll';
5
- export declare function useStickyScrollbar(elementRef: RefObject<HTMLElement>, { scrollRef, callbacks }: ReturnType<typeof useScroll>, tableRef: RefObject<HTMLElement>, tableScroll: (scrollLeft: number) => void, tableWidth: State<number | null>): {
5
+ export declare function useStickyScrollbar(elementRef: RefObject<HTMLElement>, { scrollRef, callbacks }: ReturnType<typeof useScroll>, tableRef: RefObject<HTMLElement>, tableScroll: (scrollLeft: number) => void): {
6
6
  shouldStickScrollbar: ({ offsetBottom, viewportHeight }: ShouldFixParam) => boolean;
7
7
  stick: State<number | null>;
8
8
  style: State<Record<string, string> | null>;
@@ -1,8 +1,9 @@
1
1
  import { createRef, useInstance, onMounted, nextTick } from 'intact-react';
2
- import { useState, watchState } from '../../hooks/useState';
2
+ import { useState } from '../../hooks/useState';
3
3
  import { isStringOrNumber, isNull } from 'intact-shared';
4
4
  import { debounce } from '../utils';
5
- export function useStickyScrollbar(elementRef, _ref, tableRef, tableScroll, tableWidth) {
5
+ import { useResizeObserver } from './useResizeObserver';
6
+ export function useStickyScrollbar(elementRef, _ref, tableRef, tableScroll) {
6
7
  var scrollRef = _ref.scrollRef,
7
8
  callbacks = _ref.callbacks;
8
9
  var instance = useInstance();
@@ -13,13 +14,7 @@ export function useStickyScrollbar(elementRef, _ref, tableRef, tableScroll, tabl
13
14
  instance.on('$receive:stickScrollbar', function (v) {
14
15
  stick.set(v === true ? 0 : isStringOrNumber(v) ? +v : null);
15
16
  });
16
- watchState(tableWidth, function (v) {
17
- if (v) {
18
- tableActualWidth.set(v + 'px');
19
- } else {
20
- setTableActualWidth();
21
- }
22
- });
17
+ useResizeObserver(scrollRef, setTableActualWidth);
23
18
  onMounted(function () {
24
19
  setTableActualWidth();
25
20
  });
@@ -1,10 +1,9 @@
1
1
  import _mapInstanceProperty from "@babel/runtime-corejs3/core-js/instance/map";
2
2
  import _JSON$stringify from "@babel/runtime-corejs3/core-js/json/stringify";
3
- import { useInstance, onMounted, onBeforeUnmount, createRef } from 'intact-react';
4
- import ResizeObserver from 'resize-observer-polyfill';
3
+ import { useInstance, onMounted, createRef } from 'intact-react';
5
4
  import { useState } from '../../hooks/useState';
6
- import { debounce } from '../utils';
7
5
  import { scrollbarWidth } from '../position';
6
+ import { useResizeObserver } from './useResizeObserver';
8
7
  var hasLocalStorage = typeof localStorage !== 'undefined';
9
8
  export function useWidth(scrollRef, getColumns) {
10
9
  var instance = useInstance();
@@ -12,20 +11,11 @@ export function useWidth(scrollRef, getColumns) {
12
11
  var widthMap = useState({});
13
12
  var tableWidth = useState(null);
14
13
  initWidthFromStore();
15
- var ro;
16
14
  onMounted(function () {
17
- checkTableWidth(true); // use debounce instead of throttle, because if there is
18
- // transition on parent container, the width is weired
19
- // #342
20
-
21
- ro = new ResizeObserver(debounce(function () {
22
- if (instance.$unmounted) return;
23
- checkTableWidth(false);
24
- }, 100, true));
25
- ro.observe(scrollRef.value);
15
+ return checkTableWidth(true);
26
16
  });
27
- onBeforeUnmount(function () {
28
- ro.disconnect();
17
+ useResizeObserver(scrollRef, function () {
18
+ return checkTableWidth(false);
29
19
  }); // if exist widthStoreKey, we get the default width from localStorage
30
20
 
31
21
  function initWidthFromStore() {
package/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * @king-design v2.0.10
2
+ * @king-design v2.0.12
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.0.10";
60
+ export declare const version = "2.0.12";
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.0.10
2
+ * @king-design v2.0.12
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.0.10';
62
+ export var version = '2.0.12';
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.0.10",
3
+ "version": "2.0.12",
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.11",
40
+ "intact-react": "3.0.13",
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 ADDED
@@ -0,0 +1,543 @@
1
+ Arguments:
2
+ /Users/javey/.nvm/versions/node/v14.17.3/bin/node /Users/javey/.node/corepack/yarn/1.22.15/bin/yarn.js
3
+
4
+ PATH:
5
+ /Users/javey/Workspaces/kpc/node_modules/.bin:/Users/javey/.nvm/versions/node/v14.17.3/bin:/Users/javey/.cargo/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Library/Apple/usr/bin:/Users/javey/.nvm/versions/node/v14.17.3/bin:/Users/javey/.cargo/bin:/Users/javey/.bin:/Users/javey/.bin
6
+
7
+ Yarn version:
8
+ 1.22.15
9
+
10
+ Node version:
11
+ 14.17.3
12
+
13
+ Platform:
14
+ darwin x64
15
+
16
+ Trace:
17
+ Error: https://registry.yarnpkg.com/intact/-/intact-3.0.10.tgz: ENOENT: no such file or directory, open '/Users/javey/Library/Caches/Yarn/v6/npm-intact-3.0.10-eab07b631228e2cbeb1445fe2ad9ce0fbf6d45b3-integrity/node_modules/intact/.yarn-tarball.tgz'
18
+
19
+ npm manifest:
20
+ {
21
+ "name": "@king-design/react",
22
+ "version": "2.0.8",
23
+ "description": "King-Design UI components for React.",
24
+ "keywords": [
25
+ "component",
26
+ "intact",
27
+ "ui",
28
+ "components",
29
+ "library",
30
+ "react",
31
+ "king-design",
32
+ "kpc"
33
+ ],
34
+ "author": "Javey <jiawei23716@sina.com>",
35
+ "homepage": "https://design.ksyun.com",
36
+ "license": "MIT",
37
+ "main": "index.js",
38
+ "repository": {
39
+ "type": "git",
40
+ "url": "git+https://github.com/ksc-fe/kpc.git"
41
+ },
42
+ "publishConfig": {
43
+ "access": "public",
44
+ "registry": "https://registry.npmjs.org/"
45
+ },
46
+ "scripts": {
47
+ "test": "../../node_modules/.bin/karma start ./__tests__/karma.conf.js",
48
+ "snapshots": "../../node_modules/.bin/cross-env UPDATE=1 npm run test"
49
+ },
50
+ "bugs": {
51
+ "url": "https://github.com/ksc-fe/kpc/issues"
52
+ },
53
+ "dependencies": {
54
+ "@babel/runtime-corejs3": "^7.16.0",
55
+ "@emotion/css": "^11.5.0",
56
+ "dayjs": "^1.10.7",
57
+ "downloadjs": "^1.4.7",
58
+ "enquire.js": "^2.1.6",
59
+ "intact-react": "3.0.10",
60
+ "monaco-editor": "^0.26.1",
61
+ "mxgraphx": "^4.0.7",
62
+ "resize-observer-polyfill": "^1.5.1",
63
+ "tinycolor2": "^1.4.2",
64
+ "tslib": "^2.3.1"
65
+ },
66
+ "sideEffects": [
67
+ "**/*/styles/global.*",
68
+ "**/*/styles/fonts/*"
69
+ ]
70
+ }
71
+
72
+ yarn manifest:
73
+ No manifest
74
+
75
+ Lockfile:
76
+ # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
77
+ # yarn lockfile v1
78
+
79
+
80
+ "@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==
84
+ dependencies:
85
+ "@babel/highlight" "^7.16.7"
86
+
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==
91
+ 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==
108
+ dependencies:
109
+ "@babel/helper-validator-identifier" "^7.16.7"
110
+ chalk "^2.0.0"
111
+ js-tokens "^4.0.0"
112
+
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
+ "@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==
124
+ dependencies:
125
+ core-js-pure "^3.20.2"
126
+ regenerator-runtime "^0.13.4"
127
+
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==
132
+ dependencies:
133
+ regenerator-runtime "^0.13.4"
134
+
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==
139
+ dependencies:
140
+ "@babel/helper-validator-identifier" "^7.16.7"
141
+ to-fast-properties "^2.0.0"
142
+
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==
147
+ 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"
155
+ convert-source-map "^1.5.0"
156
+ escape-string-regexp "^4.0.0"
157
+ find-root "^1.1.0"
158
+ source-map "^0.5.7"
159
+ stylis "4.0.13"
160
+
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==
165
+ 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"
171
+
172
+ "@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==
176
+ 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==
197
+ 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"
202
+ csstype "^3.0.2"
203
+
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==
208
+
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==
213
+
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==
218
+
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==
223
+
224
+ "@types/parse-json@^4.0.0":
225
+ version "4.0.0"
226
+ resolved "https://registry.npmmirror.com/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0"
227
+ integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==
228
+
229
+ ansi-styles@^3.2.1:
230
+ version "3.2.1"
231
+ resolved "https://registry.npmmirror.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
232
+ integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==
233
+ dependencies:
234
+ color-convert "^1.9.0"
235
+
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==
240
+ dependencies:
241
+ "@babel/runtime" "^7.7.2"
242
+ cosmiconfig "^6.0.0"
243
+ resolve "^1.12.0"
244
+
245
+ callsites@^3.0.0:
246
+ version "3.1.0"
247
+ resolved "https://registry.npmmirror.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73"
248
+ integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==
249
+
250
+ chalk@^2.0.0:
251
+ version "2.4.2"
252
+ resolved "https://registry.npmmirror.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
253
+ integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
254
+ dependencies:
255
+ ansi-styles "^3.2.1"
256
+ escape-string-regexp "^1.0.5"
257
+ supports-color "^5.3.0"
258
+
259
+ color-convert@^1.9.0:
260
+ version "1.9.3"
261
+ resolved "https://registry.npmmirror.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8"
262
+ integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==
263
+ dependencies:
264
+ color-name "1.1.3"
265
+
266
+ color-name@1.1.3:
267
+ version "1.1.3"
268
+ resolved "https://registry.npmmirror.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
269
+ integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==
270
+
271
+ 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==
287
+ dependencies:
288
+ "@types/parse-json" "^4.0.0"
289
+ import-fresh "^3.1.0"
290
+ parse-json "^5.0.0"
291
+ path-type "^4.0.0"
292
+ yaml "^1.7.2"
293
+
294
+ 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==
298
+
299
+ 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==
308
+
309
+ enquire.js@^2.1.6:
310
+ version "2.1.6"
311
+ resolved "https://registry.npmmirror.com/enquire.js/-/enquire.js-2.1.6.tgz#3e8780c9b8b835084c3f60e166dbc3c2a3c89814"
312
+ integrity sha512-/KujNpO+PT63F7Hlpu4h3pE3TokKRHN26JYmQpPyjkRD/N57R7bPDNojMXdi7uveAKjYB7yQnartCxZnFWr0Xw==
313
+
314
+ error-ex@^1.3.1:
315
+ version "1.3.2"
316
+ resolved "https://registry.npmmirror.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf"
317
+ integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==
318
+ dependencies:
319
+ is-arrayish "^0.2.1"
320
+
321
+ escape-string-regexp@^1.0.5:
322
+ version "1.0.5"
323
+ resolved "https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
324
+ integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==
325
+
326
+ escape-string-regexp@^4.0.0:
327
+ version "4.0.0"
328
+ resolved "https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34"
329
+ integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==
330
+
331
+ find-root@^1.1.0:
332
+ version "1.1.0"
333
+ resolved "https://registry.npmmirror.com/find-root/-/find-root-1.1.0.tgz#abcfc8ba76f708c42a97b3d685b7e9450bfb9ce4"
334
+ integrity sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==
335
+
336
+ function-bind@^1.1.1:
337
+ version "1.1.1"
338
+ resolved "https://registry.npmmirror.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
339
+ integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==
340
+
341
+ has-flag@^3.0.0:
342
+ version "3.0.0"
343
+ resolved "https://registry.npmmirror.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
344
+ integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==
345
+
346
+ has@^1.0.3:
347
+ version "1.0.3"
348
+ resolved "https://registry.npmmirror.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796"
349
+ integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==
350
+ dependencies:
351
+ function-bind "^1.1.1"
352
+
353
+ import-fresh@^3.1.0:
354
+ version "3.3.0"
355
+ resolved "https://registry.npmmirror.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b"
356
+ integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==
357
+ dependencies:
358
+ parent-module "^1.0.0"
359
+ resolve-from "^4.0.0"
360
+
361
+ intact-react@3.0.9:
362
+ version "3.0.9"
363
+ resolved "https://registry.yarnpkg.com/intact-react/-/intact-react-3.0.9.tgz#03c01b33ea05a0d8d09341c752897569325dfe44"
364
+ integrity sha512-QSwmy13k7rXZz7T9qwqNtKEX2CdbPOCFJYje3WOrf9AWAG/NX6tzggLM1Br6Rf3kcuq7LrsOiW1LEcvgJrz3Rg==
365
+ dependencies:
366
+ intact "^3.0.9"
367
+ tslib "^2.3.1"
368
+
369
+ intact-shared@^3.0.9:
370
+ version "3.0.9"
371
+ resolved "https://registry.yarnpkg.com/intact-shared/-/intact-shared-3.0.9.tgz#de7c67de2bfd5078a729d20c84182cd43610db48"
372
+ integrity sha512-c/T+EyJeBCIh4XGphVOK7tH3t+J4FXoknzV/gSTiZYsLZDSGA2cBRD6z6NGWGDnj/XAXPbFaFIAFKXNhCaTjNQ==
373
+
374
+ intact@^3.0.9:
375
+ version "3.0.9"
376
+ resolved "https://registry.yarnpkg.com/intact/-/intact-3.0.9.tgz#a4c0b3574d97c77c62cd1a1e84d6e27742888e6f"
377
+ integrity sha512-liBz/xo0XAKIuXBoBs0G6yvWHGJTb43ChF4AUJzQNr4CHX5YWZPgIKGvw34UScBmYWpu3SzwvMDLs7aoVDITxg==
378
+ dependencies:
379
+ intact-shared "^3.0.9"
380
+ misstime "^3.0.9"
381
+ tslib "^2.2.0"
382
+ vdt "^3.0.9"
383
+ vdt-compiler "^3.0.9"
384
+
385
+ is-arrayish@^0.2.1:
386
+ version "0.2.1"
387
+ resolved "https://registry.npmmirror.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
388
+ integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==
389
+
390
+ is-core-module@^2.8.1:
391
+ version "2.8.1"
392
+ resolved "https://registry.npmmirror.com/is-core-module/-/is-core-module-2.8.1.tgz#f59fdfca701d5879d0a6b100a40aa1560ce27211"
393
+ integrity sha512-SdNCUs284hr40hFTFP6l0IfZ/RSrMXF3qgoRHd3/79unUTvrFO/JoXwkGm+5J/Oe3E/b5GsnG330uUNgRpu1PA==
394
+ dependencies:
395
+ has "^1.0.3"
396
+
397
+ js-tokens@^4.0.0:
398
+ version "4.0.0"
399
+ resolved "https://registry.npmmirror.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
400
+ integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
401
+
402
+ json-parse-even-better-errors@^2.3.0:
403
+ version "2.3.1"
404
+ resolved "https://registry.npmmirror.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d"
405
+ integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==
406
+
407
+ lines-and-columns@^1.1.6:
408
+ version "1.2.4"
409
+ resolved "https://registry.npmmirror.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632"
410
+ integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==
411
+
412
+ misstime@^3.0.9:
413
+ version "3.0.9"
414
+ resolved "https://registry.yarnpkg.com/misstime/-/misstime-3.0.9.tgz#0f6094109768c71c7fc4bdd47aba7e847c12f672"
415
+ integrity sha512-LYgnqiU2eucjimJbjM5p4VHNR27mVAl8ISbolYUHQS9J0fk2JN00MPH7H4uEbCAFmSrVVHLAJgQ+qGRj+/GNeg==
416
+ dependencies:
417
+ intact-shared "^3.0.9"
418
+
419
+ monaco-editor@^0.26.1:
420
+ version "0.26.1"
421
+ resolved "https://registry.npmmirror.com/monaco-editor/-/monaco-editor-0.26.1.tgz#62bb5f658bc95379f8abb64b147632bd1c019d73"
422
+ integrity sha512-mm45nUrBDk0DgZKgbD7+bhDOtcAFNGPJJRAdS6Su1kTGl6XEgC7U3xOmDUW/0RrLf+jlvCGaqLvD4p2VjwuwwQ==
423
+
424
+ mxgraphx@^4.0.7:
425
+ version "4.0.7"
426
+ resolved "https://registry.npmmirror.com/mxgraphx/-/mxgraphx-4.0.7.tgz#5a904654916b883ff4246af8ad5edfe3e924ff74"
427
+ integrity sha512-N8KRnMy5Rkiab3X9lx618Nmzr/oZ0jfyrtPVqt+yOqlgq6CZD0242exPktRzKTpUABZetdRXcR7tBPAjZXTB1g==
428
+
429
+ parent-module@^1.0.0:
430
+ version "1.0.1"
431
+ resolved "https://registry.npmmirror.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2"
432
+ integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==
433
+ dependencies:
434
+ callsites "^3.0.0"
435
+
436
+ parse-json@^5.0.0:
437
+ version "5.2.0"
438
+ resolved "https://registry.npmmirror.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd"
439
+ integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==
440
+ dependencies:
441
+ "@babel/code-frame" "^7.0.0"
442
+ error-ex "^1.3.1"
443
+ json-parse-even-better-errors "^2.3.0"
444
+ lines-and-columns "^1.1.6"
445
+
446
+ path-parse@^1.0.7:
447
+ version "1.0.7"
448
+ resolved "https://registry.npmmirror.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735"
449
+ integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==
450
+
451
+ path-type@^4.0.0:
452
+ version "4.0.0"
453
+ resolved "https://registry.npmmirror.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b"
454
+ integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==
455
+
456
+ regenerator-runtime@^0.13.4:
457
+ version "0.13.9"
458
+ resolved "https://registry.npmmirror.com/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz#8925742a98ffd90814988d7566ad30ca3b263b52"
459
+ integrity sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==
460
+
461
+ resize-observer-polyfill@^1.5.1:
462
+ version "1.5.1"
463
+ resolved "https://registry.npmmirror.com/resize-observer-polyfill/-/resize-observer-polyfill-1.5.1.tgz#0e9020dd3d21024458d4ebd27e23e40269810464"
464
+ integrity sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==
465
+
466
+ resolve-from@^4.0.0:
467
+ version "4.0.0"
468
+ resolved "https://registry.npmmirror.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6"
469
+ integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==
470
+
471
+ resolve@^1.12.0:
472
+ version "1.22.0"
473
+ resolved "https://registry.npmmirror.com/resolve/-/resolve-1.22.0.tgz#5e0b8c67c15df57a89bdbabe603a002f21731198"
474
+ integrity sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw==
475
+ dependencies:
476
+ is-core-module "^2.8.1"
477
+ path-parse "^1.0.7"
478
+ supports-preserve-symlinks-flag "^1.0.0"
479
+
480
+ safe-buffer@~5.1.1:
481
+ version "5.1.2"
482
+ resolved "https://registry.npmmirror.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
483
+ integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==
484
+
485
+ source-map@^0.5.7:
486
+ version "0.5.7"
487
+ resolved "https://registry.npmmirror.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
488
+ integrity sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==
489
+
490
+ stylis@4.0.13:
491
+ version "4.0.13"
492
+ resolved "https://registry.npmmirror.com/stylis/-/stylis-4.0.13.tgz#f5db332e376d13cc84ecfe5dace9a2a51d954c91"
493
+ integrity sha512-xGPXiFVl4YED9Jh7Euv2V220mriG9u4B2TA6Ybjc1catrstKD2PpIdU3U0RKpkVBC2EhmL/F0sPCr9vrFTNRag==
494
+
495
+ supports-color@^5.3.0:
496
+ version "5.5.0"
497
+ resolved "https://registry.npmmirror.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f"
498
+ integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==
499
+ dependencies:
500
+ has-flag "^3.0.0"
501
+
502
+ supports-preserve-symlinks-flag@^1.0.0:
503
+ version "1.0.0"
504
+ resolved "https://registry.npmmirror.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09"
505
+ integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==
506
+
507
+ tinycolor2@^1.4.2:
508
+ version "1.4.2"
509
+ resolved "https://registry.npmmirror.com/tinycolor2/-/tinycolor2-1.4.2.tgz#3f6a4d1071ad07676d7fa472e1fac40a719d8803"
510
+ integrity sha512-vJhccZPs965sV/L2sU4oRQVAos0pQXwsvTLkWYdqJ+a8Q5kPFzJTuOFwy7UniPli44NKQGAglksjvOcpo95aZA==
511
+
512
+ to-fast-properties@^2.0.0:
513
+ version "2.0.0"
514
+ resolved "https://registry.npmmirror.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e"
515
+ integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==
516
+
517
+ tslib@^2.2.0, tslib@^2.3.1:
518
+ version "2.3.1"
519
+ resolved "https://registry.npmmirror.com/tslib/-/tslib-2.3.1.tgz#e8a335add5ceae51aa261d32a490158ef042ef01"
520
+ integrity sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==
521
+
522
+ vdt-compiler@^3.0.9:
523
+ version "3.0.9"
524
+ resolved "https://registry.yarnpkg.com/vdt-compiler/-/vdt-compiler-3.0.9.tgz#4d33cedd92bf622b553869480ef3f1c1e0490bea"
525
+ integrity sha512-pK9aQUxcpXs6fho5bJ8jrlp/jfBJPomLUtSFexK6nDgShw4yTmXErZUV51tnSSXauO4QsF75OLFdvgcH+F1/Tg==
526
+ dependencies:
527
+ intact-shared "^3.0.9"
528
+ misstime "^3.0.9"
529
+ tslib "^2.2.0"
530
+
531
+ vdt@^3.0.9:
532
+ version "3.0.9"
533
+ resolved "https://registry.yarnpkg.com/vdt/-/vdt-3.0.9.tgz#de3b3259cb2dfd7934c0bb179c6de1b3b4ac025a"
534
+ integrity sha512-TyKJxDaIDryxdseZW7UXN9lQMngTygFPazhQ+O2M+biH6QzP1yk7iTYH4BPKoyJGEfd3zm7z1n/ifRdMRXp7Tw==
535
+ dependencies:
536
+ intact-shared "^3.0.9"
537
+ misstime "^3.0.9"
538
+ tslib "^2.2.0"
539
+
540
+ yaml@^1.7.2:
541
+ version "1.10.2"
542
+ resolved "https://registry.npmmirror.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b"
543
+ integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==