@king-design/react 2.0.16 → 2.0.17-beta.0

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.
@@ -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;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, ";}}");
46
+ return /*#__PURE__*/css("min-width:", cascader.width, "!important;height:", cascader.height, ";overflow:auto;.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, ";}");
@@ -41,7 +41,6 @@ export declare class Dropdown<T extends DropdownProps = DropdownProps, E extends
41
41
  value: boolean;
42
42
  };
43
43
  };
44
- protected alwaysPortal: boolean;
45
44
  private timer;
46
45
  private triggerProps;
47
46
  init(): void;
@@ -57,7 +57,6 @@ export var Dropdown = /*#__PURE__*/function (_Component) {
57
57
  _this.rootDropdown = null;
58
58
  _this.showedDropdown = null;
59
59
  _this.positionHook = usePosition();
60
- _this.alwaysPortal = false;
61
60
  _this.timer = undefined;
62
61
  _this.triggerProps = null;
63
62
  return _this;
@@ -267,11 +266,10 @@ Dropdown.template = function () {
267
266
  });
268
267
  clonedTrigger.className = className;
269
268
  this.menuVNode = menu;
270
- return [clonedTrigger, // wrap the root dropdown menu to Portal to render into body
271
- this.alwaysPortal || !this.rootDropdown ? h(Portal, {
269
+ return [clonedTrigger, h(Portal, {
272
270
  children: menu,
273
271
  container: this.get('container')
274
- }) : menu];
272
+ })];
275
273
  };
276
274
 
277
275
  __decorate([bind], Dropdown.prototype, "position", null);
@@ -288,9 +286,10 @@ function useDocumentClickForDropdown(dropdown) {
288
286
  };
289
287
 
290
288
  var _useDocumentClick = useDocumentClick(elementRef, function (e) {
291
- // case 1: if click an trigger and the trigger type is hover, ignore it
292
- // case 2: if right click on trigger and the trigger type is contextmenu, ignore it
293
- // case 3: if click on trigger and the trigger type is focus, do nothing
289
+ // case 1: if click a trigger and its trigger type is hover, ignore it
290
+ // case 2: if right click on a trigger and its trigger type is contextmenu, ignore it
291
+ // case 3: if click on a trigger and its trigger type is focus, do nothing
292
+ // case 3: if click on sub-dropdown, we should also show the parent dropdown, so ignore it
294
293
  var trigger = dropdown.get('trigger');
295
294
  if (trigger === 'focus') return;
296
295
  var isHover = trigger === 'hover';
@@ -305,6 +304,7 @@ function useDocumentClickForDropdown(dropdown) {
305
304
  }
306
305
  }
307
306
 
307
+ if (isSubDropdownElement(e.target, dropdown)) return;
308
308
  dropdown.hide(true);
309
309
  }, true),
310
310
  addDocumentClick = _useDocumentClick[0],
@@ -314,6 +314,18 @@ function useDocumentClickForDropdown(dropdown) {
314
314
  dropdown.on('hide', removeDocumentClick);
315
315
  }
316
316
 
317
+ function isSubDropdownElement(elem, dropdown) {
318
+ var showedDropdown = dropdown.showedDropdown;
319
+ if (!showedDropdown) return false;
320
+ var subMenuElement = findDomFromVNode(showedDropdown.menuVNode, true);
321
+
322
+ if (containsOrEqual(subMenuElement, elem)) {
323
+ return true;
324
+ }
325
+
326
+ return isSubDropdownElement(elem, showedDropdown);
327
+ }
328
+
317
329
  function useHideLastMenuOnShow(dropdown) {
318
330
  var parentDropdown = dropdown.dropdown;
319
331
  dropdown.on('show', function () {
@@ -85,7 +85,7 @@ function useKeyboardForDropdownMenu(dropdown) {
85
85
  var focus = function focus() {
86
86
  return focusByIndex(0);
87
87
  }; // In Cascader the menu may have been replaced by another menu, in this case,
88
- // if the dropdown has showed on mount the menu, add keydown listener
88
+ // if the dropdown has showed while we mounted the menu, add keydown listener
89
89
 
90
90
 
91
91
  if (dropdown.get('value')) {
@@ -23,6 +23,5 @@ export declare class Tooltip<T extends TooltipProps = TooltipProps, E extends To
23
23
  static typeDefs: Required<TypeDefs<TooltipProps>>;
24
24
  static defaults: () => Partial<TooltipProps>;
25
25
  static events: Events<TooltipEvents>;
26
- protected alwaysPortal: boolean;
27
26
  hide(immediately: boolean): void;
28
27
  }
@@ -1,6 +1,5 @@
1
1
  import _inheritsLoose from "@babel/runtime-corejs3/helpers/inheritsLoose";
2
2
  import _extends from "@babel/runtime-corejs3/helpers/extends";
3
- import _concatInstanceProperty from "@babel/runtime-corejs3/core-js/instance/concat";
4
3
  import { Dropdown } from '../dropdown/dropdown';
5
4
  import { _$ } from '../../i18n';
6
5
  import { themes } from './styles';
@@ -44,17 +43,7 @@ export var Tooltip = /*#__PURE__*/function (_Dropdown) {
44
43
  _inheritsLoose(Tooltip, _Dropdown);
45
44
 
46
45
  function Tooltip() {
47
- var _context;
48
-
49
- var _this;
50
-
51
- for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
52
- args[_key] = arguments[_key];
53
- }
54
-
55
- _this = _Dropdown.call.apply(_Dropdown, _concatInstanceProperty(_context = [this]).call(_context, args)) || this;
56
- _this.alwaysPortal = true;
57
- return _this;
46
+ return _Dropdown.apply(this, arguments) || this;
58
47
  }
59
48
 
60
49
  var _proto = Tooltip.prototype;
package/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * @king-design v2.0.16
2
+ * @king-design v2.0.17-beta.0
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.16";
60
+ export declare const version = "2.0.17-beta.0";
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.16
2
+ * @king-design v2.0.17-beta.0
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.16';
62
+ export var version = '2.0.17-beta.0';
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.16",
3
+ "version": "2.0.17-beta.0",
4
4
  "description": "King-Design UI components for React.",
5
5
  "keywords": [
6
6
  "component",
package/yarn-error.log DELETED
@@ -1,546 +0,0 @@
1
- Arguments:
2
- /home/javey/.nvm/versions/node/v14.21.3/bin/node /usr/share/yarn/bin/yarn.js
3
-
4
- PATH:
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:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/snap/bin
6
-
7
- Yarn version:
8
- 1.22.19
9
-
10
- Node version:
11
- 14.21.3
12
-
13
- Platform:
14
- linux x64
15
-
16
- Trace:
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)
21
-
22
- npm manifest:
23
- {
24
- "name": "@king-design/react",
25
- "version": "2.0.15",
26
- "description": "King-Design UI components for React.",
27
- "keywords": [
28
- "component",
29
- "intact",
30
- "ui",
31
- "components",
32
- "library",
33
- "react",
34
- "king-design",
35
- "kpc"
36
- ],
37
- "author": "Javey <jiawei23716@sina.com>",
38
- "homepage": "https://design.ksyun.com",
39
- "license": "MIT",
40
- "main": "index.js",
41
- "repository": {
42
- "type": "git",
43
- "url": "git+https://github.com/ksc-fe/kpc.git"
44
- },
45
- "publishConfig": {
46
- "access": "public",
47
- "registry": "https://registry.npmjs.org/"
48
- },
49
- "scripts": {
50
- "test": "../../node_modules/.bin/karma start ./__tests__/karma.conf.js",
51
- "snapshots": "../../node_modules/.bin/cross-env UPDATE=1 npm run test"
52
- },
53
- "bugs": {
54
- "url": "https://github.com/ksc-fe/kpc/issues"
55
- },
56
- "dependencies": {
57
- "@babel/runtime-corejs3": "^7.16.0",
58
- "@emotion/css": "^11.5.0",
59
- "dayjs": "^1.10.7",
60
- "downloadjs": "^1.4.7",
61
- "enquire.js": "^2.1.6",
62
- "intact-react": "3.0.16",
63
- "monaco-editor": "^0.26.1",
64
- "mxgraphx": "^4.0.7",
65
- "resize-observer-polyfill": "^1.5.1",
66
- "tinycolor2": "^1.4.2",
67
- "tslib": "^2.3.1"
68
- },
69
- "sideEffects": [
70
- "**/*/styles/global.*",
71
- "**/*/styles/fonts/*"
72
- ]
73
- }
74
-
75
- yarn manifest:
76
- No manifest
77
-
78
- Lockfile:
79
- # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
80
- # yarn lockfile v1
81
-
82
-
83
- "@babel/code-frame@^7.0.0":
84
- version "7.16.7"
85
- resolved "https://registry.npmmirror.com/@babel/code-frame/-/code-frame-7.16.7.tgz#44416b6bd7624b998f5b1af5d470856c40138789"
86
- integrity sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==
87
- dependencies:
88
- "@babel/highlight" "^7.16.7"
89
-
90
- "@babel/helper-module-imports@^7.12.13":
91
- version "7.16.7"
92
- resolved "https://registry.npmmirror.com/@babel/helper-module-imports/-/helper-module-imports-7.16.7.tgz#25612a8091a999704461c8a222d0efec5d091437"
93
- integrity sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==
94
- dependencies:
95
- "@babel/types" "^7.16.7"
96
-
97
- "@babel/helper-plugin-utils@^7.16.7":
98
- version "7.16.7"
99
- resolved "https://registry.npmmirror.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.7.tgz#aa3a8ab4c3cceff8e65eb9e73d87dc4ff320b2f5"
100
- integrity sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA==
101
-
102
- "@babel/helper-validator-identifier@^7.16.7":
103
- version "7.16.7"
104
- resolved "https://registry.npmmirror.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz#e8c602438c4a8195751243da9031d1607d247cad"
105
- integrity sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==
106
-
107
- "@babel/highlight@^7.16.7":
108
- version "7.16.10"
109
- resolved "https://registry.npmmirror.com/@babel/highlight/-/highlight-7.16.10.tgz#744f2eb81579d6eea753c227b0f570ad785aba88"
110
- integrity sha512-5FnTQLSLswEj6IkgVw5KusNUUFY9ZGqe/TRFnP/BKYHYgfh7tc+C7mwiy95/yNP7Dh9x580Vv8r7u7ZfTBFxdw==
111
- dependencies:
112
- "@babel/helper-validator-identifier" "^7.16.7"
113
- chalk "^2.0.0"
114
- js-tokens "^4.0.0"
115
-
116
- "@babel/plugin-syntax-jsx@^7.12.13":
117
- version "7.16.7"
118
- resolved "https://registry.npmmirror.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.16.7.tgz#50b6571d13f764266a113d77c82b4a6508bbe665"
119
- integrity sha512-Esxmk7YjA8QysKeT3VhTXvF6y77f/a91SIs4pWb4H2eWGQkCKFgQaG6hdoEVZtGsrAcb2K5BW66XsOErD4WU3Q==
120
- dependencies:
121
- "@babel/helper-plugin-utils" "^7.16.7"
122
-
123
- "@babel/runtime-corejs3@^7.16.0":
124
- version "7.17.2"
125
- resolved "https://registry.npmmirror.com/@babel/runtime-corejs3/-/runtime-corejs3-7.17.2.tgz#fdca2cd05fba63388babe85d349b6801b008fd13"
126
- integrity sha512-NcKtr2epxfIrNM4VOmPKO46TvDMCBhgi2CrSHaEarrz+Plk2K5r9QemmOFTGpZaoKnWoGH5MO+CzeRsih/Fcgg==
127
- dependencies:
128
- core-js-pure "^3.20.2"
129
- regenerator-runtime "^0.13.4"
130
-
131
- "@babel/runtime@^7.13.10", "@babel/runtime@^7.7.2":
132
- version "7.17.2"
133
- resolved "https://registry.npmmirror.com/@babel/runtime/-/runtime-7.17.2.tgz#66f68591605e59da47523c631416b18508779941"
134
- integrity sha512-hzeyJyMA1YGdJTuWU0e/j4wKXrU4OMFvY2MSlaI9B7VQb0r5cxTE3EAIS2Q7Tn2RIcDkRvTA/v2JsAEhxe99uw==
135
- dependencies:
136
- regenerator-runtime "^0.13.4"
137
-
138
- "@babel/types@^7.16.7":
139
- version "7.17.0"
140
- resolved "https://registry.npmmirror.com/@babel/types/-/types-7.17.0.tgz#a826e368bccb6b3d84acd76acad5c0d87342390b"
141
- integrity sha512-TmKSNO4D5rzhL5bjWFcVHHLETzfQ/AmbKpKPOSjlP0WoHZ6L911fgoOKY4Alp/emzG4cHJdyN49zpgkbXFEHHw==
142
- dependencies:
143
- "@babel/helper-validator-identifier" "^7.16.7"
144
- to-fast-properties "^2.0.0"
145
-
146
- "@emotion/babel-plugin@^11.7.1":
147
- version "11.7.2"
148
- resolved "https://registry.npmmirror.com/@emotion/babel-plugin/-/babel-plugin-11.7.2.tgz#fec75f38a6ab5b304b0601c74e2a5e77c95e5fa0"
149
- integrity sha512-6mGSCWi9UzXut/ZAN6lGFu33wGR3SJisNl3c0tvlmb8XChH1b2SUvxvnOh7hvLpqyRdHHU9AiazV3Cwbk5SXKQ==
150
- dependencies:
151
- "@babel/helper-module-imports" "^7.12.13"
152
- "@babel/plugin-syntax-jsx" "^7.12.13"
153
- "@babel/runtime" "^7.13.10"
154
- "@emotion/hash" "^0.8.0"
155
- "@emotion/memoize" "^0.7.5"
156
- "@emotion/serialize" "^1.0.2"
157
- babel-plugin-macros "^2.6.1"
158
- convert-source-map "^1.5.0"
159
- escape-string-regexp "^4.0.0"
160
- find-root "^1.1.0"
161
- source-map "^0.5.7"
162
- stylis "4.0.13"
163
-
164
- "@emotion/cache@^11.7.1":
165
- version "11.7.1"
166
- resolved "https://registry.npmmirror.com/@emotion/cache/-/cache-11.7.1.tgz#08d080e396a42e0037848214e8aa7bf879065539"
167
- integrity sha512-r65Zy4Iljb8oyjtLeCuBH8Qjiy107dOYC6SJq7g7GV5UCQWMObY4SJDPGFjiiVpPrOJ2hmJOoBiYTC7hwx9E2A==
168
- dependencies:
169
- "@emotion/memoize" "^0.7.4"
170
- "@emotion/sheet" "^1.1.0"
171
- "@emotion/utils" "^1.0.0"
172
- "@emotion/weak-memoize" "^0.2.5"
173
- stylis "4.0.13"
174
-
175
- "@emotion/css@^11.5.0":
176
- version "11.7.1"
177
- resolved "https://registry.npmmirror.com/@emotion/css/-/css-11.7.1.tgz#516b717340d36b0bbd2304ba7e1a090e866f8acc"
178
- integrity sha512-RUUgPlMZunlc7SE5A6Hg+VWRzb2cU6O9xlV78KCFgcnl25s7Qz/20oQg71iKudpLqk7xj0vhbJlwcJJMT0BOZg==
179
- dependencies:
180
- "@emotion/babel-plugin" "^11.7.1"
181
- "@emotion/cache" "^11.7.1"
182
- "@emotion/serialize" "^1.0.0"
183
- "@emotion/sheet" "^1.0.3"
184
- "@emotion/utils" "^1.0.0"
185
-
186
- "@emotion/hash@^0.8.0":
187
- version "0.8.0"
188
- resolved "https://registry.npmmirror.com/@emotion/hash/-/hash-0.8.0.tgz#bbbff68978fefdbe68ccb533bc8cbe1d1afb5413"
189
- integrity sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==
190
-
191
- "@emotion/memoize@^0.7.4", "@emotion/memoize@^0.7.5":
192
- version "0.7.5"
193
- resolved "https://registry.npmmirror.com/@emotion/memoize/-/memoize-0.7.5.tgz#2c40f81449a4e554e9fc6396910ed4843ec2be50"
194
- integrity sha512-igX9a37DR2ZPGYtV6suZ6whr8pTFtyHL3K/oLUotxpSVO2ASaprmAe2Dkq7tBo7CRY7MMDrAa9nuQP9/YG8FxQ==
195
-
196
- "@emotion/serialize@^1.0.0", "@emotion/serialize@^1.0.2":
197
- version "1.0.2"
198
- resolved "https://registry.npmmirror.com/@emotion/serialize/-/serialize-1.0.2.tgz#77cb21a0571c9f68eb66087754a65fa97bfcd965"
199
- integrity sha512-95MgNJ9+/ajxU7QIAruiOAdYNjxZX7G2mhgrtDWswA21VviYIRP1R5QilZ/bDY42xiKsaktP4egJb3QdYQZi1A==
200
- dependencies:
201
- "@emotion/hash" "^0.8.0"
202
- "@emotion/memoize" "^0.7.4"
203
- "@emotion/unitless" "^0.7.5"
204
- "@emotion/utils" "^1.0.0"
205
- csstype "^3.0.2"
206
-
207
- "@emotion/sheet@^1.0.3", "@emotion/sheet@^1.1.0":
208
- version "1.1.0"
209
- resolved "https://registry.npmmirror.com/@emotion/sheet/-/sheet-1.1.0.tgz#56d99c41f0a1cda2726a05aa6a20afd4c63e58d2"
210
- integrity sha512-u0AX4aSo25sMAygCuQTzS+HsImZFuS8llY8O7b9MDRzbJM0kVJlAz6KNDqcG7pOuQZJmj/8X/rAW+66kMnMW+g==
211
-
212
- "@emotion/unitless@^0.7.5":
213
- version "0.7.5"
214
- resolved "https://registry.npmmirror.com/@emotion/unitless/-/unitless-0.7.5.tgz#77211291c1900a700b8a78cfafda3160d76949ed"
215
- integrity sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==
216
-
217
- "@emotion/utils@^1.0.0":
218
- version "1.0.0"
219
- resolved "https://registry.npmmirror.com/@emotion/utils/-/utils-1.0.0.tgz#abe06a83160b10570816c913990245813a2fd6af"
220
- integrity sha512-mQC2b3XLDs6QCW+pDQDiyO/EdGZYOygE8s5N5rrzjSI4M3IejPE/JPndCBwRT9z982aqQNi6beWs1UeayrQxxA==
221
-
222
- "@emotion/weak-memoize@^0.2.5":
223
- version "0.2.5"
224
- resolved "https://registry.npmmirror.com/@emotion/weak-memoize/-/weak-memoize-0.2.5.tgz#8eed982e2ee6f7f4e44c253e12962980791efd46"
225
- integrity sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA==
226
-
227
- "@types/parse-json@^4.0.0":
228
- version "4.0.0"
229
- resolved "https://registry.npmmirror.com/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0"
230
- integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==
231
-
232
- ansi-styles@^3.2.1:
233
- version "3.2.1"
234
- resolved "https://registry.npmmirror.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
235
- integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==
236
- dependencies:
237
- color-convert "^1.9.0"
238
-
239
- babel-plugin-macros@^2.6.1:
240
- version "2.8.0"
241
- resolved "https://registry.npmmirror.com/babel-plugin-macros/-/babel-plugin-macros-2.8.0.tgz#0f958a7cc6556b1e65344465d99111a1e5e10138"
242
- integrity sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==
243
- dependencies:
244
- "@babel/runtime" "^7.7.2"
245
- cosmiconfig "^6.0.0"
246
- resolve "^1.12.0"
247
-
248
- callsites@^3.0.0:
249
- version "3.1.0"
250
- resolved "https://registry.npmmirror.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73"
251
- integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==
252
-
253
- chalk@^2.0.0:
254
- version "2.4.2"
255
- resolved "https://registry.npmmirror.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
256
- integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
257
- dependencies:
258
- ansi-styles "^3.2.1"
259
- escape-string-regexp "^1.0.5"
260
- supports-color "^5.3.0"
261
-
262
- color-convert@^1.9.0:
263
- version "1.9.3"
264
- resolved "https://registry.npmmirror.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8"
265
- integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==
266
- dependencies:
267
- color-name "1.1.3"
268
-
269
- color-name@1.1.3:
270
- version "1.1.3"
271
- resolved "https://registry.npmmirror.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
272
- integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==
273
-
274
- convert-source-map@^1.5.0:
275
- version "1.8.0"
276
- resolved "https://registry.npmmirror.com/convert-source-map/-/convert-source-map-1.8.0.tgz#f3373c32d21b4d780dd8004514684fb791ca4369"
277
- integrity sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==
278
- dependencies:
279
- safe-buffer "~5.1.1"
280
-
281
- core-js-pure@^3.20.2:
282
- version "3.21.0"
283
- resolved "https://registry.npmmirror.com/core-js-pure/-/core-js-pure-3.21.0.tgz#819adc8dfb808205ce25b51d50591becd615db7e"
284
- integrity sha512-VaJUunCZLnxuDbo1rNOzwbet9E1K9joiXS5+DQMPtgxd24wfsZbJZMMfQLGYMlCUvSxLfsRUUhoOR2x28mFfeg==
285
-
286
- cosmiconfig@^6.0.0:
287
- version "6.0.0"
288
- resolved "https://registry.npmmirror.com/cosmiconfig/-/cosmiconfig-6.0.0.tgz#da4fee853c52f6b1e6935f41c1a2fc50bd4a9982"
289
- integrity sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==
290
- dependencies:
291
- "@types/parse-json" "^4.0.0"
292
- import-fresh "^3.1.0"
293
- parse-json "^5.0.0"
294
- path-type "^4.0.0"
295
- yaml "^1.7.2"
296
-
297
- csstype@^3.0.2:
298
- version "3.0.10"
299
- resolved "https://registry.npmmirror.com/csstype/-/csstype-3.0.10.tgz#2ad3a7bed70f35b965707c092e5f30b327c290e5"
300
- integrity sha512-2u44ZG2OcNUO9HDp/Jl8C07x6pU/eTR3ncV91SiK3dhG9TWvRVsCoJw14Ckx5DgWkzGA3waZWO3d7pgqpUI/XA==
301
-
302
- dayjs@^1.10.7:
303
- version "1.10.7"
304
- resolved "https://registry.npmmirror.com/dayjs/-/dayjs-1.10.7.tgz#2cf5f91add28116748440866a0a1d26f3a6ce468"
305
- integrity sha512-P6twpd70BcPK34K26uJ1KT3wlhpuOAPoMwJzpsIWUxHZ7wpmbdZL/hQqBDfz7hGurYSa5PhzdhDHtt319hL3ig==
306
-
307
- downloadjs@^1.4.7:
308
- version "1.4.7"
309
- resolved "https://registry.npmmirror.com/downloadjs/-/downloadjs-1.4.7.tgz#f69f96f940e0d0553dac291139865a3cd0101e3c"
310
- integrity sha512-LN1gO7+u9xjU5oEScGFKvXhYf7Y/empUIIEAGBs1LzUq/rg5duiDrkuH5A2lQGd5jfMOb9X9usDa2oVXwJ0U/Q==
311
-
312
- enquire.js@^2.1.6:
313
- version "2.1.6"
314
- resolved "https://registry.npmmirror.com/enquire.js/-/enquire.js-2.1.6.tgz#3e8780c9b8b835084c3f60e166dbc3c2a3c89814"
315
- integrity sha512-/KujNpO+PT63F7Hlpu4h3pE3TokKRHN26JYmQpPyjkRD/N57R7bPDNojMXdi7uveAKjYB7yQnartCxZnFWr0Xw==
316
-
317
- error-ex@^1.3.1:
318
- version "1.3.2"
319
- resolved "https://registry.npmmirror.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf"
320
- integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==
321
- dependencies:
322
- is-arrayish "^0.2.1"
323
-
324
- escape-string-regexp@^1.0.5:
325
- version "1.0.5"
326
- resolved "https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
327
- integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==
328
-
329
- escape-string-regexp@^4.0.0:
330
- version "4.0.0"
331
- resolved "https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34"
332
- integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==
333
-
334
- find-root@^1.1.0:
335
- version "1.1.0"
336
- resolved "https://registry.npmmirror.com/find-root/-/find-root-1.1.0.tgz#abcfc8ba76f708c42a97b3d685b7e9450bfb9ce4"
337
- integrity sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==
338
-
339
- function-bind@^1.1.1:
340
- version "1.1.1"
341
- resolved "https://registry.npmmirror.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
342
- integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==
343
-
344
- has-flag@^3.0.0:
345
- version "3.0.0"
346
- resolved "https://registry.npmmirror.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
347
- integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==
348
-
349
- has@^1.0.3:
350
- version "1.0.3"
351
- resolved "https://registry.npmmirror.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796"
352
- integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==
353
- dependencies:
354
- function-bind "^1.1.1"
355
-
356
- import-fresh@^3.1.0:
357
- version "3.3.0"
358
- resolved "https://registry.npmmirror.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b"
359
- integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==
360
- dependencies:
361
- parent-module "^1.0.0"
362
- resolve-from "^4.0.0"
363
-
364
- intact-react@3.0.15:
365
- version "3.0.15"
366
- resolved "https://registry.yarnpkg.com/intact-react/-/intact-react-3.0.15.tgz#d90d8171469807282555629b858083b2125c57cc"
367
- integrity sha512-aCMFtThscRnqPao77MBUeDbFnQvJXkUFMoPfHHYuoMsmzZtvNc2wzzgw4WRwFMB9Dx8dQSFgs0MiyZERebQAJA==
368
- dependencies:
369
- intact "^3.0.15"
370
- tslib "^2.3.1"
371
-
372
- intact-shared@^3.0.15:
373
- version "3.0.15"
374
- resolved "https://registry.yarnpkg.com/intact-shared/-/intact-shared-3.0.15.tgz#7d87c3632496a735d4873abffc3ec77004d23047"
375
- integrity sha512-b8AavWEKACuQC9WrkIaQ9PatjuPvTbo8mw+1JZTM8P0/w3fzgbS5CF9qxjWp+BvB2D9Wlg+oQgQAO73yyyxU8A==
376
-
377
- intact@^3.0.15:
378
- version "3.0.15"
379
- resolved "https://registry.yarnpkg.com/intact/-/intact-3.0.15.tgz#3dede766b1cc95b4143842d5db520e900d548c76"
380
- integrity sha512-dvQ6oUEIY0AUigKEw82k4u6KqTRK+C+7RNXr0E2puIytQG+VseUXj7JhbzH7eWELL7vKI/D9Pd7QexG0vKRbZA==
381
- dependencies:
382
- intact-shared "^3.0.15"
383
- misstime "^3.0.15"
384
- tslib "^2.2.0"
385
- vdt "^3.0.15"
386
- vdt-compiler "^3.0.15"
387
-
388
- is-arrayish@^0.2.1:
389
- version "0.2.1"
390
- resolved "https://registry.npmmirror.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
391
- integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==
392
-
393
- is-core-module@^2.8.1:
394
- version "2.8.1"
395
- resolved "https://registry.npmmirror.com/is-core-module/-/is-core-module-2.8.1.tgz#f59fdfca701d5879d0a6b100a40aa1560ce27211"
396
- integrity sha512-SdNCUs284hr40hFTFP6l0IfZ/RSrMXF3qgoRHd3/79unUTvrFO/JoXwkGm+5J/Oe3E/b5GsnG330uUNgRpu1PA==
397
- dependencies:
398
- has "^1.0.3"
399
-
400
- js-tokens@^4.0.0:
401
- version "4.0.0"
402
- resolved "https://registry.npmmirror.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
403
- integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
404
-
405
- json-parse-even-better-errors@^2.3.0:
406
- version "2.3.1"
407
- resolved "https://registry.npmmirror.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d"
408
- integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==
409
-
410
- lines-and-columns@^1.1.6:
411
- version "1.2.4"
412
- resolved "https://registry.npmmirror.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632"
413
- integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==
414
-
415
- misstime@^3.0.15:
416
- version "3.0.15"
417
- resolved "https://registry.yarnpkg.com/misstime/-/misstime-3.0.15.tgz#e530b432ca2156d0d4c6b4c26ddfd5edb3eb568b"
418
- integrity sha512-1cJHhPXWud6BUtxHSspsFo+3NHB2m/sA3DY+bnI5bwad3MG9t8k8Gn/Kn6nEYcQ2WpTjP/OH1Alwo2pPlj2rvA==
419
- dependencies:
420
- intact-shared "^3.0.15"
421
-
422
- monaco-editor@^0.26.1:
423
- version "0.26.1"
424
- resolved "https://registry.npmmirror.com/monaco-editor/-/monaco-editor-0.26.1.tgz#62bb5f658bc95379f8abb64b147632bd1c019d73"
425
- integrity sha512-mm45nUrBDk0DgZKgbD7+bhDOtcAFNGPJJRAdS6Su1kTGl6XEgC7U3xOmDUW/0RrLf+jlvCGaqLvD4p2VjwuwwQ==
426
-
427
- mxgraphx@^4.0.7:
428
- version "4.0.7"
429
- resolved "https://registry.npmmirror.com/mxgraphx/-/mxgraphx-4.0.7.tgz#5a904654916b883ff4246af8ad5edfe3e924ff74"
430
- integrity sha512-N8KRnMy5Rkiab3X9lx618Nmzr/oZ0jfyrtPVqt+yOqlgq6CZD0242exPktRzKTpUABZetdRXcR7tBPAjZXTB1g==
431
-
432
- parent-module@^1.0.0:
433
- version "1.0.1"
434
- resolved "https://registry.npmmirror.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2"
435
- integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==
436
- dependencies:
437
- callsites "^3.0.0"
438
-
439
- parse-json@^5.0.0:
440
- version "5.2.0"
441
- resolved "https://registry.npmmirror.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd"
442
- integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==
443
- dependencies:
444
- "@babel/code-frame" "^7.0.0"
445
- error-ex "^1.3.1"
446
- json-parse-even-better-errors "^2.3.0"
447
- lines-and-columns "^1.1.6"
448
-
449
- path-parse@^1.0.7:
450
- version "1.0.7"
451
- resolved "https://registry.npmmirror.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735"
452
- integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==
453
-
454
- path-type@^4.0.0:
455
- version "4.0.0"
456
- resolved "https://registry.npmmirror.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b"
457
- integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==
458
-
459
- regenerator-runtime@^0.13.4:
460
- version "0.13.9"
461
- resolved "https://registry.npmmirror.com/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz#8925742a98ffd90814988d7566ad30ca3b263b52"
462
- integrity sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==
463
-
464
- resize-observer-polyfill@^1.5.1:
465
- version "1.5.1"
466
- resolved "https://registry.npmmirror.com/resize-observer-polyfill/-/resize-observer-polyfill-1.5.1.tgz#0e9020dd3d21024458d4ebd27e23e40269810464"
467
- integrity sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==
468
-
469
- resolve-from@^4.0.0:
470
- version "4.0.0"
471
- resolved "https://registry.npmmirror.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6"
472
- integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==
473
-
474
- resolve@^1.12.0:
475
- version "1.22.0"
476
- resolved "https://registry.npmmirror.com/resolve/-/resolve-1.22.0.tgz#5e0b8c67c15df57a89bdbabe603a002f21731198"
477
- integrity sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw==
478
- dependencies:
479
- is-core-module "^2.8.1"
480
- path-parse "^1.0.7"
481
- supports-preserve-symlinks-flag "^1.0.0"
482
-
483
- safe-buffer@~5.1.1:
484
- version "5.1.2"
485
- resolved "https://registry.npmmirror.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
486
- integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==
487
-
488
- source-map@^0.5.7:
489
- version "0.5.7"
490
- resolved "https://registry.npmmirror.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
491
- integrity sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==
492
-
493
- stylis@4.0.13:
494
- version "4.0.13"
495
- resolved "https://registry.npmmirror.com/stylis/-/stylis-4.0.13.tgz#f5db332e376d13cc84ecfe5dace9a2a51d954c91"
496
- integrity sha512-xGPXiFVl4YED9Jh7Euv2V220mriG9u4B2TA6Ybjc1catrstKD2PpIdU3U0RKpkVBC2EhmL/F0sPCr9vrFTNRag==
497
-
498
- supports-color@^5.3.0:
499
- version "5.5.0"
500
- resolved "https://registry.npmmirror.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f"
501
- integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==
502
- dependencies:
503
- has-flag "^3.0.0"
504
-
505
- supports-preserve-symlinks-flag@^1.0.0:
506
- version "1.0.0"
507
- resolved "https://registry.npmmirror.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09"
508
- integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==
509
-
510
- tinycolor2@^1.4.2:
511
- version "1.4.2"
512
- resolved "https://registry.npmmirror.com/tinycolor2/-/tinycolor2-1.4.2.tgz#3f6a4d1071ad07676d7fa472e1fac40a719d8803"
513
- integrity sha512-vJhccZPs965sV/L2sU4oRQVAos0pQXwsvTLkWYdqJ+a8Q5kPFzJTuOFwy7UniPli44NKQGAglksjvOcpo95aZA==
514
-
515
- to-fast-properties@^2.0.0:
516
- version "2.0.0"
517
- resolved "https://registry.npmmirror.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e"
518
- integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==
519
-
520
- tslib@^2.2.0, tslib@^2.3.1:
521
- version "2.3.1"
522
- resolved "https://registry.npmmirror.com/tslib/-/tslib-2.3.1.tgz#e8a335add5ceae51aa261d32a490158ef042ef01"
523
- integrity sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==
524
-
525
- vdt-compiler@^3.0.15:
526
- version "3.0.15"
527
- resolved "https://registry.yarnpkg.com/vdt-compiler/-/vdt-compiler-3.0.15.tgz#3c2c84d06821015fe68b6d2fc5b933924ac1a182"
528
- integrity sha512-iXRSJ0UtFJuhIYtpvMXnfecyHpUjYST3P4H5+GH531G8GcX4RY+fRMmlC+HJvJR97eBA7o9ocatmG62g2WTUGg==
529
- dependencies:
530
- intact-shared "^3.0.15"
531
- misstime "^3.0.15"
532
- tslib "^2.2.0"
533
-
534
- vdt@^3.0.15:
535
- version "3.0.15"
536
- resolved "https://registry.yarnpkg.com/vdt/-/vdt-3.0.15.tgz#80367a148eb8afdfd1a899ef0df94cba0caa7790"
537
- integrity sha512-Fsl0wle7WxNh8z5mwDXqDrAUBdmnbtFFkIOa2ptnwRMqP2sIVzxurx6rh+S6Tat8FHnKkz79/s9+wHMg/Y/7zA==
538
- dependencies:
539
- intact-shared "^3.0.15"
540
- misstime "^3.0.15"
541
- tslib "^2.2.0"
542
-
543
- yaml@^1.7.2:
544
- version "1.10.2"
545
- resolved "https://registry.npmmirror.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b"
546
- integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==