@king-design/react 2.1.3 → 2.1.5

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.
@@ -193,7 +193,7 @@ describe('Cascader', function () {
193
193
  }, _callee5);
194
194
  })));
195
195
  it('filter', /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee6() {
196
- var _mount5, instance, element, input, dropdown, dropdown1;
196
+ var _mount5, instance, element, input, dropdown, dropdown1, _getElements2, _dropdown1, _dropdown2, _dropdown3;
197
197
 
198
198
  return _regeneratorRuntime.wrap(function _callee6$(_context6) {
199
199
  while (1) {
@@ -248,9 +248,19 @@ describe('Cascader', function () {
248
248
  return wait();
249
249
 
250
250
  case 34:
251
- expect(instance.get('value')).to.eql(['hunan', 'yueyang', 'yueyanglou']);
251
+ expect(instance.get('value')).to.eql(['hunan', 'yueyang', 'yueyanglou']); // show again to test the position
252
252
 
253
- case 35:
253
+ input.click();
254
+ _context6.next = 38;
255
+ return wait();
256
+
257
+ case 38:
258
+ _getElements2 = getElements('.k-cascader-menu'), _dropdown1 = _getElements2[0], _dropdown2 = _getElements2[1], _dropdown3 = _getElements2[2];
259
+ expect(_dropdown1.style.top).not.eql('0px');
260
+ expect(_dropdown2.style.top).not.eql('0px');
261
+ expect(_dropdown3.style.top).not.eql('0px');
262
+
263
+ case 42:
254
264
  case "end":
255
265
  return _context6.stop();
256
266
  }
@@ -283,7 +293,7 @@ describe('Cascader', function () {
283
293
  }, _callee7);
284
294
  })));
285
295
  it('duplicated sub data', /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee8() {
286
- var Demo, _mount7, instance, element, _getElements2, dropdown1, dropdown2, _dropdown1$querySelec4, item1, item2, _dropdown2$querySelec3, item21, dropdown3, _dropdown3$querySelec2, item31;
296
+ var Demo, _mount7, instance, element, _getElements3, dropdown1, dropdown2, _dropdown1$querySelec4, item1, item2, _dropdown2$querySelec3, item21, dropdown3, _dropdown3$querySelec2, item31;
287
297
 
288
298
  return _regeneratorRuntime.wrap(function _callee8$(_context9) {
289
299
  while (1) {
@@ -337,7 +347,7 @@ describe('Cascader', function () {
337
347
  return wait();
338
348
 
339
349
  case 6:
340
- _getElements2 = getElements('.k-cascader-menu'), dropdown1 = _getElements2[0], dropdown2 = _getElements2[1];
350
+ _getElements3 = getElements('.k-cascader-menu'), dropdown1 = _getElements3[0], dropdown2 = _getElements3[1];
341
351
  _dropdown1$querySelec4 = dropdown1.querySelectorAll(':scope > .k-dropdown-item'), item1 = _dropdown1$querySelec4[0], item2 = _dropdown1$querySelec4[1];
342
352
  expect(item1.classList.contains('k-selected')).to.be.true;
343
353
  expect(item2.classList.contains('k-selected')).to.be.false;
@@ -447,4 +457,71 @@ describe('Cascader', function () {
447
457
  }
448
458
  }, _callee9);
449
459
  })));
460
+ it('should select correct value', /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee10() {
461
+ var Demo, _mount9, instance, element, _getElements4, dropdown1, dropdown2, _dropdown1$querySelec6, item1, item2;
462
+
463
+ return _regeneratorRuntime.wrap(function _callee10$(_context13) {
464
+ while (1) {
465
+ switch (_context13.prev = _context13.next) {
466
+ case 0:
467
+ Demo = /*#__PURE__*/function (_Component3) {
468
+ _inheritsLoose(Demo, _Component3);
469
+
470
+ function Demo() {
471
+ var _context12;
472
+
473
+ var _this3;
474
+
475
+ for (var _len3 = arguments.length, args = new Array(_len3), _key3 = 0; _key3 < _len3; _key3++) {
476
+ args[_key3] = arguments[_key3];
477
+ }
478
+
479
+ _this3 = _Component3.call.apply(_Component3, _concatInstanceProperty(_context12 = [this]).call(_context12, args)) || this;
480
+ _this3.Cascader = Cascader;
481
+ return _this3;
482
+ }
483
+
484
+ Demo.defaults = function defaults() {
485
+ return {
486
+ value: ['beijing', 'haidian'],
487
+ data: [{
488
+ value: 'beijing',
489
+ label: '北京',
490
+ children: [{
491
+ value: 'haidian',
492
+ label: '海淀区'
493
+ }]
494
+ }, {
495
+ value: 'hunan',
496
+ label: '湖南'
497
+ }]
498
+ };
499
+ };
500
+
501
+ return Demo;
502
+ }(Component);
503
+
504
+ Demo.template = "\n const {Cascader} = this;\n <Cascader data={this.get('data')} v-model=\"value\" />\n ";
505
+ _mount9 = mount(Demo), instance = _mount9[0], element = _mount9[1];
506
+ dispatchEvent(element, 'click');
507
+ _context13.next = 6;
508
+ return wait();
509
+
510
+ case 6:
511
+ _getElements4 = getElements('.k-cascader-menu'), dropdown1 = _getElements4[0], dropdown2 = _getElements4[1];
512
+ _dropdown1$querySelec6 = dropdown1.querySelectorAll(':scope > .k-dropdown-item'), item1 = _dropdown1$querySelec6[0], item2 = _dropdown1$querySelec6[1];
513
+ dispatchEvent(item2, 'click');
514
+ _context13.next = 11;
515
+ return wait();
516
+
517
+ case 11:
518
+ expect(instance.get('value')).to.eql(['hunan']);
519
+
520
+ case 12:
521
+ case "end":
522
+ return _context13.stop();
523
+ }
524
+ }
525
+ }, _callee10);
526
+ })));
450
527
  });
@@ -91,7 +91,7 @@ export function useValue() {
91
91
  // maybe the showedValue has the leaf value when we set it on show menu,
92
92
  // if we select by clicking, the showedValue has not the leaf value,
93
93
  // no matter which case, we set the last value by level
94
- var newValue = _sliceInstanceProperty(_context4 = showedValue.value).call(_context4, 0);
94
+ var newValue = _sliceInstanceProperty(_context4 = showedValue.value).call(_context4, 0, level);
95
95
 
96
96
  newValue[level] = value;
97
97
  setValue(newValue);
@@ -8,6 +8,7 @@ import { DROPDOWN } from './dropdown';
8
8
  import { useTransition } from './useTransition';
9
9
  import { useMenuKeyboard } from './useKeyboard';
10
10
  import { useMouseOutsidable } from '../../hooks/useMouseOutsidable';
11
+ import { usePositionForDropdownMenu } from './usePosition';
11
12
  export var DROPDOWN_MENU = 'DropdownMenu';
12
13
  export var DropdownMenu = /*#__PURE__*/function (_Component) {
13
14
  _inheritsLoose(DropdownMenu, _Component);
@@ -36,6 +37,7 @@ export var DropdownMenu = /*#__PURE__*/function (_Component) {
36
37
  _proto.init = function init() {
37
38
  provide(DROPDOWN_MENU, this);
38
39
  useMouseOutsidable(this.elementRef);
40
+ usePositionForDropdownMenu();
39
41
  } // no matter what the trigger is, we should show menu when enter into it.
40
42
  ;
41
43
 
@@ -6,3 +6,4 @@ export declare function usePosition(): {
6
6
  value: boolean;
7
7
  };
8
8
  };
9
+ export declare function usePositionForDropdownMenu(): void;
@@ -1,5 +1,5 @@
1
1
  import _extends from "@babel/runtime-corejs3/helpers/extends";
2
- import { useInstance, findDomFromVNode } from 'intact-react';
2
+ import { useInstance, findDomFromVNode, onBeforeUnmount } from 'intact-react';
3
3
  import { position } from '../position';
4
4
  import { noop, isObject, isFunction } from 'intact-shared';
5
5
  import { isEqualObject } from '../utils';
@@ -122,4 +122,16 @@ export function usePosition() {
122
122
  handle: handle,
123
123
  positioned: positioned
124
124
  };
125
+ }
126
+ export function usePositionForDropdownMenu() {
127
+ var instance = useInstance();
128
+ /**
129
+ * Meybe the DropdownMenu has changed by specified key
130
+ * so, we must reset the positioned.value beforeUnmount
131
+ * #956
132
+ */
133
+
134
+ onBeforeUnmount(function () {
135
+ instance.dropdown.positionHook.positioned.value = false;
136
+ });
125
137
  }
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * don't trigger focusout event when layer is showing,
3
- * only trigger focusout when it hidden to make FormItem to validate it
3
+ * only trigger focusout when it is hidden to make FormItem to validate it
4
4
  * #449
5
5
  */
6
6
  export declare function useFocusout(): {
@@ -2,7 +2,7 @@ import _Object$assign from "@babel/runtime-corejs3/core-js/object/assign";
2
2
  import { useInstance, createRef } from 'intact-react';
3
3
  /**
4
4
  * don't trigger focusout event when layer is showing,
5
- * only trigger focusout when it hidden to make FormItem to validate it
5
+ * only trigger focusout when it is hidden to make FormItem to validate it
6
6
  * #449
7
7
  */
8
8
 
package/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * @king-design v2.1.3
2
+ * @king-design v2.1.5
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.3";
60
+ export declare const version = "2.1.5";
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.3
2
+ * @king-design v2.1.5
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.3';
62
+ export var version = '2.1.5';
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",
3
+ "version": "2.1.5",
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.26",
40
+ "intact-react": "3.0.28",
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 DELETED
@@ -1,528 +0,0 @@
1
- Arguments:
2
- /home/javey/.nvm/versions/node/v14.21.3/bin/node /usr/share/yarn/bin/yarn.js --registry=https://registry.npmjs.org
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:/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
-
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": "3.1.1",
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
- "enquire.js": "^2.1.6",
61
- "intact-react": "3.0.23",
62
- "monaco-editor": "^0.26.1",
63
- "mxgraphx": "^4.0.7",
64
- "resize-observer-polyfill": "^1.5.1",
65
- "tinycolor2": "^1.4.2",
66
- "tslib": "^2.3.1"
67
- },
68
- "sideEffects": [
69
- "**/*/styles/global.*",
70
- "**/*/styles/fonts/*"
71
- ]
72
- }
73
-
74
- yarn manifest:
75
- No manifest
76
-
77
- Lockfile:
78
- # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
79
- # yarn lockfile v1
80
-
81
-
82
- "@babel/code-frame@^7.0.0":
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==
86
- dependencies:
87
- "@babel/highlight" "^7.22.10"
88
- chalk "^2.4.2"
89
-
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==
94
- dependencies:
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==
111
- dependencies:
112
- "@babel/helper-validator-identifier" "^7.22.5"
113
- chalk "^2.4.2"
114
- js-tokens "^4.0.0"
115
-
116
- "@babel/runtime-corejs3@^7.16.0":
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==
120
- dependencies:
121
- core-js-pure "^3.30.2"
122
- regenerator-runtime "^0.14.0"
123
-
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==
128
- dependencies:
129
- regenerator-runtime "^0.14.0"
130
-
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==
135
- dependencies:
136
- "@babel/helper-string-parser" "^7.22.5"
137
- "@babel/helper-validator-identifier" "^7.22.5"
138
- to-fast-properties "^2.0.0"
139
-
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==
144
- dependencies:
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"
151
- convert-source-map "^1.5.0"
152
- escape-string-regexp "^4.0.0"
153
- find-root "^1.1.0"
154
- source-map "^0.5.7"
155
- stylis "4.2.0"
156
-
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==
161
- dependencies:
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"
167
-
168
- "@emotion/css@^11.5.0":
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==
172
- dependencies:
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==
193
- dependencies:
194
- "@emotion/hash" "^0.9.1"
195
- "@emotion/memoize" "^0.8.1"
196
- "@emotion/unitless" "^0.8.1"
197
- "@emotion/utils" "^1.2.1"
198
- csstype "^3.0.2"
199
-
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==
204
-
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==
209
-
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==
214
-
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==
219
-
220
- "@types/parse-json@^4.0.0":
221
- version "4.0.0"
222
- resolved "https://registry.npmmirror.com/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0"
223
- integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==
224
-
225
- ansi-styles@^3.2.1:
226
- version "3.2.1"
227
- resolved "https://registry.npmmirror.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
228
- integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==
229
- dependencies:
230
- color-convert "^1.9.0"
231
-
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==
236
- dependencies:
237
- "@babel/runtime" "^7.12.5"
238
- cosmiconfig "^7.0.0"
239
- resolve "^1.19.0"
240
-
241
- callsites@^3.0.0:
242
- version "3.1.0"
243
- resolved "https://registry.npmmirror.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73"
244
- integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==
245
-
246
- chalk@^2.4.2:
247
- version "2.4.2"
248
- resolved "https://registry.npmmirror.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
249
- integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
250
- dependencies:
251
- ansi-styles "^3.2.1"
252
- escape-string-regexp "^1.0.5"
253
- supports-color "^5.3.0"
254
-
255
- color-convert@^1.9.0:
256
- version "1.9.3"
257
- resolved "https://registry.npmmirror.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8"
258
- integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==
259
- dependencies:
260
- color-name "1.1.3"
261
-
262
- color-name@1.1.3:
263
- version "1.1.3"
264
- resolved "https://registry.npmmirror.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
265
- integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==
266
-
267
- convert-source-map@^1.5.0:
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==
281
- dependencies:
282
- "@types/parse-json" "^4.0.0"
283
- import-fresh "^3.2.1"
284
- parse-json "^5.0.0"
285
- path-type "^4.0.0"
286
- yaml "^1.10.0"
287
-
288
- csstype@^3.0.2:
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==
292
-
293
- dayjs@^1.10.7:
294
- version "1.11.9"
295
- resolved "https://registry.npmmirror.com/dayjs/-/dayjs-1.11.9.tgz#9ca491933fadd0a60a2c19f6c237c03517d71d1a"
296
- integrity sha512-QvzAURSbQ0pKdIye2txOzNaHmxtUBXerpY0FJsFXUMKbIZeFm5ht1LS/jFsrncjnmtv8HsG0W2g6c0zUjZWmpA==
297
-
298
- enquire.js@^2.1.6:
299
- version "2.1.6"
300
- resolved "https://registry.npmmirror.com/enquire.js/-/enquire.js-2.1.6.tgz#3e8780c9b8b835084c3f60e166dbc3c2a3c89814"
301
- integrity sha512-/KujNpO+PT63F7Hlpu4h3pE3TokKRHN26JYmQpPyjkRD/N57R7bPDNojMXdi7uveAKjYB7yQnartCxZnFWr0Xw==
302
-
303
- error-ex@^1.3.1:
304
- version "1.3.2"
305
- resolved "https://registry.npmmirror.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf"
306
- integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==
307
- dependencies:
308
- is-arrayish "^0.2.1"
309
-
310
- escape-string-regexp@^1.0.5:
311
- version "1.0.5"
312
- resolved "https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
313
- integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==
314
-
315
- escape-string-regexp@^4.0.0:
316
- version "4.0.0"
317
- resolved "https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34"
318
- integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==
319
-
320
- find-root@^1.1.0:
321
- version "1.1.0"
322
- resolved "https://registry.npmmirror.com/find-root/-/find-root-1.1.0.tgz#abcfc8ba76f708c42a97b3d685b7e9450bfb9ce4"
323
- integrity sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==
324
-
325
- function-bind@^1.1.1:
326
- version "1.1.1"
327
- resolved "https://registry.npmmirror.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
328
- integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==
329
-
330
- has-flag@^3.0.0:
331
- version "3.0.0"
332
- resolved "https://registry.npmmirror.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
333
- integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==
334
-
335
- has@^1.0.3:
336
- version "1.0.3"
337
- resolved "https://registry.npmmirror.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796"
338
- integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==
339
- dependencies:
340
- function-bind "^1.1.1"
341
-
342
- import-fresh@^3.2.1:
343
- version "3.3.0"
344
- resolved "https://registry.npmmirror.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b"
345
- integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==
346
- dependencies:
347
- parent-module "^1.0.0"
348
- resolve-from "^4.0.0"
349
-
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==
354
- dependencies:
355
- intact "^3.0.22"
356
- intact-shared "^3.0.22"
357
- tslib "^2.3.1"
358
-
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==
363
-
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==
368
- dependencies:
369
- intact-shared "^3.0.22"
370
- misstime "^3.0.22"
371
- tslib "^2.2.0"
372
- vdt "^3.0.22"
373
- vdt-compiler "^3.0.22"
374
-
375
- is-arrayish@^0.2.1:
376
- version "0.2.1"
377
- resolved "https://registry.npmmirror.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
378
- integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==
379
-
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==
384
- dependencies:
385
- has "^1.0.3"
386
-
387
- js-tokens@^4.0.0:
388
- version "4.0.0"
389
- resolved "https://registry.npmmirror.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
390
- integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
391
-
392
- json-parse-even-better-errors@^2.3.0:
393
- version "2.3.1"
394
- resolved "https://registry.npmmirror.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d"
395
- integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==
396
-
397
- lines-and-columns@^1.1.6:
398
- version "1.2.4"
399
- resolved "https://registry.npmmirror.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632"
400
- integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==
401
-
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==
406
- dependencies:
407
- intact-shared "^3.0.22"
408
-
409
- monaco-editor@^0.26.1:
410
- version "0.26.1"
411
- resolved "https://registry.npmmirror.com/monaco-editor/-/monaco-editor-0.26.1.tgz#62bb5f658bc95379f8abb64b147632bd1c019d73"
412
- integrity sha512-mm45nUrBDk0DgZKgbD7+bhDOtcAFNGPJJRAdS6Su1kTGl6XEgC7U3xOmDUW/0RrLf+jlvCGaqLvD4p2VjwuwwQ==
413
-
414
- mxgraphx@^4.0.7:
415
- version "4.0.7"
416
- resolved "https://registry.npmmirror.com/mxgraphx/-/mxgraphx-4.0.7.tgz#5a904654916b883ff4246af8ad5edfe3e924ff74"
417
- integrity sha512-N8KRnMy5Rkiab3X9lx618Nmzr/oZ0jfyrtPVqt+yOqlgq6CZD0242exPktRzKTpUABZetdRXcR7tBPAjZXTB1g==
418
-
419
- parent-module@^1.0.0:
420
- version "1.0.1"
421
- resolved "https://registry.npmmirror.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2"
422
- integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==
423
- dependencies:
424
- callsites "^3.0.0"
425
-
426
- parse-json@^5.0.0:
427
- version "5.2.0"
428
- resolved "https://registry.npmmirror.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd"
429
- integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==
430
- dependencies:
431
- "@babel/code-frame" "^7.0.0"
432
- error-ex "^1.3.1"
433
- json-parse-even-better-errors "^2.3.0"
434
- lines-and-columns "^1.1.6"
435
-
436
- path-parse@^1.0.7:
437
- version "1.0.7"
438
- resolved "https://registry.npmmirror.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735"
439
- integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==
440
-
441
- path-type@^4.0.0:
442
- version "4.0.0"
443
- resolved "https://registry.npmmirror.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b"
444
- integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==
445
-
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==
450
-
451
- resize-observer-polyfill@^1.5.1:
452
- version "1.5.1"
453
- resolved "https://registry.npmmirror.com/resize-observer-polyfill/-/resize-observer-polyfill-1.5.1.tgz#0e9020dd3d21024458d4ebd27e23e40269810464"
454
- integrity sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==
455
-
456
- resolve-from@^4.0.0:
457
- version "4.0.0"
458
- resolved "https://registry.npmmirror.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6"
459
- integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==
460
-
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==
465
- dependencies:
466
- is-core-module "^2.13.0"
467
- path-parse "^1.0.7"
468
- supports-preserve-symlinks-flag "^1.0.0"
469
-
470
- source-map@^0.5.7:
471
- version "0.5.7"
472
- resolved "https://registry.npmmirror.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
473
- integrity sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==
474
-
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==
479
-
480
- supports-color@^5.3.0:
481
- version "5.5.0"
482
- resolved "https://registry.npmmirror.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f"
483
- integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==
484
- dependencies:
485
- has-flag "^3.0.0"
486
-
487
- supports-preserve-symlinks-flag@^1.0.0:
488
- version "1.0.0"
489
- resolved "https://registry.npmmirror.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09"
490
- integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==
491
-
492
- tinycolor2@^1.4.2:
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==
496
-
497
- to-fast-properties@^2.0.0:
498
- version "2.0.0"
499
- resolved "https://registry.npmmirror.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e"
500
- integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==
501
-
502
- tslib@^2.2.0, tslib@^2.3.1:
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==
511
- dependencies:
512
- intact-shared "^3.0.22"
513
- misstime "^3.0.22"
514
- tslib "^2.2.0"
515
-
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==
520
- dependencies:
521
- intact-shared "^3.0.22"
522
- misstime "^3.0.22"
523
- tslib "^2.2.0"
524
-
525
- yaml@^1.10.0:
526
- version "1.10.2"
527
- resolved "https://registry.npmmirror.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b"
528
- integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==