@king-design/react 3.1.4 → 3.1.6

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,6 +1,6 @@
1
1
  import React, {createRef, useState} from 'react';
2
2
  import * as ReactDOM from 'react-dom';
3
- import {Cascader} from '../../';
3
+ import {Cascader, Card} from '../../';
4
4
  import {Component} from 'intact-react';
5
5
  import {getElement, wait, dispatchEvent} from '../../../../test/utils';
6
6
 
@@ -10,10 +10,10 @@ describe('Drawer', () => {
10
10
  container = document.createElement('div');
11
11
  document.body.appendChild(container);
12
12
  });
13
- // afterEach(() => {
14
- // ReactDOM.unmountComponentAtNode(container);
15
- // document.body.removeChild(container);
16
- // });
13
+ afterEach(() => {
14
+ ReactDOM.unmountComponentAtNode(container);
15
+ document.body.removeChild(container);
16
+ });
17
17
 
18
18
  it('should render react element correctly', async () => {
19
19
  class Test extends Component {
@@ -160,7 +160,7 @@ describe('Cascader', function () {
160
160
  }, _callee5);
161
161
  })));
162
162
  it('filter', /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee6() {
163
- var _mount5, instance, element, input, dropdown, dropdown1;
163
+ var _mount5, instance, element, input, dropdown, dropdown1, _getElements2, _dropdown1, _dropdown2, _dropdown3;
164
164
  return _regeneratorRuntime.wrap(function _callee6$(_context6) {
165
165
  while (1) switch (_context6.prev = _context6.next) {
166
166
  case 0:
@@ -207,7 +207,16 @@ describe('Cascader', function () {
207
207
  return wait();
208
208
  case 34:
209
209
  expect(instance.get('value')).to.eql(['hunan', 'yueyang', 'yueyanglou']);
210
- case 35:
210
+ // show again to test the position
211
+ input.click();
212
+ _context6.next = 38;
213
+ return wait();
214
+ case 38:
215
+ _getElements2 = getElements('.k-cascader-menu'), _dropdown1 = _getElements2[0], _dropdown2 = _getElements2[1], _dropdown3 = _getElements2[2];
216
+ expect(_dropdown1.style.top).not.eql('0px');
217
+ expect(_dropdown2.style.top).not.eql('0px');
218
+ expect(_dropdown3.style.top).not.eql('0px');
219
+ case 42:
211
220
  case "end":
212
221
  return _context6.stop();
213
222
  }
@@ -234,7 +243,7 @@ describe('Cascader', function () {
234
243
  }, _callee7);
235
244
  })));
236
245
  it('duplicated sub data', /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee8() {
237
- var Demo, _mount7, instance, element, _getElements2, dropdown1, dropdown2, _dropdown1$querySelec4, item1, item2, _dropdown2$querySelec3, item21, dropdown3, _dropdown3$querySelec2, item31;
246
+ var Demo, _mount7, instance, element, _getElements3, dropdown1, dropdown2, _dropdown1$querySelec4, item1, item2, _dropdown2$querySelec3, item21, dropdown3, _dropdown3$querySelec2, item31;
238
247
  return _regeneratorRuntime.wrap(function _callee8$(_context9) {
239
248
  while (1) switch (_context9.prev = _context9.next) {
240
249
  case 0:
@@ -278,7 +287,7 @@ describe('Cascader', function () {
278
287
  _context9.next = 6;
279
288
  return wait();
280
289
  case 6:
281
- _getElements2 = getElements('.k-cascader-menu'), dropdown1 = _getElements2[0], dropdown2 = _getElements2[1];
290
+ _getElements3 = getElements('.k-cascader-menu'), dropdown1 = _getElements3[0], dropdown2 = _getElements3[1];
282
291
  _dropdown1$querySelec4 = dropdown1.querySelectorAll(':scope > .k-dropdown-item'), item1 = _dropdown1$querySelec4[0], item2 = _dropdown1$querySelec4[1];
283
292
  expect(item1.classList.contains('k-selected')).to.be.true;
284
293
  expect(item2.classList.contains('k-selected')).to.be.false;
@@ -370,4 +379,58 @@ describe('Cascader', function () {
370
379
  }
371
380
  }, _callee9);
372
381
  })));
382
+ it('should select correct value', /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee10() {
383
+ var Demo, _mount9, instance, element, _getElements4, dropdown1, dropdown2, _dropdown1$querySelec6, item1, item2;
384
+ return _regeneratorRuntime.wrap(function _callee10$(_context13) {
385
+ while (1) switch (_context13.prev = _context13.next) {
386
+ case 0:
387
+ Demo = /*#__PURE__*/function (_Component3) {
388
+ _inheritsLoose(Demo, _Component3);
389
+ function Demo() {
390
+ var _context12;
391
+ var _this3;
392
+ for (var _len3 = arguments.length, args = new Array(_len3), _key3 = 0; _key3 < _len3; _key3++) {
393
+ args[_key3] = arguments[_key3];
394
+ }
395
+ _this3 = _Component3.call.apply(_Component3, _concatInstanceProperty(_context12 = [this]).call(_context12, args)) || this;
396
+ _this3.Cascader = Cascader;
397
+ return _this3;
398
+ }
399
+ Demo.defaults = function defaults() {
400
+ return {
401
+ value: ['beijing', 'haidian'],
402
+ data: [{
403
+ value: 'beijing',
404
+ label: '北京',
405
+ children: [{
406
+ value: 'haidian',
407
+ label: '海淀区'
408
+ }]
409
+ }, {
410
+ value: 'hunan',
411
+ label: '湖南'
412
+ }]
413
+ };
414
+ };
415
+ return Demo;
416
+ }(Component);
417
+ Demo.template = "\n const {Cascader} = this;\n <Cascader data={this.get('data')} v-model=\"value\" />\n ";
418
+ _mount9 = mount(Demo), instance = _mount9[0], element = _mount9[1];
419
+ dispatchEvent(element, 'click');
420
+ _context13.next = 6;
421
+ return wait();
422
+ case 6:
423
+ _getElements4 = getElements('.k-cascader-menu'), dropdown1 = _getElements4[0], dropdown2 = _getElements4[1];
424
+ _dropdown1$querySelec6 = dropdown1.querySelectorAll(':scope > .k-dropdown-item'), item1 = _dropdown1$querySelec6[0], item2 = _dropdown1$querySelec6[1];
425
+ dispatchEvent(item2, 'click');
426
+ _context13.next = 11;
427
+ return wait();
428
+ case 11:
429
+ expect(instance.get('value')).to.eql(['hunan']);
430
+ case 12:
431
+ case "end":
432
+ return _context13.stop();
433
+ }
434
+ }, _callee10);
435
+ })));
373
436
  });
@@ -74,7 +74,7 @@ export function useValue() {
74
74
  // maybe the showedValue has the leaf value when we set it on show menu,
75
75
  // if we select by clicking, the showedValue has not the leaf value,
76
76
  // no matter which case, we set the last value by level
77
- var newValue = _sliceInstanceProperty(_context4 = showedValue.value).call(_context4, 0);
77
+ var newValue = _sliceInstanceProperty(_context4 = showedValue.value).call(_context4, 0, level);
78
78
  newValue[level] = value;
79
79
  setValue(newValue);
80
80
  }
@@ -801,22 +801,27 @@ describe('Datepicker', function () {
801
801
  first = calendar1.querySelectorAll('.k-calendar-item')[17];
802
802
  second = calendar2.querySelectorAll('.k-calendar-item')[17];
803
803
  first.click();
804
+ // should stay at date panel
805
+ _context21.next = 12;
806
+ return wait();
807
+ case 12:
808
+ expect(calendar1.querySelector('.k-days')).be.exist;
804
809
  second.click();
805
- _context21.next = 13;
810
+ _context21.next = 16;
806
811
  return wait();
807
- case 13:
812
+ case 16:
808
813
  dispatchEvent(calendar1.querySelector('.k-scroll-select-wrapper .k-active').nextElementSibling, 'click');
809
814
  dispatchEvent(calendar2.querySelector('.k-scroll-select-wrapper .k-active').previousElementSibling, 'click');
810
815
  content.querySelector('.k-datepicker-footer .k-btn').click();
811
- _context21.next = 18;
816
+ _context21.next = 21;
812
817
  return wait();
813
- case 18:
818
+ case 21:
814
819
  value2 = instance.get('time');
815
820
  expect(value2).have.lengthOf(2);
816
821
  expect(_mapInstanceProperty(value2).call(value2, function (item) {
817
822
  return item.split(' ')[1];
818
823
  })).eql(['01:00:00', '22:59:59']);
819
- case 21:
824
+ case 24:
820
825
  case "end":
821
826
  return _context21.stop();
822
827
  }
@@ -61,7 +61,15 @@ export function useValue(formats, disabled, panel) {
61
61
  }
62
62
  setValue(_value, false);
63
63
  if (type === 'datetime') {
64
- panel.changePanel(PanelTypes.Time, flag);
64
+ if (range) {
65
+ // only change to time panel after selected start and end date
66
+ if (_value.length === 2) {
67
+ panel.changePanel(PanelTypes.Time, PanelFlags.Start);
68
+ panel.changePanel(PanelTypes.Time, PanelFlags.End);
69
+ }
70
+ } else {
71
+ panel.changePanel(PanelTypes.Time, flag);
72
+ }
65
73
  } else if (!multiple && (!range || _value.length === 2)) {
66
74
  instance.hide();
67
75
  }
@@ -9,6 +9,7 @@ import { useTransition } from './useTransition';
9
9
  import { useMenuKeyboard } from './useKeyboard';
10
10
  import { useMouseOutsidable } from '../../hooks/useMouseOutsidable';
11
11
  import { useConfigContext } from '../config';
12
+ import { usePositionForDropdownMenu } from './usePosition';
12
13
  export var DROPDOWN_MENU = 'DropdownMenu';
13
14
  export var DropdownMenu = /*#__PURE__*/function (_Component) {
14
15
  _inheritsLoose(DropdownMenu, _Component);
@@ -32,6 +33,7 @@ export var DropdownMenu = /*#__PURE__*/function (_Component) {
32
33
  _proto.init = function init() {
33
34
  provide(DROPDOWN_MENU, this);
34
35
  useMouseOutsidable(this.elementRef);
36
+ usePositionForDropdownMenu();
35
37
  }
36
38
  // no matter what the trigger is, we should show menu when enter into it.
37
39
  ;
@@ -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';
@@ -112,4 +112,15 @@ export function usePosition() {
112
112
  handle: handle,
113
113
  positioned: positioned
114
114
  };
115
+ }
116
+ export function usePositionForDropdownMenu() {
117
+ var instance = useInstance();
118
+ /**
119
+ * Meybe the DropdownMenu has changed by specified key
120
+ * so, we must reset the positioned.value beforeUnmount
121
+ * #956
122
+ */
123
+ onBeforeUnmount(function () {
124
+ instance.dropdown.positionHook.positioned.value = false;
125
+ });
115
126
  }
@@ -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
  export function useFocusout() {
package/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * @king-design v3.1.4
2
+ * @king-design v3.1.6
3
3
  *
4
4
  * Copyright (c) Kingsoft Cloud
5
5
  * Released under the MIT License
@@ -60,7 +60,7 @@ export * from './components/tree';
60
60
  export * from './components/treeSelect';
61
61
  export * from './components/upload';
62
62
  export * from './components/wave';
63
- export declare const version = "3.1.4";
63
+ export declare const version = "3.1.6";
64
64
 
65
65
 
66
66
  export {normalize} from 'intact-react';
package/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * @king-design v3.1.4
2
+ * @king-design v3.1.6
3
3
  *
4
4
  * Copyright (c) Kingsoft Cloud
5
5
  * Released under the MIT License
@@ -61,7 +61,7 @@ export * from './components/tree';
61
61
  export * from './components/treeSelect';
62
62
  export * from './components/upload';
63
63
  export * from './components/wave';
64
- export var version = '3.1.4';
64
+ export var version = '3.1.6';
65
65
  /* generate end */
66
66
 
67
67
  export {normalize} from 'intact-react';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@king-design/react",
3
- "version": "3.1.4",
3
+ "version": "3.1.6",
4
4
  "description": "King-Design UI components for React.",
5
5
  "keywords": [
6
6
  "component",
@@ -36,7 +36,7 @@
36
36
  "@emotion/css": "^11.5.0",
37
37
  "dayjs": "^1.10.7",
38
38
  "enquire.js": "^2.1.6",
39
- "intact-react": "3.0.26",
39
+ "intact-react": "3.0.29",
40
40
  "monaco-editor": "^0.26.1",
41
41
  "mxgraphx": "^4.0.7",
42
42
  "resize-observer-polyfill": "^1.5.1",
package/yarn-error.log CHANGED
@@ -2,7 +2,7 @@ Arguments:
2
2
  /home/javey/.nvm/versions/node/v14.21.3/bin/node /usr/share/yarn/bin/yarn.js --registry=https://registry.npmjs.org
3
3
 
4
4
  PATH:
5
- /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
5
+ /tmp/yarn--1706608428068-0.6084622372330697:/home/javey/Workspaces/kpc/node_modules/.bin:/home/javey/.config/yarn/link/node_modules/.bin:/home/javey/.nvm/versions/node/v14.21.3/libexec/lib/node_modules/npm/bin/node-gyp-bin:/home/javey/.nvm/versions/node/v14.21.3/lib/node_modules/npm/bin/node-gyp-bin:/home/javey/.nvm/versions/node/v14.21.3/bin/node_modules/npm/bin/node-gyp-bin:/home/javey/.nvm/versions/node/v14.21.3/bin:/home/javey/.cargo/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/snap/bin:/home/javey/.yarn/bin:/home/javey/.local/bin:/home/javey/.yarn/bin:/home/javey/.local/bin
6
6
 
7
7
  Yarn version:
8
8
  1.22.19
@@ -22,7 +22,7 @@ Trace:
22
22
  npm manifest:
23
23
  {
24
24
  "name": "@king-design/react",
25
- "version": "3.1.1",
25
+ "version": "3.1.4",
26
26
  "description": "King-Design UI components for React.",
27
27
  "keywords": [
28
28
  "component",
@@ -58,7 +58,7 @@ npm manifest:
58
58
  "@emotion/css": "^11.5.0",
59
59
  "dayjs": "^1.10.7",
60
60
  "enquire.js": "^2.1.6",
61
- "intact-react": "3.0.23",
61
+ "intact-react": "3.0.28",
62
62
  "monaco-editor": "^0.26.1",
63
63
  "mxgraphx": "^4.0.7",
64
64
  "resize-observer-polyfill": "^1.5.1",
@@ -347,30 +347,30 @@ Lockfile:
347
347
  parent-module "^1.0.0"
348
348
  resolve-from "^4.0.0"
349
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==
350
+ intact-react@3.0.27:
351
+ version "3.0.27"
352
+ resolved "https://registry.npmjs.org/intact-react/-/intact-react-3.0.27.tgz#f045683c72ab196c43290b0d7e9585a055f75101"
353
+ integrity sha512-1UslVyrSSnYx33b547QjwgmGTt6bpFSzvSZzPnAPewZI9TlXKij5rcTbx7tZyU6P+5nUjgNqSBm0vshgROTKhg==
354
354
  dependencies:
355
- intact "^3.0.22"
356
- intact-shared "^3.0.22"
355
+ intact "^3.0.27"
356
+ intact-shared "^3.0.27"
357
357
  tslib "^2.3.1"
358
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==
359
+ intact-shared@^3.0.27:
360
+ version "3.0.27"
361
+ resolved "https://registry.npmjs.org/intact-shared/-/intact-shared-3.0.27.tgz#0e8861125f9bbe5017b2564279368950ba439bba"
362
+ integrity sha512-wk2BcMcYgvnyzvm322UNT++D5Br5jZk9xR9uKgz5kKFew02hqClL6ATDWNeYSMNV5HF2gClnaRaVfSjc5S798Q==
363
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==
364
+ intact@^3.0.27:
365
+ version "3.0.27"
366
+ resolved "https://registry.npmjs.org/intact/-/intact-3.0.27.tgz#802e6caf70a7b5667155767940ad8525cd730bdc"
367
+ integrity sha512-FLEBHmkHHQ5rM62oH5W4L7KOObrtCIHHyAoFEiFDiFUH0x6ekPY6uOxzDmLq4Sr3DKOwnSHjij7LCskn0q4jSw==
368
368
  dependencies:
369
- intact-shared "^3.0.22"
370
- misstime "^3.0.22"
369
+ intact-shared "^3.0.27"
370
+ misstime "^3.0.27"
371
371
  tslib "^2.2.0"
372
- vdt "^3.0.22"
373
- vdt-compiler "^3.0.22"
372
+ vdt "^3.0.27"
373
+ vdt-compiler "^3.0.27"
374
374
 
375
375
  is-arrayish@^0.2.1:
376
376
  version "0.2.1"
@@ -399,12 +399,12 @@ Lockfile:
399
399
  resolved "https://registry.npmmirror.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632"
400
400
  integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==
401
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==
402
+ misstime@^3.0.27:
403
+ version "3.0.27"
404
+ resolved "https://registry.npmjs.org/misstime/-/misstime-3.0.27.tgz#52f4d7ae7d7dda23ef7aa54c03528829f85b998c"
405
+ integrity sha512-ylpomvHDr6gcqLB2khQ3fQtXo4ERM6tmjPAyt7b8uHDGE1SrrYcoR9KZmdKsuTCKLmp46QBiLfwDAyVLICQDUg==
406
406
  dependencies:
407
- intact-shared "^3.0.22"
407
+ intact-shared "^3.0.27"
408
408
 
409
409
  monaco-editor@^0.26.1:
410
410
  version "0.26.1"
@@ -504,22 +504,22 @@ Lockfile:
504
504
  resolved "https://registry.npmmirror.com/tslib/-/tslib-2.6.1.tgz#fd8c9a0ff42590b25703c0acb3de3d3f4ede0410"
505
505
  integrity sha512-t0hLfiEKfMUoqhG+U1oid7Pva4bbDPHYfJNiB7BiIjRkj1pyC++4N3huJfqY6aRH6VTB0rvtzQwjM4K6qpfOig==
506
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==
507
+ vdt-compiler@^3.0.27:
508
+ version "3.0.27"
509
+ resolved "https://registry.npmjs.org/vdt-compiler/-/vdt-compiler-3.0.27.tgz#5953391bc2e9db08f33abd50fdc1d241530bbf60"
510
+ integrity sha512-QQTant7rgPTifGyPL+IX7vqOMGCmTnl2K0vT8n+i+Cnmi6TEC+VyfS8HNFyxpXyKoWgg+zV7EfI7HQWcLOsoiw==
511
511
  dependencies:
512
- intact-shared "^3.0.22"
513
- misstime "^3.0.22"
512
+ intact-shared "^3.0.27"
513
+ misstime "^3.0.27"
514
514
  tslib "^2.2.0"
515
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==
516
+ vdt@^3.0.27:
517
+ version "3.0.27"
518
+ resolved "https://registry.npmjs.org/vdt/-/vdt-3.0.27.tgz#66281111ad0dda67e1fef5626f07dd12afd129ee"
519
+ integrity sha512-izO9GtAOsxiEJGbnkLK/3nLgWKz3ORbHdaPns+5gSEn5W2B00A4AfFaPkpUUSsUOdrQGFME/C4u9ptF+Zy02ng==
520
520
  dependencies:
521
- intact-shared "^3.0.22"
522
- misstime "^3.0.22"
521
+ intact-shared "^3.0.27"
522
+ misstime "^3.0.27"
523
523
  tslib "^2.2.0"
524
524
 
525
525
  yaml@^1.10.0: