@king-design/react 2.0.13-beta.0 → 2.0.14

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.
@@ -1280,7 +1280,7 @@
1280
1280
  #### `Table animation`
1281
1281
 
1282
1282
  ```
1283
- "<div><button class=\"k-btn k-primary css-12uxt25\" tabindex=\"0\" type=\"button\">增加一行</button><button class=\"k-btn k-primary css-12uxt25\" tabindex=\"0\" type=\"button\">删除一行</button><button class=\"k-btn k-primary css-12uxt25\" tabindex=\"0\" type=\"button\">增加一列</button><div class=\"k-table css-gxoqtj\"><div class=\"k-table-wrapper\"><table><colgroup><col width=\"40\"><col><col></colgroup><thead><tr><th rowspan=\"1\"><label class=\"k-checkbox css-rt2md4\" tabindex=\"0\"><span class=\"k-checkbox-wrapper\"><input type=\"checkbox\" tabindex=\"-1\" value=\"true\"></span></label></th><th title=\"Title 1\" colspan=\"1\" rowspan=\"1\"><div class=\"k-table-title\"><div class=\"k-table-title-text c-ellipsis\">Title 1</div></div></th><th title=\"Title 3\" colspan=\"1\" rowspan=\"1\"><div class=\"k-table-resize\"></div><div class=\"k-table-title\"><div class=\"k-table-title-text c-ellipsis\">Title 3</div></div></th></tr></thead><tbody><tr data-key=\"Cell 1-1\"><td class=\"k-table-check\"><label class=\"k-checkbox css-rt2md4\" tabindex=\"0\"><span class=\"k-checkbox-wrapper\"><input type=\"checkbox\" tabindex=\"-1\" value=\"true\"></span></label></td><td title=\"Cell 1-1\">Cell 1-1</td><td title=\"Cell 1-3\">Cell 1-3</td></tr><tr data-key=\"Cell 2-1\"><td class=\"k-table-check\"><label class=\"k-checkbox css-rt2md4\" tabindex=\"0\"><span class=\"k-checkbox-wrapper\"><input type=\"checkbox\" tabindex=\"-1\" value=\"true\"></span></label></td><td title=\"Cell 2-1\">Cell 2-1</td><td title=\"Cell 2-3\">Cell 2-3</td></tr></tbody></table></div></div></div>"
1283
+ "<div><button class=\"k-btn k-primary css-12uxt25\" tabindex=\"0\" type=\"button\">增加一行</button><button class=\"k-btn k-primary css-12uxt25\" tabindex=\"0\" type=\"button\">删除一行</button><button class=\"k-btn k-primary css-12uxt25\" tabindex=\"0\" type=\"button\">增加一列</button><div class=\"k-table css-gxoqtj\"><div class=\"k-table-wrapper\"><table><colgroup><col width=\"40\"><col><col></colgroup><thead><tr><th rowspan=\"1\"><label class=\"k-checkbox css-rt2md4\" tabindex=\"0\"><span class=\"k-checkbox-wrapper\"><input type=\"checkbox\" tabindex=\"-1\" value=\"true\"></span></label></th><th title=\"Title 1\" colspan=\"1\" rowspan=\"1\"><div class=\"k-table-title\"><div class=\"k-table-title-text c-ellipsis\">Title 1</div></div></th><th title=\"Title 3\" colspan=\"1\" rowspan=\"1\"><div class=\"k-table-resize\"></div><div class=\"k-table-title\"><div class=\"k-table-title-text c-ellipsis\">Title 3</div></div></th></tr></thead><tbody><tr data-key=\"Cell 1-1\"><td class=\"k-table-check\"><label class=\"k-checkbox css-rt2md4\" tabindex=\"0\"><span class=\"k-checkbox-wrapper\"><input type=\"checkbox\" tabindex=\"-1\" value=\"true\"></span></label></td><td title=\"Cell 1-1\">Cell 1-1</td><td title=\"Cell 1-3\">Cell 1-3</td></tr><tr data-key=\"Cell 2-1\"><td class=\"k-table-check\"><label class=\"k-checkbox css-rt2md4\" tabindex=\"0\"><span class=\"k-checkbox-wrapper\"><input type=\"checkbox\" tabindex=\"-1\" value=\"true\"></span></label></td><td title=\"Cell 2-1\">Cell 2-1</td><td title=\"Cell 2-3\">Cell 2-3</td></tr></tbody></table></div></div><div class=\"k-table css-gxoqtj\"><div class=\"k-table-wrapper\"><table><colgroup><col width=\"40\"><col><col></colgroup><thead><tr><th rowspan=\"1\"><label class=\"k-checkbox css-rt2md4\" tabindex=\"0\"><span class=\"k-checkbox-wrapper\"><input type=\"checkbox\" tabindex=\"-1\" value=\"true\"></span></label></th><th title=\"Title 1\" colspan=\"1\" rowspan=\"1\"><div class=\"k-table-title\"><div class=\"k-table-title-text c-ellipsis\">Title 1</div></div></th><th title=\"Title 3\" colspan=\"1\" rowspan=\"1\"><div class=\"k-table-resize\"></div><div class=\"k-table-title\"><div class=\"k-table-title-text c-ellipsis\">Title 3</div></div></th></tr></thead><tbody><tr data-key=\"Cell 1-1\"><td class=\"k-table-check\"><label class=\"k-checkbox css-rt2md4\" tabindex=\"0\"><span class=\"k-checkbox-wrapper\"><input type=\"checkbox\" tabindex=\"-1\" value=\"true\"></span></label></td><td title=\"Cell 1-1\">Cell 1-1</td><td title=\"Cell 1-3\">Cell 1-3</td></tr><tr data-key=\"Cell 2-1\"><td class=\"k-table-check\"><label class=\"k-checkbox css-rt2md4\" tabindex=\"0\"><span class=\"k-checkbox-wrapper\"><input type=\"checkbox\" tabindex=\"-1\" value=\"true\"></span></label></td><td title=\"Cell 2-1\">Cell 2-1</td><td title=\"Cell 2-3\">Cell 2-3</td></tr></tbody></table></div></div></div>"
1284
1284
  ```
1285
1285
 
1286
1286
  #### `Table basic`
@@ -39,6 +39,7 @@ describe('Drawer', () => {
39
39
  it('should handle event correctly', async () => {
40
40
  const click1 = sinon.spy(() => console.log(1));
41
41
  const click2 = sinon.spy(() => console.log(2));
42
+ const click3 = sinon.spy(() => console.log(3));
42
43
 
43
44
  ReactDOM.render(
44
45
  <div>
@@ -53,11 +54,18 @@ describe('Drawer', () => {
53
54
  <div className="click" onClick={click2}>click</div>
54
55
  </Card>
55
56
  </Drawer>
57
+ <Drawer value={true} title="3">
58
+ <div>
59
+ <Card>
60
+ <div className="click" onClick={click3}>click</div>
61
+ </Card>
62
+ </div>
63
+ </Drawer>
56
64
  </div>,
57
65
  container
58
66
  );
59
67
 
60
- const [element1, element2] = document.querySelectorAll<HTMLElement>('.click');
68
+ const [element1, element2, element3] = document.querySelectorAll<HTMLElement>('.click');
61
69
 
62
70
  dispatchEvent(element1, 'click');
63
71
  await wait();
@@ -66,5 +74,9 @@ describe('Drawer', () => {
66
74
  dispatchEvent(element2, 'click');
67
75
  await wait();
68
76
  expect(click2.callCount).to.eql(1);
77
+
78
+ dispatchEvent(element3, 'click');
79
+ await wait();
80
+ expect(click3.callCount).to.eql(1);
69
81
  });
70
82
  });
@@ -39,7 +39,7 @@ describe('React Demos', () => {
39
39
  }
40
40
 
41
41
  testDemos(reactReq, async (Demo) => {
42
- const [instance, element] = mount(wrap(Demo as any));
42
+ const [instance, element] = mount(wrap(Demo as any) as any);
43
43
  await wait(100);
44
44
  // FIXME: I don't know why the width of `autoWidth` input is an unexpected value
45
45
  // while we run test on Github Actions.
@@ -36,7 +36,7 @@ export function useValue() {
36
36
  });
37
37
  }
38
38
  });
39
- instance.watch('_show', function (value) {
39
+ instance.watch('show', function (value) {
40
40
  if (value) {
41
41
  showedValue.set(last(values.value) || []);
42
42
  }
@@ -1,5 +1,5 @@
1
1
  import { Component, TypeDefs } from 'intact-react';
2
- import type { editor } from 'monaco-editor';
2
+ import type { editor, default as monaco } from 'monaco-editor';
3
3
  import type { Events } from '../types';
4
4
  export interface CodeProps {
5
5
  value?: string;
@@ -11,7 +11,7 @@ export interface CodeProps {
11
11
  options?: editor.IStandaloneEditorConstructionOptions;
12
12
  }
13
13
  export interface CodeEvents {
14
- ready: [editor.IStandaloneCodeEditor, typeof editor];
14
+ ready: [editor.IStandaloneCodeEditor, typeof editor, typeof monaco];
15
15
  }
16
16
  export declare class Code extends Component<CodeProps, CodeEvents> {
17
17
  static template: string | import("intact").Template<any>;
@@ -29,7 +29,7 @@ export function useEditor() {
29
29
  }, options));
30
30
  watch(Editor, codeEditor);
31
31
  loading.set(false);
32
- instance.trigger('ready', codeEditor, Editor);
32
+ instance.trigger('ready', codeEditor, Editor, monaco);
33
33
  });
34
34
  });
35
35
  onBeforeUnmount(function () {
@@ -50,7 +50,7 @@ setDefault(function () {
50
50
  }).form;
51
51
  });
52
52
  export function makeItemStyles() {
53
- return /*#__PURE__*/css("display:table;position:relative;table-layout:fixed;&:not(:last-of-type){margin-bottom:", form.item.gap, ";}&.k-fluid{width:100%;}.k-form-label{display:table-cell;width:", form.item.labelWidth, ";text-align:", form.item.labelTextAlign, ";padding-right:", form.item.labelGap, ";line-height:", form.item.labelLineHeight, ";}.k-form-star{color:", form.item.starColor, ";margin-right:", form.item.starGap, ";}.k-form-content{display:table-cell;vertical-align:middle;position:relative;}.k-form-error{position:absolute;color:", form.item.errorColor, ";font-size:", form.item.errorFontSize, ";left:0;right:0;display:flex;align-items:center;&.k-ellipsis{.k-form-error-more{display:inline-block;}}}.k-form-error-more{line-height:", form.item.errorFontSize, ";display:none;}&.k-invalid{.k-input{.k-input-inner{border:", form.item.invalidBorder, ";position:relative;z-index:1;}}.k-select,.k-checkbox-wrapper,.k-radio-wrapper{border:", form.item.invalidBorder, "!important;}.k-select .k-input .k-input-inner{border:none;}}.k-form-item{display:block;width:auto;}.k-form-append{display:table-cell;padding:", form.item.appendPadding, ";vertical-align:middle;}");
53
+ return /*#__PURE__*/css("display:table;position:relative;table-layout:fixed;&:not(:last-of-type){margin-bottom:", form.item.gap, ";}&.k-fluid{width:100%;}.k-form-label{display:table-cell;width:", form.item.labelWidth, ";text-align:", form.item.labelTextAlign, ";padding-right:", form.item.labelGap, ";line-height:", form.item.labelLineHeight, ";}.k-form-star{color:", form.item.starColor, ";margin-right:", form.item.starGap, ";}.k-form-content{display:table-cell;vertical-align:middle;position:relative;}.k-form-error{position:absolute;color:", form.item.errorColor, ";font-size:", form.item.errorFontSize, ";left:0;right:0;display:flex;align-items:center;&.k-ellipsis{.k-form-error-more{display:inline-block;}}}.k-form-error-more{line-height:", form.item.errorFontSize, ";display:none;}&.k-invalid{.k-input{.k-input-inner{border:", form.item.invalidBorder, ";position:relative;z-index:1;}}.k-select,.k-checkbox-wrapper,.k-radio-wrapper{border:", form.item.invalidBorder, "!important;}.k-select .k-input .k-input-inner{border:none;}}.k-form-item{&,.k-form-content{display:block;width:auto;}}.k-form-append{display:table-cell;padding:", form.item.appendPadding, ";vertical-align:middle;}");
54
54
  }
55
55
  export function makeFormStyles() {
56
56
  var _context;
@@ -20,7 +20,7 @@ export interface BaseSelectProps<V, Multipe extends boolean = boolean, Attach =
20
20
  placeholder?: Children;
21
21
  container?: Container;
22
22
  width?: string | number;
23
- _show?: boolean;
23
+ show?: boolean;
24
24
  }
25
25
  export interface BaseSelectEvents {
26
26
  keydown: [KeyboardEvent];
@@ -27,7 +27,7 @@ var typeDefs = {
27
27
  placeholder: [String, Number],
28
28
  container: [Function, String],
29
29
  width: [String, Number],
30
- _show: Boolean
30
+ show: Boolean
31
31
  };
32
32
 
33
33
  var defaults = function defaults() {
@@ -65,7 +65,7 @@ export var BaseSelect = /*#__PURE__*/function (_Component) {
65
65
 
66
66
  _proto.init = function init() {
67
67
  provide(SELECT, this);
68
- useShowHideEvents('_show'); // this.input = useInput();
68
+ useShowHideEvents('show'); // this.input = useInput();
69
69
 
70
70
  this.watch('value', this.position, {
71
71
  presented: true
@@ -81,11 +81,11 @@ export var BaseSelect = /*#__PURE__*/function (_Component) {
81
81
  };
82
82
 
83
83
  _proto.show = function show() {
84
- this.set('_show', true);
84
+ this.set('show', true);
85
85
  };
86
86
 
87
87
  _proto.hide = function hide() {
88
- this.set('_show', false);
88
+ this.set('show', false);
89
89
  };
90
90
 
91
91
  _proto.resetKeywords = function resetKeywords(keywords) {
@@ -40,7 +40,7 @@ export default function ($props, $blocks, $__proto__) {
40
40
  inline = _this$get.inline,
41
41
  style = _this$get.style,
42
42
  width = _this$get.width,
43
- _show = _this$get._show;
43
+ show = _this$get.show;
44
44
 
45
45
  var classNameObj = (_classNameObj = {
46
46
  'k-select': true,
@@ -94,7 +94,7 @@ export default function ($props, $blocks, $__proto__) {
94
94
  'name': 'k-fade',
95
95
  'appear': false,
96
96
  'children': !multiple && filterable ? _$cc(Input, {
97
- 'value': _show ? keywords : label,
97
+ 'value': show ? keywords : label,
98
98
  'ev-$change:value': onInput,
99
99
  'disabled': disabled,
100
100
  'placeholder': label || placeholder,
@@ -103,7 +103,7 @@ export default function ($props, $blocks, $__proto__) {
103
103
  'fluid': true,
104
104
  'inline': true,
105
105
  'key': 'input',
106
- 'readonly': !_show,
106
+ 'readonly': !show,
107
107
  'waveDisabled': true
108
108
  }, 'input', inputRef) : !filterable && !hasValue ? _$ce(2, 'div', placeholder, 0, 'k-select-placeholder c-ellipsis', null, 'placeholder') : !multiple ? _$ce(2, 'div', (_$blocks['value'] = function ($super) {
109
109
  return label;
@@ -155,7 +155,7 @@ export default function ($props, $blocks, $__proto__) {
155
155
  'inline': true,
156
156
  'size': size,
157
157
  'key': 'filter',
158
- 'readonly': !_show,
158
+ 'readonly': !show,
159
159
  'waveDisabled': true
160
160
  }, 'filter', inputRef) : undefined], 0, _$cn({
161
161
  "k-select-values": true,
@@ -195,9 +195,9 @@ export default function ($props, $blocks, $__proto__) {
195
195
  return block ? block.call($this, callBlock, data) : callBlock();
196
196
  }, __$blocks['base-menu'](_$no))],
197
197
  'ev-$model:value': function ev$modelValue($v) {
198
- $this.set('_show', $v);
198
+ $this.set('show', $v);
199
199
  },
200
- 'value': $this.get('_show')
200
+ 'value': $this.get('show')
201
201
  }, null, _this.dropdownRef)
202
202
  });
203
203
  }
@@ -1,7 +1,7 @@
1
1
  import { useInstance, findDomFromVNode } from 'intact-react';
2
2
  export function useEqualWidth() {
3
3
  var instance = useInstance();
4
- instance.watch('_show', setWidth, {
4
+ instance.watch('show', setWidth, {
5
5
  presented: true
6
6
  });
7
7
 
@@ -20,7 +20,7 @@ export function useFocusout() {
20
20
  function onFocusout(e) {
21
21
  instance.trigger('focusout', e);
22
22
 
23
- if (instance.get('_show')) {
23
+ if (instance.get('show')) {
24
24
  e.stopPropagation();
25
25
  }
26
26
  }
@@ -25,7 +25,7 @@ export function useInput(resetKeywords) {
25
25
  }
26
26
  }
27
27
 
28
- component.on('$changed:_show', function (show) {
28
+ component.on('$changed:show', function (show) {
29
29
  if (show) {
30
30
  focusInput();
31
31
  resetKeywords(keywords);
@@ -23,6 +23,7 @@ export interface TableRowProps {
23
23
  onToggleSpreadRow: (key: TableRowKey) => void;
24
24
  onBeforeUnmount: (key: TableRowKey) => void;
25
25
  offsetMap: Record<Key, number>;
26
+ animation: boolean;
26
27
  draggable: boolean;
27
28
  draggingKey: TableRowKey | null;
28
29
  onRowDragStart: DragCallback;
@@ -5,7 +5,7 @@ import { getClassAndStyleForFixed } from './useFixedColumns';
5
5
  import { Checkbox } from '../checkbox';
6
6
  import { Radio } from '../radio';
7
7
  import { TableCell } from './cell';
8
- import { createElementVNode, className as cx } from 'intact';
8
+ import { createElementVNode, className as cx, createFragment } from 'intact';
9
9
  export default function ($props, $blocks, $__proto__) {
10
10
  var _classNameObj,
11
11
  _this = this;
@@ -34,7 +34,8 @@ export default function ($props, $blocks, $__proto__) {
34
34
  key = _this$get.key,
35
35
  offsetMap = _this$get.offsetMap,
36
36
  draggable = _this$get.draggable,
37
- draggingKey = _this$get.draggingKey;
37
+ draggingKey = _this$get.draggingKey,
38
+ animation = _this$get.animation;
38
39
 
39
40
  var classNameObj = (_classNameObj = {
40
41
  'k-disabled': disabled,
@@ -110,16 +111,14 @@ export default function ($props, $blocks, $__proto__) {
110
111
  'key': columnKey
111
112
  }, columnKey));
112
113
  });
113
-
114
- var rows = _$cc(TransitionGroup, {
114
+ var rows = animation ? _$cc(TransitionGroup, {
115
115
  'name': 'k-fade-expand',
116
116
  'move': false,
117
117
  'children': vNodes
118
- });
118
+ }) : createFragment(vNodes, 8);
119
119
  /* const rows = vNodes; */
120
120
  // for performance, no normalize
121
121
 
122
-
123
122
  return createElementVNode(2, 'tr', rows, 2, cx(classNameObj), {
124
123
  'data-key': key,
125
124
  'ev-mouseenter': this.onMouseEnter,
@@ -34,6 +34,7 @@ export interface TableProps<T = any, K extends TableRowKey = TableRowKey, C exte
34
34
  minColWidth?: number;
35
35
  widthStoreKey?: string;
36
36
  draggable?: boolean;
37
+ animation?: boolean | [boolean, boolean];
37
38
  }
38
39
  export interface TableEvents<T = any, K extends TableRowKey = number> {
39
40
  clickRow: [T, number, K];
@@ -56,7 +56,8 @@ var typeDefs = {
56
56
  resizable: Boolean,
57
57
  minColWidth: Number,
58
58
  widthStoreKey: String,
59
- draggable: Boolean
59
+ draggable: Boolean,
60
+ animation: [Boolean, Array]
60
61
  };
61
62
 
62
63
  var defaults = function defaults() {
@@ -69,7 +70,8 @@ var defaults = function defaults() {
69
70
  rowExpandable: true,
70
71
  childrenKey: 'children',
71
72
  indent: 32,
72
- minColWidth: 40
73
+ minColWidth: 40,
74
+ animation: true
73
75
  };
74
76
  };
75
77
 
@@ -57,7 +57,10 @@ export default function ($props, $blocks, $__proto__) {
57
57
  tooltipContainer = _this$get.tooltipContainer,
58
58
  showIndeterminate = _this$get.showIndeterminate,
59
59
  resizable = _this$get.resizable,
60
- draggable = _this$get.draggable;
60
+ draggable = _this$get.draggable,
61
+ _animation = _this$get.animation;
62
+
63
+ var animation = !Array.isArray(_animation) ? [_animation, _animation] : _animation;
61
64
 
62
65
  var _this$columns$getData = this.columns.getData(),
63
66
  columns = _this$columns$getData.columns,
@@ -130,10 +133,8 @@ export default function ($props, $blocks, $__proto__) {
130
133
  'children': _$cc(FixedColumnsContext.Provider, {
131
134
  'value': offsetMap,
132
135
  'children': _$ce(2, 'thead', _$ma(columns, function ($value, $key) {
133
- return _$ce(2, 'tr', _$cc(TransitionGroup, {
134
- 'name': 'k-fade-expand',
135
- 'move': false,
136
- 'children': [$key === 0 && checkType !== 'none' ? _$cv('th', _extends({}, getClassAndStyleForFixed({
136
+ return _$ce(2, 'tr', function () {
137
+ var ths = [$key === 0 && checkType !== 'none' ? _$cv('th', _extends({}, getClassAndStyleForFixed({
137
138
  fixed: hasFixedLeft ? 'left' : false
138
139
  }, 0), {
139
140
  'rowspan': maxRows,
@@ -143,8 +144,13 @@ export default function ($props, $blocks, $__proto__) {
143
144
  'indeterminate': showIndeterminate && allCheckedStatus == AllCheckedStatus.Indeterminate,
144
145
  'ev-$change:value': toggleCheckedAll,
145
146
  'disabled': !hasData
146
- }) : undefined) : undefined, $value]
147
- }), 2);
147
+ }) : undefined) : undefined, $value];
148
+ return animation[1] ? _$cc(TransitionGroup, {
149
+ 'name': 'k-fade-expand',
150
+ 'move': false,
151
+ 'children': ths
152
+ }) : ths;
153
+ }(), 0);
148
154
  }, $this), 4)
149
155
  })
150
156
  })
@@ -181,115 +187,116 @@ export default function ($props, $blocks, $__proto__) {
181
187
  return block ? block.call($this, callBlock, data) : callBlock();
182
188
  }, __$blocks['empty'](_$no)), 0, 'k-table-empty', {
183
189
  'colspan': colCount
184
- }), 2, null, null, 'table-empty') : _$cc(TransitionGroup, {
185
- 'name': 'k-fade-in-left',
186
- 'move': !draggingKey.value,
187
- 'children': function () {
188
- var rows = [];
189
- loopData(function (value, index, level, hidden) {
190
- // don't render if row is hidden
191
- if (hidden) return hidden;
192
- var status = allStatus[index];
193
- var key = allKeys[index];
194
- var spreaded = isSpreaded(key);
195
- var hasChildren = !!childrenKey && Array.isArray(value[childrenKey]);
196
- var indentSize = indent ? indent * level : 0;
190
+ }), 2, null, null, 'table-empty') : function () {
191
+ var rows = [];
192
+ loopData(function (value, index, level, hidden) {
193
+ // don't render if row is hidden
194
+ if (hidden) return hidden;
195
+ var status = allStatus[index];
196
+ var key = allKeys[index];
197
+ var spreaded = isSpreaded(key);
198
+ var hasChildren = !!childrenKey && Array.isArray(value[childrenKey]);
199
+ var indentSize = indent ? indent * level : 0;
197
200
 
198
- var row = _$cc(TableRow, {
199
- 'key': key,
200
- 'cols': cols,
201
- 'data': value,
202
- 'checkType': checkType,
203
- 'hasFixedLeft': hasFixedLeft,
204
- 'onClick': _this.clickRow,
205
- 'checked': status.checked,
206
- 'indeterminate': status.indeterminate,
207
- 'index': index,
208
- 'disabled': status.disabled,
209
- 'allDisabled': status.allDisabled,
210
- 'className': _$cn(rowClassName && rowClassName(value, index, key)),
211
- 'merge': merge,
212
- 'grid': getGrid(),
213
- 'onChangeChecked': onChangeChecked,
214
- 'selected': isSelected(key),
215
- 'spreaded': spreaded,
216
- 'hasChildren': hasChildren,
217
- 'indent': indentSize,
218
- 'onToggleSpreadRow': toggleSpreadRow,
219
- 'onBeforeUnmount': _this.resetRowStatus.onRowBeforeUnmount,
220
- 'offsetMap': offsetMap,
221
- 'draggable': draggable,
222
- 'draggingKey': draggingKey.value,
223
- 'onRowDragStart': onRowDragStart,
224
- 'onRowDragEnd': onRowDragEnd,
225
- 'onRowDragOver': onRowDragOver
226
- }, key);
201
+ var row = _$cc(TableRow, {
202
+ 'key': key,
203
+ 'cols': cols,
204
+ 'data': value,
205
+ 'checkType': checkType,
206
+ 'hasFixedLeft': hasFixedLeft,
207
+ 'onClick': _this.clickRow,
208
+ 'checked': status.checked,
209
+ 'indeterminate': status.indeterminate,
210
+ 'index': index,
211
+ 'disabled': status.disabled,
212
+ 'allDisabled': status.allDisabled,
213
+ 'className': _$cn(rowClassName && rowClassName(value, index, key)),
214
+ 'merge': merge,
215
+ 'grid': getGrid(),
216
+ 'onChangeChecked': onChangeChecked,
217
+ 'selected': isSelected(key),
218
+ 'spreaded': spreaded,
219
+ 'hasChildren': hasChildren,
220
+ 'indent': indentSize,
221
+ 'onToggleSpreadRow': toggleSpreadRow,
222
+ 'onBeforeUnmount': _this.resetRowStatus.onRowBeforeUnmount,
223
+ 'offsetMap': offsetMap,
224
+ 'animation': animation[1],
225
+ 'draggable': draggable,
226
+ 'draggingKey': draggingKey.value,
227
+ 'onRowDragStart': onRowDragStart,
228
+ 'onRowDragEnd': onRowDragEnd,
229
+ 'onRowDragOver': onRowDragOver
230
+ }, key);
227
231
 
228
- if ($blocks.tooltip) {
229
- var content = (_$blocks['tooltip'] = function ($super) {
230
- return null;
231
- }, __$blocks['tooltip'] = function ($super, data) {
232
- var block = $blocks['tooltip'];
232
+ if ($blocks.tooltip) {
233
+ var content = (_$blocks['tooltip'] = function ($super) {
234
+ return null;
235
+ }, __$blocks['tooltip'] = function ($super, data) {
236
+ var block = $blocks['tooltip'];
233
237
 
234
- var callBlock = function callBlock() {
235
- return _$blocks['tooltip'].call($this, $super, data);
236
- };
238
+ var callBlock = function callBlock() {
239
+ return _$blocks['tooltip'].call($this, $super, data);
240
+ };
237
241
 
238
- return block ? block.call($this, callBlock, data) : callBlock();
239
- }, __$blocks['tooltip'](_$no, [value, index]));
240
- row = _$cc(Tooltip, {
241
- 'key': key,
242
- 'position': tooltipPosition,
243
- 'container': tooltipContainer,
244
- 'children': row,
245
- '$blocks': function ($blocks) {
246
- var _$blocks = {},
247
- __$blocks = _$ex({}, $blocks);
242
+ return block ? block.call($this, callBlock, data) : callBlock();
243
+ }, __$blocks['tooltip'](_$no, [value, index]));
244
+ row = _$cc(Tooltip, {
245
+ 'key': key,
246
+ 'position': tooltipPosition,
247
+ 'container': tooltipContainer,
248
+ 'children': row,
249
+ '$blocks': function ($blocks) {
250
+ var _$blocks = {},
251
+ __$blocks = _$ex({}, $blocks);
248
252
 
249
- return (_$blocks['content'] = function ($super) {
250
- return content;
251
- }, __$blocks['content'] = function ($super, data) {
252
- var block = $blocks['content'];
253
+ return (_$blocks['content'] = function ($super) {
254
+ return content;
255
+ }, __$blocks['content'] = function ($super, data) {
256
+ var block = $blocks['content'];
253
257
 
254
- var callBlock = function callBlock() {
255
- return _$blocks['content'].call($this, $super, data);
256
- };
258
+ var callBlock = function callBlock() {
259
+ return _$blocks['content'].call($this, $super, data);
260
+ };
257
261
 
258
- return block ? block.call($this, callBlock, data) : callBlock();
259
- }), __$blocks;
260
- }.call($this, _$em)
261
- }, key);
262
- }
262
+ return block ? block.call($this, callBlock, data) : callBlock();
263
+ }), __$blocks;
264
+ }.call($this, _$em)
265
+ }, key);
266
+ }
263
267
 
264
- rows.push(row);
268
+ rows.push(row);
265
269
 
266
- if ($blocks.expand) {
267
- var expanded = isExpanded(key);
268
- rows.push(_$ce(2, 'tr', _$ce(2, 'td', _$cc(Transition, _extends({}, expandAnimationCallbacks, {
269
- 'children': expanded ? _$ce(2, 'div', (_$blocks['expand'] = function ($super) {
270
- return null;
271
- }, __$blocks['expand'] = function ($super, data) {
272
- var block = $blocks['expand'];
270
+ if ($blocks.expand) {
271
+ var expanded = isExpanded(key);
272
+ rows.push(_$ce(2, 'tr', _$ce(2, 'td', _$cc(Transition, _extends({}, expandAnimationCallbacks, {
273
+ 'children': expanded ? _$ce(2, 'div', (_$blocks['expand'] = function ($super) {
274
+ return null;
275
+ }, __$blocks['expand'] = function ($super, data) {
276
+ var block = $blocks['expand'];
273
277
 
274
- var callBlock = function callBlock() {
275
- return _$blocks['expand'].call($this, $super, data);
276
- };
278
+ var callBlock = function callBlock() {
279
+ return _$blocks['expand'].call($this, $super, data);
280
+ };
277
281
 
278
- return block ? block.call($this, callBlock, data) : callBlock();
279
- }, __$blocks['expand'](_$no, [value, index])), 0, 'k-table-expand') : undefined
280
- })), 2, null, {
281
- 'colspan': colCount
282
- }), 2, _$cn({
283
- "k-expand": true,
284
- 'k-expanded': expanded
285
- }), null, key + ".$expand"));
286
- }
282
+ return block ? block.call($this, callBlock, data) : callBlock();
283
+ }, __$blocks['expand'](_$no, [value, index])), 0, 'k-table-expand') : undefined
284
+ })), 2, null, {
285
+ 'colspan': colCount
286
+ }), 2, _$cn({
287
+ "k-expand": true,
288
+ 'k-expanded': expanded
289
+ }), null, key + ".$expand"));
290
+ }
287
291
 
288
- return hidden || !spreaded;
289
- });
290
- return rows;
291
- }()
292
- }), 0);
292
+ return hidden || !spreaded;
293
+ });
294
+ return animation[0] ? _$cc(TransitionGroup, {
295
+ 'name': 'k-fade-in-left',
296
+ 'move': !draggingKey.value,
297
+ 'children': rows
298
+ }) : rows;
299
+ }(), 0);
293
300
 
294
301
  var tableWidthPx = tableWidth.value ? tableWidth.value + "px" : null;
295
302
  var _this$stickyScrollbar = this.stickyScrollbar,
@@ -8,6 +8,6 @@ export interface TooltipProps extends BaseTooltipProps {
8
8
  export interface TooltipBlocks extends BaseTooltipBlocks, TooltipContentBlocks {
9
9
  content: null;
10
10
  }
11
- declare class _Tooltip extends BaseTooltip<TooltipProps, TooltipEvents, TooltipBlocks> {
11
+ export declare class _Tooltip extends BaseTooltip<TooltipProps, TooltipEvents, TooltipBlocks> {
12
12
  }
13
13
  export declare const Tooltip: typeof _Tooltip;
@@ -13,5 +13,5 @@ setDefault(function () {
13
13
  });
14
14
  export function makeStyles(color, inset) {
15
15
  var waveEffect = /*#__PURE__*/keyframes("100%{top:calc(", inset, " + ", wave.inset, ");bottom:calc(", inset, " + ", wave.inset, ");left:calc(", inset, " + ", wave.inset, ");right:calc(", inset, " + ", wave.inset, ");opacity:0.05;}");
16
- return /*#__PURE__*/css("position:relative;&::after{display:block;content:'';position:absolute;top:", inset, ";bottom:", inset, ";left:", inset, ";right:", inset, ";opacity:0.4;border-radius:4px;z-index:2;animation:", waveEffect, " .2s ease-in;animation-fill-mode:forwards;border:2px solid ", color, ";}&.k-circle,&.k-radio-wrapper{&:after{border-radius:calc(", theme.large.height, " / 2 + 4px);}}");
16
+ return /*#__PURE__*/css("position:relative;&::after{display:block;content:'';position:absolute;top:", inset, ";bottom:", inset, ";left:", inset, ";right:", inset, ";opacity:0.4;border-radius:4px;z-index:2;animation:", waveEffect, " .2s ease-in;animation-fill-mode:forwards;border:2px solid ", color, ";pointer-events:none;}&.k-circle,&.k-radio-wrapper{&:after{border-radius:calc(", theme.large.height, " / 2 + 4px);}}");
17
17
  }
package/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * @king-design v2.0.13-beta.0
2
+ * @king-design v2.0.14
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.13-beta.0";
60
+ export declare const version = "2.0.14";
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.13-beta.0
2
+ * @king-design v2.0.14
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.13-beta.0';
62
+ export var version = '2.0.14';
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.13-beta.0",
3
+ "version": "2.0.14",
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.13",
40
+ "intact-react": "3.0.14",
41
41
  "monaco-editor": "^0.26.1",
42
42
  "mxgraphx": "^4.0.7",
43
43
  "resize-observer-polyfill": "^1.5.1",
package/styles/global.js CHANGED
@@ -12,6 +12,6 @@ var slideDirections = {
12
12
  right: 'left center 0'
13
13
  }; // TODO: update global when theme changed
14
14
 
15
- injectGlobal("html{--var-wave-color:", theme.color.primary, ";box-sizing:border-box;font-family:-apple-system,BlinkMacSystemFont,SF Pro SC,SF Pro Text,Helvetica Neue,Helvetica,PingFang SC,Segoe UI,Roboto,Hiragino Sans GB,arial,microsoft yahei ui,Microsoft YaHei,SimSun,sans-serif;}body{font-size:", theme.fontSize, ";line-height:", theme.lineHeight, ";margin:0;padding:0;color:", theme.color.text, ";}*,*:before,*:after{box-sizing:inherit;}", _mapInstanceProperty(_context = _Object$keys(slideDirections)).call(_context, function (direction) {
15
+ injectGlobal("html{--var-wave-color:", theme.color.primary, ";box-sizing:border-box;font-family:-apple-system,BlinkMacSystemFont,SF Pro SC,SF Pro Text,Helvetica Neue,Helvetica,PingFang SC,Segoe UI,Roboto,Hiragino Sans GB,arial,microsoft yahei ui,Microsoft YaHei,sans-serif;}body{font-size:", theme.fontSize, ";line-height:", theme.lineHeight, ";margin:0;padding:0;color:", theme.color.text, ";}*,*:before,*:after{box-sizing:inherit;}", _mapInstanceProperty(_context = _Object$keys(slideDirections)).call(_context, function (direction) {
16
16
  return "\n .k-slide" + direction + "-enter-from,\n .k-slide" + direction + "-leave-to {\n transform-origin: " + slideDirections[direction] + ";\n opacity: 0;\n transform: " + (direction === 'down' || direction === 'up' ? "scaleY(.8)" : 'scaleX(.8)') + ";\n }\n .k-slide" + direction + "-enter-active,\n .k-slide" + direction + "-leave-active {\n transform-origin: " + slideDirections[direction] + ";\n transition: opacity " + theme.transition.large + ", transform " + theme.transition.large + " !important;\n pointer-events: none;\n }\n ";
17
17
  }).join(''), " .k-fade-enter-from,.k-fade-leave-to{opacity:0!important;}.k-fade-enter-active,.k-fade-leave-active{transition:opacity ", theme.transition.large, ";}.k-fade-leave-active:not(tr){position:absolute;}.k-fade-move{transition:transform ", theme.transition.large, ";}.k-scale-enter-from,.k-scale-leave-to{transform:scale(0);}.k-scale-enter-active,.k-scale-leave-active{transition:transform ", theme.transition.large, ";}.k-expand-enter-from,.k-expand-leave-to{opacity:0;overflow:hidden;}.k-expand-enter-active,.k-expand-leave-active{transition:all ", theme.transition.large, "!important;overflow:hidden;}.k-expand-move{transition:transform ", theme.transition.large, ";}.k-dropdown-enter-from,.k-dropdown-leave-to{opacity:0;transform:translateY(-20px);}.k-dropdown-enter-active,.k-dropdown-leave-active,.k-dropdown-move{transition:all ", theme.transition.large, ";}.k-dropdown-leave-active{position:absolute!important;}.k-dropdown-move{transition:transform ", theme.transition.large, ";}.k-fade-in-left-enter-from,.k-fade-in-left-leave-to{opacity:0;transform:translate3d(-15px, 0, 0);}.k-fade-in-left-enter-active,.k-fade-in-left-leave-active{transition:all ", theme.transition.large, ";td{background:", palette(theme.color.primary, -4), "!important;}}.k-fade-in-left-move{transition:transform ", theme.transition.large, ";}.k-fade-expand-enter-from,.k-fade-expand-leave-to{opacity:0;}.k-fade-expand-enter-active,.k-fade-expand-leave-active{transition:all ", theme.transition.large, ";background:", palette(theme.color.primary, -4), "!important;}.c-ellipsis{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}.c-hidden{display:none;}.c-middle{display:inline-block;vertical-align:middle;}");
package/yarn-error.log CHANGED
@@ -1,25 +1,25 @@
1
1
  Arguments:
2
- /Users/javey/.nvm/versions/node/v14.17.3/bin/node /Users/javey/.node/corepack/yarn/1.22.15/bin/yarn.js
2
+ /home/javey/.nvm/versions/node/v14.21.3/bin/node /usr/share/yarn/bin/yarn.js
3
3
 
4
4
  PATH:
5
- /Users/javey/Workspaces/kpc/node_modules/.bin:/Users/javey/.nvm/versions/node/v14.17.3/bin:/Users/javey/.cargo/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Library/Apple/usr/bin:/Users/javey/.nvm/versions/node/v14.17.3/bin:/Users/javey/.cargo/bin:/Users/javey/.bin:/Users/javey/.bin
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
6
 
7
7
  Yarn version:
8
- 1.22.15
8
+ 1.22.19
9
9
 
10
10
  Node version:
11
- 14.17.3
11
+ 14.21.3
12
12
 
13
13
  Platform:
14
- darwin x64
14
+ linux x64
15
15
 
16
16
  Trace:
17
- Error: https://registry.yarnpkg.com/intact/-/intact-3.0.10.tgz: ENOENT: no such file or directory, open '/Users/javey/Library/Caches/Yarn/v6/npm-intact-3.0.10-eab07b631228e2cbeb1445fe2ad9ce0fbf6d45b3-integrity/node_modules/intact/.yarn-tarball.tgz'
17
+ Error: https://registry.npmmirror.com/dayjs/-/dayjs-1.10.7.tgz: ENOENT: no such file or directory, open '/home/javey/.cache/yarn/v6/npm-dayjs-1.10.7-2cf5f91add28116748440866a0a1d26f3a6ce468-integrity/node_modules/dayjs/.yarn-tarball.tgz'
18
18
 
19
19
  npm manifest:
20
20
  {
21
21
  "name": "@king-design/react",
22
- "version": "2.0.8",
22
+ "version": "2.0.13",
23
23
  "description": "King-Design UI components for React.",
24
24
  "keywords": [
25
25
  "component",
@@ -56,7 +56,7 @@ npm manifest:
56
56
  "dayjs": "^1.10.7",
57
57
  "downloadjs": "^1.4.7",
58
58
  "enquire.js": "^2.1.6",
59
- "intact-react": "3.0.10",
59
+ "intact-react": "3.0.14",
60
60
  "monaco-editor": "^0.26.1",
61
61
  "mxgraphx": "^4.0.7",
62
62
  "resize-observer-polyfill": "^1.5.1",
@@ -358,29 +358,29 @@ Lockfile:
358
358
  parent-module "^1.0.0"
359
359
  resolve-from "^4.0.0"
360
360
 
361
- intact-react@3.0.9:
362
- version "3.0.9"
363
- resolved "https://registry.yarnpkg.com/intact-react/-/intact-react-3.0.9.tgz#03c01b33ea05a0d8d09341c752897569325dfe44"
364
- integrity sha512-QSwmy13k7rXZz7T9qwqNtKEX2CdbPOCFJYje3WOrf9AWAG/NX6tzggLM1Br6Rf3kcuq7LrsOiW1LEcvgJrz3Rg==
361
+ intact-react@3.0.13:
362
+ version "3.0.13"
363
+ resolved "https://registry.yarnpkg.com/intact-react/-/intact-react-3.0.13.tgz#bbe9bb5afa2c67cfc058a4557ce28b7a52f30952"
364
+ integrity sha512-RegeLioJOCneDDgg2BfPt5Zuzn0RL+FuvVhyyakc5nPvMfxKOKXY7VbvYGCV3DeYwpPPn+AmY5ZHAyoqPQCiGQ==
365
365
  dependencies:
366
- intact "^3.0.9"
366
+ intact "^3.0.13"
367
367
  tslib "^2.3.1"
368
368
 
369
- intact-shared@^3.0.9:
370
- version "3.0.9"
371
- resolved "https://registry.yarnpkg.com/intact-shared/-/intact-shared-3.0.9.tgz#de7c67de2bfd5078a729d20c84182cd43610db48"
372
- integrity sha512-c/T+EyJeBCIh4XGphVOK7tH3t+J4FXoknzV/gSTiZYsLZDSGA2cBRD6z6NGWGDnj/XAXPbFaFIAFKXNhCaTjNQ==
369
+ intact-shared@^3.0.13:
370
+ version "3.0.13"
371
+ resolved "https://registry.yarnpkg.com/intact-shared/-/intact-shared-3.0.13.tgz#e8e6f36d95cded2d9d5a3e1302a3315e9d182cf6"
372
+ integrity sha512-DClf1YscE9RYOeYAY3BFv1UuFt5SvrO2kLL9QbZbWGDaroEVuX/2F2UcisjE3PNbDvVtZ8+pbRZ8P/kZy9YnNQ==
373
373
 
374
- intact@^3.0.9:
375
- version "3.0.9"
376
- resolved "https://registry.yarnpkg.com/intact/-/intact-3.0.9.tgz#a4c0b3574d97c77c62cd1a1e84d6e27742888e6f"
377
- integrity sha512-liBz/xo0XAKIuXBoBs0G6yvWHGJTb43ChF4AUJzQNr4CHX5YWZPgIKGvw34UScBmYWpu3SzwvMDLs7aoVDITxg==
374
+ intact@^3.0.13:
375
+ version "3.0.13"
376
+ resolved "https://registry.yarnpkg.com/intact/-/intact-3.0.13.tgz#19c7cb0424e532b68a4a3f5f43229ddd0d3f8709"
377
+ integrity sha512-RTZOY72BOXOcpb1BswmhDMtbOLo0EoiHFT/HBjpXUTRu2TRnNm5yFh0VIF7dL1ZREYxiKEpvPUFIoFhwjMRzRg==
378
378
  dependencies:
379
- intact-shared "^3.0.9"
380
- misstime "^3.0.9"
379
+ intact-shared "^3.0.13"
380
+ misstime "^3.0.13"
381
381
  tslib "^2.2.0"
382
- vdt "^3.0.9"
383
- vdt-compiler "^3.0.9"
382
+ vdt "^3.0.13"
383
+ vdt-compiler "^3.0.13"
384
384
 
385
385
  is-arrayish@^0.2.1:
386
386
  version "0.2.1"
@@ -409,12 +409,12 @@ Lockfile:
409
409
  resolved "https://registry.npmmirror.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632"
410
410
  integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==
411
411
 
412
- misstime@^3.0.9:
413
- version "3.0.9"
414
- resolved "https://registry.yarnpkg.com/misstime/-/misstime-3.0.9.tgz#0f6094109768c71c7fc4bdd47aba7e847c12f672"
415
- integrity sha512-LYgnqiU2eucjimJbjM5p4VHNR27mVAl8ISbolYUHQS9J0fk2JN00MPH7H4uEbCAFmSrVVHLAJgQ+qGRj+/GNeg==
412
+ misstime@^3.0.13:
413
+ version "3.0.13"
414
+ resolved "https://registry.yarnpkg.com/misstime/-/misstime-3.0.13.tgz#b9f614627eda9fe25b7db08768fa08858dce61e2"
415
+ integrity sha512-a5Md2dpyyT+0tRAHdIQi1NEWfFOPfPTvqpvqJ1CzT8zZDd/DesGjCt4+pAi88fBcDnmdw213PMe1lNwvSlmo0A==
416
416
  dependencies:
417
- intact-shared "^3.0.9"
417
+ intact-shared "^3.0.13"
418
418
 
419
419
  monaco-editor@^0.26.1:
420
420
  version "0.26.1"
@@ -519,22 +519,22 @@ Lockfile:
519
519
  resolved "https://registry.npmmirror.com/tslib/-/tslib-2.3.1.tgz#e8a335add5ceae51aa261d32a490158ef042ef01"
520
520
  integrity sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==
521
521
 
522
- vdt-compiler@^3.0.9:
523
- version "3.0.9"
524
- resolved "https://registry.yarnpkg.com/vdt-compiler/-/vdt-compiler-3.0.9.tgz#4d33cedd92bf622b553869480ef3f1c1e0490bea"
525
- integrity sha512-pK9aQUxcpXs6fho5bJ8jrlp/jfBJPomLUtSFexK6nDgShw4yTmXErZUV51tnSSXauO4QsF75OLFdvgcH+F1/Tg==
522
+ vdt-compiler@^3.0.13:
523
+ version "3.0.13"
524
+ resolved "https://registry.yarnpkg.com/vdt-compiler/-/vdt-compiler-3.0.13.tgz#bfbf4f58b60ee4ad9b571c43e50bd872f62c59ff"
525
+ integrity sha512-lNTsB9M4mGmcUr21hro1lOcVHFXQBsO14c3K6WUlOGQgJvjp4ELhjIIbaL525Q//O08geviNuvf1V2gK/4Xtmg==
526
526
  dependencies:
527
- intact-shared "^3.0.9"
528
- misstime "^3.0.9"
527
+ intact-shared "^3.0.13"
528
+ misstime "^3.0.13"
529
529
  tslib "^2.2.0"
530
530
 
531
- vdt@^3.0.9:
532
- version "3.0.9"
533
- resolved "https://registry.yarnpkg.com/vdt/-/vdt-3.0.9.tgz#de3b3259cb2dfd7934c0bb179c6de1b3b4ac025a"
534
- integrity sha512-TyKJxDaIDryxdseZW7UXN9lQMngTygFPazhQ+O2M+biH6QzP1yk7iTYH4BPKoyJGEfd3zm7z1n/ifRdMRXp7Tw==
531
+ vdt@^3.0.13:
532
+ version "3.0.13"
533
+ resolved "https://registry.yarnpkg.com/vdt/-/vdt-3.0.13.tgz#ca74d3469529468c997f0b7bf12c6a7c5ea81a59"
534
+ integrity sha512-AOzc0FInl4CfRod5p/dG5C54pocLOhr1W+e+vxeHpHs2RLAICyGXYEoUvQTwzEIJC4iXgD/unzsX+6BJTnintQ==
535
535
  dependencies:
536
- intact-shared "^3.0.9"
537
- misstime "^3.0.9"
536
+ intact-shared "^3.0.13"
537
+ misstime "^3.0.13"
538
538
  tslib "^2.2.0"
539
539
 
540
540
  yaml@^1.7.2: