@king-design/vue 3.5.0-beta.0 → 3.5.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.
Files changed (52) hide show
  1. package/__tests__/__snapshots__/Vue Next Demos.md +70 -38
  2. package/components/affix/index.d.ts +1 -0
  3. package/components/affix/index.js +2 -1
  4. package/components/affix/useStyle.js +50 -47
  5. package/components/datepicker/basepicker.js +3 -3
  6. package/components/dialog/styles.js +2 -2
  7. package/components/dropdown/useKeyboard.js +3 -0
  8. package/components/input/index.spec.js +4 -2
  9. package/components/layout/styles.js +1 -1
  10. package/components/select/base.d.ts +1 -0
  11. package/components/select/base.js +2 -1
  12. package/components/select/base.vdt.js +2 -4
  13. package/components/select/group.vdt.js +8 -3
  14. package/components/select/menu.vdt.js +12 -3
  15. package/components/select/select.vdt.js +2 -1
  16. package/components/select/useFilterable.js +7 -5
  17. package/components/select/useInput.js +6 -2
  18. package/components/table/index.spec.js +7 -6
  19. package/components/table/styles.js +1 -1
  20. package/components/table/table.d.ts +1 -0
  21. package/components/table/table.js +3 -2
  22. package/components/table/table.vdt.js +126 -114
  23. package/components/treeSelect/index.js +4 -3
  24. package/components/virtualList/container.d.ts +10 -0
  25. package/components/virtualList/container.js +26 -0
  26. package/components/virtualList/container.vdt.js +39 -0
  27. package/components/virtualList/index.d.ts +5 -0
  28. package/components/virtualList/index.js +5 -0
  29. package/components/virtualList/index.spec.d.ts +1 -0
  30. package/components/virtualList/index.spec.js +372 -0
  31. package/components/virtualList/phantom.d.ts +9 -0
  32. package/components/virtualList/phantom.js +24 -0
  33. package/components/virtualList/phantom.vdt.js +33 -0
  34. package/components/virtualList/rows.d.ts +8 -0
  35. package/components/virtualList/rows.js +20 -0
  36. package/components/virtualList/rows.vdt.js +32 -0
  37. package/components/virtualList/styles.d.ts +13 -0
  38. package/components/virtualList/styles.js +34 -0
  39. package/components/virtualList/useRows.d.ts +2 -0
  40. package/components/virtualList/useRows.js +19 -0
  41. package/components/virtualList/useVirtualRows.d.ts +20 -0
  42. package/components/virtualList/useVirtualRows.js +120 -0
  43. package/components/virtualList/virtual.d.ts +8 -0
  44. package/components/virtualList/virtual.js +15 -0
  45. package/components/virtualList/virtual.vdt.js +26 -0
  46. package/components/virtualList/wrapper.d.ts +9 -0
  47. package/components/virtualList/wrapper.js +24 -0
  48. package/components/virtualList/wrapper.vdt.js +34 -0
  49. package/index.d.ts +3 -2
  50. package/index.js +3 -2
  51. package/package.json +1 -1
  52. package/yarn-error.log +43 -44
@@ -0,0 +1,120 @@
1
+ import _Map from "@babel/runtime-corejs3/core-js/map";
2
+ import _Set from "@babel/runtime-corejs3/core-js/set";
3
+ import _mapInstanceProperty from "@babel/runtime-corejs3/core-js/instance/map";
4
+ import { createContext } from '../context';
5
+ import { useState, watchState } from '../../hooks/useState';
6
+ import { useInstance, nextTick, onMounted, onUnmounted, findDomFromVNode } from 'intact-vue-next';
7
+ import { isNullOrUndefined } from 'intact-shared';
8
+ export var context = createContext();
9
+ var MIN_LENGTH = 10;
10
+ var BUFFER_SIZE = 3;
11
+ export function useVirtualRows() {
12
+ var instance = useInstance();
13
+ var rowsHeightMap = new _Map();
14
+ var startIndex = useState(0);
15
+ var length = useState(MIN_LENGTH);
16
+ var calculatedHeight = 0;
17
+ var rowAvgHeight = 0;
18
+ var rows = [];
19
+ function notifyRows(_rows) {
20
+ var oldRows = rows;
21
+ var oldLength = rows.length;
22
+ rows = _rows;
23
+ // diff oldRows, newRows
24
+ var newKeys = new _Set(_mapInstanceProperty(_rows).call(_rows, function (row) {
25
+ return row.key;
26
+ }));
27
+ for (var i = 0; i < oldLength; i++) {
28
+ var oldKey = oldRows[i].key;
29
+ if (!newKeys.has(oldKey)) {
30
+ var height = rowsHeightMap.get(oldKey);
31
+ if (!isNullOrUndefined(height)) {
32
+ calculatedHeight -= height;
33
+ rowsHeightMap.delete(oldKey);
34
+ }
35
+ }
36
+ }
37
+ // update rowAvgHeight
38
+ if (rowsHeightMap.size === 0) {
39
+ rowAvgHeight = calculatedHeight = 0;
40
+ } else {
41
+ rowAvgHeight = calculatedHeight / rowsHeightMap.size;
42
+ }
43
+ if (_rows.length < oldLength) {
44
+ var maxStartIndex = Math.max(0, _rows.length - length.value);
45
+ if (startIndex.value > maxStartIndex) {
46
+ startIndex.set(maxStartIndex);
47
+ // 重新计算位置
48
+ nextTick(function () {
49
+ handleScroll();
50
+ });
51
+ }
52
+ }
53
+ }
54
+ function calculateRowsHeight() {
55
+ for (var i = startIndex.value; i < startIndex.value + length.value && i < rows.length; i++) {
56
+ var row = rows[i];
57
+ var key = row.key;
58
+ if (!rowsHeightMap.has(key)) {
59
+ var rowDom = findDomFromVNode(row, true);
60
+ var height = rowDom.offsetHeight;
61
+ rowsHeightMap.set(key, height);
62
+ calculatedHeight += height;
63
+ }
64
+ }
65
+ // use the average height to estimate the row height
66
+ rowAvgHeight = calculatedHeight / rowsHeightMap.size;
67
+ }
68
+ watchState(startIndex, function () {
69
+ nextTick(calculateRowsHeight);
70
+ });
71
+ var containerDom;
72
+ onMounted(function () {
73
+ // get contains height
74
+ containerDom = findDomFromVNode(instance.$lastInput, true);
75
+ var containerHeight = containerDom.offsetHeight;
76
+ calculateRowsHeight();
77
+ // calculate the length of rows we should render
78
+ length.set(Math.max(Math.ceil(containerHeight / rowAvgHeight) + BUFFER_SIZE * 2, MIN_LENGTH));
79
+ containerDom.addEventListener('scroll', handleScroll);
80
+ });
81
+ onUnmounted(function () {
82
+ containerDom.removeEventListener('scroll', handleScroll);
83
+ });
84
+ function getTotalHeight() {
85
+ return calculatedHeight + rowAvgHeight * (rows.length - rowsHeightMap.size);
86
+ }
87
+ var translateY = useState(0);
88
+ function handleScroll() {
89
+ var _instance$get = instance.get(),
90
+ disabled = _instance$get.disabled;
91
+ if (disabled) return;
92
+ var scrollTop = containerDom.scrollTop;
93
+ var accumulatedHeight = 0;
94
+ var start = 0;
95
+ while (start < rows.length) {
96
+ accumulatedHeight += getRowHeightByIndex(start);
97
+ if (accumulatedHeight > scrollTop) {
98
+ break;
99
+ }
100
+ start++;
101
+ }
102
+ startIndex.set(Math.max(start - BUFFER_SIZE, 0));
103
+ // translateY should substract the buffer size rows height
104
+ for (var i = start; i >= startIndex.value; i--) {
105
+ accumulatedHeight -= getRowHeightByIndex(i);
106
+ }
107
+ translateY.set(accumulatedHeight);
108
+ }
109
+ function getRowHeightByIndex(index) {
110
+ var key = rows[index].key;
111
+ return rowsHeightMap.get(key) || rowAvgHeight;
112
+ }
113
+ return {
114
+ notifyRows: notifyRows,
115
+ startIndex: startIndex,
116
+ length: length,
117
+ getTotalHeight: getTotalHeight,
118
+ translateY: translateY
119
+ };
120
+ }
@@ -0,0 +1,8 @@
1
+ import { Component, TypeDefs } from 'intact-vue-next';
2
+ export interface VirtualListProps {
3
+ disabled?: boolean;
4
+ }
5
+ export declare class VirtualList extends Component<VirtualListProps> {
6
+ static template: string | import('intact-vue-next').Template<any>;
7
+ static typeDefs: Required<TypeDefs<VirtualListProps>>;
8
+ }
@@ -0,0 +1,15 @@
1
+ import _inheritsLoose from "@babel/runtime-corejs3/helpers/inheritsLoose";
2
+ import { Component } from 'intact-vue-next';
3
+ import template from './virtual.vdt';
4
+ var typeDefs = {
5
+ disabled: Boolean
6
+ };
7
+ export var VirtualList = /*#__PURE__*/function (_Component) {
8
+ _inheritsLoose(VirtualList, _Component);
9
+ function VirtualList() {
10
+ return _Component.apply(this, arguments) || this;
11
+ }
12
+ return VirtualList;
13
+ }(Component);
14
+ VirtualList.template = template;
15
+ VirtualList.typeDefs = typeDefs;
@@ -0,0 +1,26 @@
1
+ import _extends from "@babel/runtime-corejs3/helpers/extends";
2
+ import { createUnknownComponentVNode as _$cc } from 'intact-vue-next';
3
+ import { getRestProps } from '../utils';
4
+ import { VirtualListContainer } from './container';
5
+ import { VirtualListWrapper } from './wrapper';
6
+ import { VirtualListRows } from './rows';
7
+ import { VirtualListPhantom } from './phantom';
8
+ export default function ($props, $blocks, $__proto__) {
9
+ $blocks || ($blocks = {});
10
+ $props || ($props = {});
11
+ var $this = this;
12
+ var _this$get = this.get(),
13
+ children = _this$get.children,
14
+ disabled = _this$get.disabled;
15
+ if (disabled) {
16
+ return children;
17
+ }
18
+ return _$cc(VirtualListContainer, _extends({}, getRestProps(this), {
19
+ 'children': [_$cc(VirtualListPhantom), _$cc(VirtualListWrapper, {
20
+ 'children': _$cc(VirtualListRows, {
21
+ 'children': children
22
+ })
23
+ })]
24
+ }));
25
+ }
26
+ ;
@@ -0,0 +1,9 @@
1
+ import { Component, TypeDefs, ComponentConstructor } from 'intact-vue-next';
2
+ export interface VirtualListWrapperProps {
3
+ tagName?: string | ComponentConstructor;
4
+ }
5
+ export declare class VirtualListWrapper extends Component<VirtualListWrapperProps> {
6
+ static template: string | import('intact-vue-next').Template<any>;
7
+ static typeDefs: Required<TypeDefs<VirtualListWrapperProps>>;
8
+ private config;
9
+ }
@@ -0,0 +1,24 @@
1
+ import _inheritsLoose from "@babel/runtime-corejs3/helpers/inheritsLoose";
2
+ import _concatInstanceProperty from "@babel/runtime-corejs3/core-js/instance/concat";
3
+ import { Component } from 'intact-vue-next';
4
+ import template from './wrapper.vdt';
5
+ import { useConfigContext } from '../config';
6
+ var typeDefs = {
7
+ tagName: String
8
+ };
9
+ export var VirtualListWrapper = /*#__PURE__*/function (_Component) {
10
+ _inheritsLoose(VirtualListWrapper, _Component);
11
+ function VirtualListWrapper() {
12
+ var _context;
13
+ var _this;
14
+ for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
15
+ args[_key] = arguments[_key];
16
+ }
17
+ _this = _Component.call.apply(_Component, _concatInstanceProperty(_context = [this]).call(_context, args)) || this;
18
+ _this.config = useConfigContext();
19
+ return _this;
20
+ }
21
+ return VirtualListWrapper;
22
+ }(Component);
23
+ VirtualListWrapper.template = template;
24
+ VirtualListWrapper.typeDefs = typeDefs;
@@ -0,0 +1,34 @@
1
+ import _extends from "@babel/runtime-corejs3/helpers/extends";
2
+ import { createUnknownComponentVNode as _$cc } from 'intact-vue-next';
3
+ import { addStyle, getRestProps } from '../utils';
4
+ import { context as VirtualRowsContext } from './useVirtualRows';
5
+ import { createVNode } from 'intact-vue-next';
6
+ import { cx } from '@emotion/css';
7
+ export default function ($props, $blocks, $__proto__) {
8
+ var _this = this;
9
+ $blocks || ($blocks = {});
10
+ $props || ($props = {});
11
+ var $this = this;
12
+ var _this$get = this.get(),
13
+ _children = _this$get.children,
14
+ className = _this$get.className,
15
+ tagName = _this$get.tagName,
16
+ style = _this$get.style;
17
+ var k = this.config.k;
18
+ return _$cc(VirtualRowsContext.Consumer, {
19
+ 'children': function children(_ref) {
20
+ var _classNameObj;
21
+ var translateY = _ref.translateY,
22
+ disabled = _ref.disabled;
23
+ var classNameObj = (_classNameObj = {}, _classNameObj[k + "-virtual-wrapper"] = !disabled, _classNameObj[className] = className, _classNameObj);
24
+ var _style = !disabled ? {
25
+ transform: "translateY(" + translateY + "px)"
26
+ } : {};
27
+ return createVNode(tagName || 'div', _extends({}, getRestProps(_this), {
28
+ className: cx(classNameObj),
29
+ style: addStyle(style, _style)
30
+ }), _children);
31
+ }
32
+ });
33
+ }
34
+ ;
package/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * @king-design v3.5.0-beta.0
2
+ * @king-design v3.5.0
3
3
  *
4
4
  * Copyright (c) Kingsoft Cloud
5
5
  * Released under the MIT License
@@ -63,8 +63,9 @@ export * from './components/tree';
63
63
  export * from './components/treeSelect';
64
64
  export * from './components/upload';
65
65
  export * from './components/view';
66
+ export * from './components/virtualList';
66
67
  export * from './components/wave';
67
- export declare const version = "3.5.0-beta.0";
68
+ export declare const version = "3.5.0";
68
69
 
69
70
 
70
71
  export {normalize} from 'intact-vue-next';
package/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * @king-design v3.5.0-beta.0
2
+ * @king-design v3.5.0
3
3
  *
4
4
  * Copyright (c) Kingsoft Cloud
5
5
  * Released under the MIT License
@@ -64,8 +64,9 @@ export * from './components/tree';
64
64
  export * from './components/treeSelect';
65
65
  export * from './components/upload';
66
66
  export * from './components/view';
67
+ export * from './components/virtualList';
67
68
  export * from './components/wave';
68
- export var version = '3.5.0-beta.0';
69
+ export var version = '3.5.0';
69
70
  /* generate end */
70
71
 
71
72
  export {normalize} from 'intact-vue-next';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@king-design/vue",
3
- "version": "3.5.0-beta.0",
3
+ "version": "3.5.0",
4
4
  "description": "King-Design UI components for Vue3.0.",
5
5
  "keywords": [
6
6
  "component",
package/yarn-error.log CHANGED
@@ -1,8 +1,8 @@
1
1
  Arguments:
2
- /home/javey/.nvm/versions/node/v14.21.3/bin/node /usr/share/yarn/bin/yarn.js --registry=https://registry.npmjs.org
2
+ /usr/local/bin/node /usr/local/Cellar/yarn/1.22.19/libexec/bin/yarn.js
3
3
 
4
4
  PATH:
5
- /tmp/yarn--1709196756448-0.38987287096922607:/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
5
+ /usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/knightedge/bin
6
6
 
7
7
  Yarn version:
8
8
  1.22.19
@@ -11,18 +11,18 @@ Node version:
11
11
  14.21.3
12
12
 
13
13
  Platform:
14
- linux x64
14
+ darwin x64
15
15
 
16
16
  Trace:
17
- Error: https://registry.npmjs.org/intact-vue-next: ETIMEDOUT
18
- at Timeout._onTimeout (/usr/share/yarn/lib/cli.js:141550:19)
17
+ Error: https://registry.npmjs.org/intact-vue-next/-/intact-vue-next-3.0.34.tgz: ETIMEDOUT
18
+ at Timeout._onTimeout (/usr/local/Cellar/yarn/1.22.19/libexec/lib/cli.js:141550:19)
19
19
  at listOnTimeout (internal/timers.js:557:17)
20
20
  at processTimers (internal/timers.js:500:7)
21
21
 
22
22
  npm manifest:
23
23
  {
24
24
  "name": "@king-design/vue",
25
- "version": "3.2.0",
25
+ "version": "3.3.0",
26
26
  "description": "King-Design UI components for Vue3.0.",
27
27
  "keywords": [
28
28
  "component",
@@ -59,7 +59,7 @@ npm manifest:
59
59
  "@emotion/css": "^11.5.0",
60
60
  "dayjs": "^1.10.7",
61
61
  "enquire.js": "^2.1.6",
62
- "intact-vue-next": "3.0.31",
62
+ "intact-vue-next": "3.0.34",
63
63
  "monaco-editor": "^0.26.1",
64
64
  "mxgraphx": "^4.0.7",
65
65
  "resize-observer-polyfill": "^1.5.1",
@@ -67,8 +67,7 @@ npm manifest:
67
67
  "tslib": "^2.3.1"
68
68
  },
69
69
  "sideEffects": [
70
- "**/*/styles/global.*",
71
- "**/*/styles/fonts/*"
70
+ "./styles/**/*"
72
71
  ],
73
72
  "devDependencies": {
74
73
  "@vue/babel-plugin-jsx": "^1.1.5",
@@ -709,30 +708,30 @@ Lockfile:
709
708
  parent-module "^1.0.0"
710
709
  resolve-from "^4.0.0"
711
710
 
712
- intact-shared@^3.0.30:
713
- version "3.0.30"
714
- resolved "https://registry.npmjs.org/intact-shared/-/intact-shared-3.0.30.tgz#ba07cad0f88a3ad6dfae4a2e3dd7c8bac0b1713b"
715
- integrity sha512-Umk8DDJSNvGKnccSH3VhkHiaLEVabgAupFmDACMbT2pW8phjVRqJxTzTOeyCX+1NEPkxouEAvtNKPWngVsLquw==
711
+ intact-shared@^3.0.34:
712
+ version "3.0.34"
713
+ resolved "https://registry.npmjs.org/intact-shared/-/intact-shared-3.0.34.tgz#ddaf0e098540d8e98bf49c5f378a33681f1c55a9"
714
+ integrity sha512-pT8cpl7XDF7lYM6xWEoLwtf12sEysPjSfdmUr5DXaWvRm8cByg4dTxC+/+KQ0m3Umv0WE2vilQMixIh9hqe0Fg==
716
715
 
717
- intact-vue-next@3.0.30:
718
- version "3.0.30"
719
- resolved "https://registry.npmjs.org/intact-vue-next/-/intact-vue-next-3.0.30.tgz#6e5301d52b19bed602b434424502a311712f464e"
720
- integrity sha512-MqRhCxS0j7T8x+dRsnPaDGRE+i7A6XJ7gpxtMa33IYCNsOY/a/mGNRT3cvXvjY43+OunwV5IrT6x4w/fwAiaPQ==
716
+ intact-vue-next@3.0.34:
717
+ version "3.0.34"
718
+ resolved "https://registry.npmjs.org/intact-vue-next/-/intact-vue-next-3.0.34.tgz#e9c4268c9be81900f590ec536df561ec70aa3a85"
719
+ integrity sha512-nv9UUXZ72jfXflVbopTWb+oxrGw9aoIdguaMwnn8EzIhiNaA34zpRqhy8GXOUJCG85P9BCkZZfU1zD0LqMtVIQ==
721
720
  dependencies:
722
- intact "^3.0.30"
723
- intact-shared "^3.0.30"
721
+ intact "^3.0.34"
722
+ intact-shared "^3.0.34"
724
723
  tslib "^2.3.1"
725
724
 
726
- intact@^3.0.30:
727
- version "3.0.30"
728
- resolved "https://registry.npmjs.org/intact/-/intact-3.0.30.tgz#b6eff7635dddb2d351710853891799f5b32e2666"
729
- integrity sha512-1hdp7oiELdVdeCCh8+CFlkGx5NoNe5HNE3Gaz84tt0DE17BS87rH6h3ByPChqYvEgfuvN8l2/Iobl5PNJWOuGQ==
725
+ intact@^3.0.34:
726
+ version "3.0.34"
727
+ resolved "https://registry.npmjs.org/intact/-/intact-3.0.34.tgz#9407202bd159f29d80792c26218b97b682cfae78"
728
+ integrity sha512-j13WHChj5aJmw4+FSgMoEF/s67mnsq/fSA0LhSpmGYY6CChsBH6aPyQJUvEdYtjytZBCABvuJYgbcbyNHynb+w==
730
729
  dependencies:
731
- intact-shared "^3.0.30"
732
- misstime "^3.0.30"
730
+ intact-shared "^3.0.34"
731
+ misstime "^3.0.34"
733
732
  tslib "^2.2.0"
734
- vdt "^3.0.30"
735
- vdt-compiler "^3.0.30"
733
+ vdt "^3.0.34"
734
+ vdt-compiler "^3.0.34"
736
735
 
737
736
  is-arrayish@^0.2.1:
738
737
  version "0.2.1"
@@ -808,12 +807,12 @@ Lockfile:
808
807
  resolved "https://registry.npmmirror.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c"
809
808
  integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==
810
809
 
811
- misstime@^3.0.30:
812
- version "3.0.30"
813
- resolved "https://registry.npmjs.org/misstime/-/misstime-3.0.30.tgz#59a307e3b099cf988e03eef25d67921ec2131db5"
814
- integrity sha512-UoDxIiRZl0i4IOPyJpDLc/rxxPEU9Co3H5rwrZeTxrQFQBTbaP/JxUYJ76hnYqeSDOC9doN7jeSrHH+3oTqfig==
810
+ misstime@^3.0.34:
811
+ version "3.0.34"
812
+ resolved "https://registry.npmjs.org/misstime/-/misstime-3.0.34.tgz#462f6509d06e1e80e7622b0ffa96df5438bbb87d"
813
+ integrity sha512-xO5ZHcG0cYkcWr7ZPquGFQWnZaMC5y4r1lKlFqCedLHFAAiV8SNEnj4bpFge8yTJJNO8LEXKOFWuE8WWpfy22g==
815
814
  dependencies:
816
- intact-shared "^3.0.30"
815
+ intact-shared "^3.0.34"
817
816
 
818
817
  monaco-editor@^0.26.1:
819
818
  version "0.26.1"
@@ -954,22 +953,22 @@ Lockfile:
954
953
  resolved "https://registry.npmmirror.com/tslib/-/tslib-2.6.1.tgz#fd8c9a0ff42590b25703c0acb3de3d3f4ede0410"
955
954
  integrity sha512-t0hLfiEKfMUoqhG+U1oid7Pva4bbDPHYfJNiB7BiIjRkj1pyC++4N3huJfqY6aRH6VTB0rvtzQwjM4K6qpfOig==
956
955
 
957
- vdt-compiler@^3.0.30:
958
- version "3.0.30"
959
- resolved "https://registry.npmjs.org/vdt-compiler/-/vdt-compiler-3.0.30.tgz#557368a09ac602e2c5ef90fd421bc6c86f92df19"
960
- integrity sha512-W8kAoGqz56+rauoJfhRDOFO1tV6RNPsZIXeCATWIgmv8+DnciJXU8WgrbqDW9IQbYCXrOnMGZZXaZJATPkNXGg==
956
+ vdt-compiler@^3.0.34:
957
+ version "3.0.34"
958
+ resolved "https://registry.npmjs.org/vdt-compiler/-/vdt-compiler-3.0.34.tgz#7110da7dc1e86a5a54987e9e07922cc25f46e0fb"
959
+ integrity sha512-UFILLLLSg9SxXkiyGLdGbExOttTf5Tawpu07YFOxjRQJA5mpUWhus2+2RUbkNiWzr+9OJB7hZCwEWBKF+pQd1Q==
961
960
  dependencies:
962
- intact-shared "^3.0.30"
963
- misstime "^3.0.30"
961
+ intact-shared "^3.0.34"
962
+ misstime "^3.0.34"
964
963
  tslib "^2.2.0"
965
964
 
966
- vdt@^3.0.30:
967
- version "3.0.30"
968
- resolved "https://registry.npmjs.org/vdt/-/vdt-3.0.30.tgz#12dbf2644a96cf2d6428cb1f17e02aa4076f7a98"
969
- integrity sha512-HkkgHTDWHBiffZtVRnQb3rKs0p1/VoPkeMQH+5nbqYesAFhFOiF1jpvrQn6cRWZvcRsQMcJWNZT46V8t6eL8KQ==
965
+ vdt@^3.0.34:
966
+ version "3.0.34"
967
+ resolved "https://registry.npmjs.org/vdt/-/vdt-3.0.34.tgz#b01df681dbd986ef0515ead3f0a8c060b840a327"
968
+ integrity sha512-mGGTKgCTXZYHIlUYb2UsZxfp/n4sRLUP5XU+tA9l3qUXjvKeHz9tSsPdS4JdugvhTapaf8USTeE59e7SeMbzlA==
970
969
  dependencies:
971
- intact-shared "^3.0.30"
972
- misstime "^3.0.30"
970
+ intact-shared "^3.0.34"
971
+ misstime "^3.0.34"
973
972
  tslib "^2.2.0"
974
973
 
975
974
  vue-loader@^16.1.2: