@king-design/intact 3.4.3-beta.2 → 3.4.4
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.
- package/components/button/demos/disabled.md +14 -3
- package/components/button/demos/group.md +3 -3
- package/components/button/group.ts +5 -0
- package/components/button/group.vdt +2 -2
- package/components/button/index.md +2 -1
- package/components/button/index.vdt +1 -1
- package/components/button/styles.ts +18 -5
- package/components/dialog/styles.ts +3 -3
- package/components/dropdown/item.ts +7 -2
- package/components/editable/demos/textarea.md +53 -0
- package/components/editable/index.md +7 -1
- package/components/editable/index.spec.ts +27 -0
- package/components/editable/index.ts +4 -1
- package/components/editable/index.vdt +13 -4
- package/components/editable/styles.ts +1 -1
- package/components/ellipsis/demos/hoverable.md +23 -0
- package/components/ellipsis/index.ts +4 -1
- package/components/ellipsis/index.vdt +3 -1
- package/components/input/demos/size.md +9 -1
- package/components/input/styles.ts +12 -2
- package/components/menu/styles.ts +0 -3
- package/components/select/demos/immutable.md +7 -6
- package/components/select/index.spec.ts +31 -0
- package/components/select/useImmutable.ts +1 -1
- package/components/switch/styles.ts +5 -0
- package/components/table/cell.ts +3 -2
- package/components/table/cell.vdt +13 -4
- package/components/table/column.ts +2 -0
- package/components/table/column.vdt +4 -3
- package/components/table/demos/asyncTree.md +73 -0
- package/components/table/demos/ellipsis.md +29 -0
- package/components/table/demos/fixFooter.md +52 -0
- package/components/table/demos/footer.md +38 -0
- package/components/table/demos/tree.md +22 -10
- package/components/table/index.md +5 -0
- package/components/table/row.ts +27 -17
- package/components/table/row.vdt +4 -2
- package/components/table/styles.ts +27 -3
- package/components/table/table.ts +8 -2
- package/components/table/table.vdt +18 -3
- package/components/table/useColumns.ts +24 -1
- package/components/table/useTree.ts +9 -2
- package/components/tip/demos/icon.md +53 -0
- package/components/tip/demos/size.md +39 -0
- package/components/tip/index.md +2 -0
- package/components/tip/index.ts +17 -1
- package/components/tip/index.vdt +38 -5
- package/components/tip/styles.ts +84 -3
- package/components/tooltip/demos/always.md +6 -0
- package/components/tooltip/demos/content.md +17 -2
- package/components/tooltip/index.spec.ts +21 -2
- package/components/tooltip/tooltip.ts +4 -1
- package/components/transfer/index.vdt +2 -4
- package/components/tree/demos/loading.md +3 -0
- package/components/treeSelect/demos/basic.md +1 -0
- package/components/treeSelect/index.vdt +1 -0
- package/components/upload/demos/files.md +1 -0
- package/components/upload/index.vdt +4 -1
- package/components/upload/styles.ts +1 -0
- package/es/components/button/group.d.ts +1 -0
- package/es/components/button/group.js +4 -0
- package/es/components/button/group.vdt.js +3 -2
- package/es/components/button/index.vdt.js +1 -1
- package/es/components/button/styles.js +6 -6
- package/es/components/diagram/shapes/callout.d.ts +1 -1
- package/es/components/diagram/shapes/circle.d.ts +1 -1
- package/es/components/diagram/shapes/document.d.ts +1 -1
- package/es/components/diagram/shapes/ellipse.d.ts +1 -1
- package/es/components/diagram/shapes/hexagon.d.ts +1 -1
- package/es/components/diagram/shapes/image.d.ts +1 -1
- package/es/components/diagram/shapes/parallelogram.d.ts +1 -1
- package/es/components/diagram/shapes/rectangle.d.ts +1 -1
- package/es/components/diagram/shapes/square.d.ts +1 -1
- package/es/components/diagram/shapes/text.d.ts +1 -1
- package/es/components/dialog/styles.js +3 -3
- package/es/components/dropdown/item.js +5 -2
- package/es/components/editable/index.d.ts +2 -0
- package/es/components/editable/index.js +4 -2
- package/es/components/editable/index.spec.js +39 -0
- package/es/components/editable/index.vdt.js +17 -6
- package/es/components/editable/styles.d.ts +1 -0
- package/es/components/editable/styles.js +3 -0
- package/es/components/ellipsis/index.d.ts +1 -0
- package/es/components/ellipsis/index.js +4 -2
- package/es/components/ellipsis/index.vdt.js +3 -1
- package/es/components/input/styles.js +11 -1
- package/es/components/menu/styles.js +1 -1
- package/es/components/select/index.spec.js +47 -0
- package/es/components/switch/styles.js +1 -1
- package/es/components/table/cell.d.ts +2 -0
- package/es/components/table/cell.vdt.js +18 -5
- package/es/components/table/column.d.ts +1 -0
- package/es/components/table/column.js +1 -0
- package/es/components/table/column.vdt.js +16 -12
- package/es/components/table/row.d.ts +3 -1
- package/es/components/table/row.js +24 -15
- package/es/components/table/row.vdt.js +6 -2
- package/es/components/table/styles.d.ts +49 -0
- package/es/components/table/styles.js +3 -2
- package/es/components/table/table.d.ts +4 -0
- package/es/components/table/table.js +4 -1
- package/es/components/table/table.vdt.js +29 -4
- package/es/components/table/useColumns.d.ts +9 -0
- package/es/components/table/useColumns.js +29 -1
- package/es/components/table/useTree.d.ts +1 -1
- package/es/components/table/useTree.js +30 -2
- package/es/components/tip/index.d.ts +6 -1
- package/es/components/tip/index.js +12 -1
- package/es/components/tip/index.vdt.js +25 -5
- package/es/components/tip/styles.js +44 -2
- package/es/components/tooltip/index.spec.js +99 -67
- package/es/components/tooltip/tooltip.d.ts +1 -0
- package/es/components/tooltip/tooltip.js +14 -2
- package/es/components/transfer/index.vdt.js +2 -4
- package/es/components/treeSelect/index.vdt.js +1 -0
- package/es/components/upload/index.vdt.js +4 -1
- package/es/components/upload/styles.js +1 -1
- package/es/index.d.ts +2 -2
- package/es/index.js +2 -2
- package/es/site/data/components/button/demos/disabled/index.d.ts +1 -0
- package/es/site/data/components/button/demos/disabled/index.js +1 -0
- package/es/site/data/components/button/demos/disabled/react.d.ts +1 -0
- package/es/site/data/components/button/demos/disabled/react.js +27 -8
- package/es/site/data/components/button/demos/group/react.js +2 -2
- package/es/site/data/components/editable/demos/textarea/index.d.ts +16 -0
- package/es/site/data/components/editable/demos/textarea/index.js +21 -0
- package/es/site/data/components/editable/demos/textarea/react.d.ts +17 -0
- package/es/site/data/components/editable/demos/textarea/react.js +72 -0
- package/es/site/data/components/ellipsis/demos/hoverable/index.d.ts +6 -0
- package/es/site/data/components/ellipsis/demos/hoverable/index.js +14 -0
- package/es/site/data/components/ellipsis/demos/hoverable/react.d.ts +5 -0
- package/es/site/data/components/ellipsis/demos/hoverable/react.js +21 -0
- package/es/site/data/components/input/demos/size/react.js +20 -0
- package/es/site/data/components/select/demos/immutable/index.d.ts +2 -2
- package/es/site/data/components/select/demos/immutable/index.js +1 -1
- package/es/site/data/components/select/demos/immutable/react.d.ts +1 -1
- package/es/site/data/components/select/demos/immutable/react.js +5 -5
- package/es/site/data/components/table/demos/asyncTree/index.d.ts +20 -0
- package/es/site/data/components/table/demos/asyncTree/index.js +53 -0
- package/es/site/data/components/table/demos/asyncTree/react.d.ts +20 -0
- package/es/site/data/components/table/demos/asyncTree/react.js +76 -0
- package/es/site/data/components/table/demos/ellipsis/index.d.ts +11 -0
- package/es/site/data/components/table/demos/ellipsis/index.js +24 -0
- package/es/site/data/components/table/demos/ellipsis/react.d.ts +10 -0
- package/es/site/data/components/table/demos/ellipsis/react.js +43 -0
- package/es/site/data/components/table/demos/fixFooter/index.d.ts +6 -0
- package/es/site/data/components/table/demos/fixFooter/index.js +14 -0
- package/es/site/data/components/table/demos/fixFooter/react.d.ts +5 -0
- package/es/site/data/components/table/demos/fixFooter/react.js +69 -0
- package/es/site/data/components/table/demos/footer/index.d.ts +12 -0
- package/es/site/data/components/table/demos/footer/index.js +25 -0
- package/es/site/data/components/table/demos/footer/react.d.ts +11 -0
- package/es/site/data/components/table/demos/footer/react.js +46 -0
- package/es/site/data/components/table/demos/tree/react.js +18 -2
- package/es/site/data/components/tip/demos/icon/index.d.ts +9 -0
- package/es/site/data/components/tip/demos/icon/index.js +19 -0
- package/es/site/data/components/tip/demos/icon/react.d.ts +8 -0
- package/es/site/data/components/tip/demos/icon/react.js +54 -0
- package/es/site/data/components/tip/demos/size/index.d.ts +9 -0
- package/es/site/data/components/tip/demos/size/index.js +19 -0
- package/es/site/data/components/tip/demos/size/react.d.ts +8 -0
- package/es/site/data/components/tip/demos/size/react.js +39 -0
- package/es/site/data/components/tooltip/demos/always/react.js +5 -0
- package/es/site/data/components/tooltip/demos/content/index.d.ts +2 -0
- package/es/site/data/components/tooltip/demos/content/index.js +3 -1
- package/es/site/data/components/tooltip/demos/content/react.d.ts +2 -0
- package/es/site/data/components/tooltip/demos/content/react.js +21 -3
- package/es/site/data/components/treeSelect/demos/basic/react.js +2 -1
- package/es/site/data/components/upload/demos/files/index.js +3 -0
- package/es/site/data/components/upload/demos/files/react.js +3 -0
- package/es/site/src/pages/font/index.js +1 -1
- package/es/site/src/pages/font/styles.js +1 -1
- package/index.ts +2 -2
- package/package.json +2 -2
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
import _inheritsLoose from "@babel/runtime-corejs3/helpers/inheritsLoose";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import { Table, TableColumn } from '@king-design/react';
|
|
4
|
+
import './index.styl';
|
|
5
|
+
var Demo = /*#__PURE__*/function (_React$Component) {
|
|
6
|
+
_inheritsLoose(Demo, _React$Component);
|
|
7
|
+
function Demo() {
|
|
8
|
+
return _React$Component.apply(this, arguments) || this;
|
|
9
|
+
}
|
|
10
|
+
var _proto = Demo.prototype;
|
|
11
|
+
_proto.render = function render() {
|
|
12
|
+
return /*#__PURE__*/React.createElement("div", {
|
|
13
|
+
className: "wrapper"
|
|
14
|
+
}, /*#__PURE__*/React.createElement(Table, {
|
|
15
|
+
slotFooter: /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("span", null, "\u81EA\u5B9A\u4E49footer")),
|
|
16
|
+
data: [{
|
|
17
|
+
a: 'footer不固定'
|
|
18
|
+
}, {
|
|
19
|
+
a: '下拉'
|
|
20
|
+
}, {
|
|
21
|
+
a: 'yeah!'
|
|
22
|
+
}, {
|
|
23
|
+
a: '你好'
|
|
24
|
+
}, {
|
|
25
|
+
a: '我很好'
|
|
26
|
+
}]
|
|
27
|
+
}, /*#__PURE__*/React.createElement(TableColumn, {
|
|
28
|
+
key: "a",
|
|
29
|
+
title: "footer\u4E0D\u56FA\u5B9A"
|
|
30
|
+
})), /*#__PURE__*/React.createElement(Table, {
|
|
31
|
+
slotFooter: /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("span", null, "\u81EA\u5B9A\u4E49footer")),
|
|
32
|
+
data: [{
|
|
33
|
+
a: 'footer固定啦'
|
|
34
|
+
}, {
|
|
35
|
+
a: '下拉'
|
|
36
|
+
}, {
|
|
37
|
+
a: 'yeah!'
|
|
38
|
+
}, {
|
|
39
|
+
a: '你好'
|
|
40
|
+
}, {
|
|
41
|
+
a: '我很好'
|
|
42
|
+
}],
|
|
43
|
+
fixFooter: true
|
|
44
|
+
}, /*#__PURE__*/React.createElement(TableColumn, {
|
|
45
|
+
key: "a",
|
|
46
|
+
title: "footer\u56FA\u5B9A"
|
|
47
|
+
})), /*#__PURE__*/React.createElement(Table, {
|
|
48
|
+
slotFooter: /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("span", null, "\u81EA\u5B9A\u4E49footer")),
|
|
49
|
+
data: [{
|
|
50
|
+
a: 'footer固定啦'
|
|
51
|
+
}, {
|
|
52
|
+
a: '下拉'
|
|
53
|
+
}, {
|
|
54
|
+
a: 'yeah!'
|
|
55
|
+
}, {
|
|
56
|
+
a: '你好'
|
|
57
|
+
}, {
|
|
58
|
+
a: '我很好'
|
|
59
|
+
}],
|
|
60
|
+
fixFooter: true,
|
|
61
|
+
fixHeader: true
|
|
62
|
+
}, /*#__PURE__*/React.createElement(TableColumn, {
|
|
63
|
+
key: "a",
|
|
64
|
+
title: "footer\uFF0Cheader\u540C\u65F6\u56FA\u5B9A"
|
|
65
|
+
})));
|
|
66
|
+
};
|
|
67
|
+
return Demo;
|
|
68
|
+
}(React.Component);
|
|
69
|
+
export { Demo as default };
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export { default as data } from './index.json';
|
|
2
|
+
import { Component } from 'intact';
|
|
3
|
+
import './index.styl';
|
|
4
|
+
export default class extends Component {
|
|
5
|
+
static template: string | import("intact").Template<any>;
|
|
6
|
+
static defaults(): {
|
|
7
|
+
data: {
|
|
8
|
+
a: string;
|
|
9
|
+
b: string;
|
|
10
|
+
}[];
|
|
11
|
+
};
|
|
12
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import _inheritsLoose from "@babel/runtime-corejs3/helpers/inheritsLoose";
|
|
2
|
+
export { default as data } from './index.json';
|
|
3
|
+
import { Component } from 'intact';
|
|
4
|
+
import template from './index.vdt';
|
|
5
|
+
import './index.styl';
|
|
6
|
+
var default_1 = /*#__PURE__*/function (_Component) {
|
|
7
|
+
_inheritsLoose(default_1, _Component);
|
|
8
|
+
function default_1() {
|
|
9
|
+
return _Component.apply(this, arguments) || this;
|
|
10
|
+
}
|
|
11
|
+
default_1.defaults = function defaults() {
|
|
12
|
+
return {
|
|
13
|
+
data: [{
|
|
14
|
+
a: 'Cell 1-1',
|
|
15
|
+
b: 'Cell 1-2'
|
|
16
|
+
}, {
|
|
17
|
+
a: 'Cell 2-1',
|
|
18
|
+
b: 'Cell 2-2'
|
|
19
|
+
}]
|
|
20
|
+
};
|
|
21
|
+
};
|
|
22
|
+
return default_1;
|
|
23
|
+
}(Component);
|
|
24
|
+
default_1.template = template;
|
|
25
|
+
export { default_1 as default };
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import _inheritsLoose from "@babel/runtime-corejs3/helpers/inheritsLoose";
|
|
2
|
+
import _concatInstanceProperty from "@babel/runtime-corejs3/core-js/instance/concat";
|
|
3
|
+
import React from 'react';
|
|
4
|
+
import { Table, TableColumn } from '@king-design/react';
|
|
5
|
+
import './index.styl';
|
|
6
|
+
var Demo = /*#__PURE__*/function (_React$Component) {
|
|
7
|
+
_inheritsLoose(Demo, _React$Component);
|
|
8
|
+
function Demo() {
|
|
9
|
+
var _context;
|
|
10
|
+
var _this;
|
|
11
|
+
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
|
|
12
|
+
args[_key] = arguments[_key];
|
|
13
|
+
}
|
|
14
|
+
_this = _React$Component.call.apply(_React$Component, _concatInstanceProperty(_context = [this]).call(_context, args)) || this;
|
|
15
|
+
_this.state = {
|
|
16
|
+
data: [{
|
|
17
|
+
a: 'Cell 1-1',
|
|
18
|
+
b: 'Cell 1-2'
|
|
19
|
+
}, {
|
|
20
|
+
a: 'Cell 2-1',
|
|
21
|
+
b: 'Cell 2-2'
|
|
22
|
+
}]
|
|
23
|
+
};
|
|
24
|
+
return _this;
|
|
25
|
+
}
|
|
26
|
+
var _proto = Demo.prototype;
|
|
27
|
+
_proto.render = function render() {
|
|
28
|
+
return /*#__PURE__*/React.createElement("div", null, /*#__PURE__*/React.createElement(Table, {
|
|
29
|
+
data: this.state.data,
|
|
30
|
+
resizable: true,
|
|
31
|
+
slotFooter: /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("div", {
|
|
32
|
+
className: "footer"
|
|
33
|
+
}, "\u81EA\u5B9A\u4E49\u5E95\u90E8"))
|
|
34
|
+
}, /*#__PURE__*/React.createElement(TableColumn, {
|
|
35
|
+
key: "a",
|
|
36
|
+
title: "Title 1",
|
|
37
|
+
minWidth: 200
|
|
38
|
+
}), /*#__PURE__*/React.createElement(TableColumn, {
|
|
39
|
+
key: "b",
|
|
40
|
+
title: "Title 2",
|
|
41
|
+
minWidth: 300
|
|
42
|
+
})));
|
|
43
|
+
};
|
|
44
|
+
return Demo;
|
|
45
|
+
}(React.Component);
|
|
46
|
+
export { Demo as default };
|
|
@@ -45,7 +45,7 @@ var Demo = /*#__PURE__*/function (_React$Component) {
|
|
|
45
45
|
}
|
|
46
46
|
var _proto = Demo.prototype;
|
|
47
47
|
_proto.render = function render() {
|
|
48
|
-
return /*#__PURE__*/React.createElement(Table, {
|
|
48
|
+
return /*#__PURE__*/React.createElement("div", null, /*#__PURE__*/React.createElement(Table, {
|
|
49
49
|
data: this.state.data,
|
|
50
50
|
rowKey: function rowKey(data) {
|
|
51
51
|
return data.name;
|
|
@@ -60,7 +60,23 @@ var Demo = /*#__PURE__*/function (_React$Component) {
|
|
|
60
60
|
var data = _ref[0];
|
|
61
61
|
return /*#__PURE__*/React.createElement(React.Fragment, null, data.size, "MB");
|
|
62
62
|
}
|
|
63
|
-
}))
|
|
63
|
+
})), /*#__PURE__*/React.createElement("h4", null, "\u81EA\u5B9A\u4E49\u5C55\u5F00Icon\u4F4D\u7F6E"), /*#__PURE__*/React.createElement(Table, {
|
|
64
|
+
data: this.state.data,
|
|
65
|
+
rowKey: function rowKey(data) {
|
|
66
|
+
return data.name;
|
|
67
|
+
},
|
|
68
|
+
spreadArrowIndex: 1
|
|
69
|
+
}, /*#__PURE__*/React.createElement(TableColumn, {
|
|
70
|
+
key: "name",
|
|
71
|
+
title: "Name"
|
|
72
|
+
}), /*#__PURE__*/React.createElement(TableColumn, {
|
|
73
|
+
key: "size",
|
|
74
|
+
title: "Size",
|
|
75
|
+
slotTemplate: function slotTemplate(_ref2) {
|
|
76
|
+
var data = _ref2[0];
|
|
77
|
+
return /*#__PURE__*/React.createElement(React.Fragment, null, data.size, "MB");
|
|
78
|
+
}
|
|
79
|
+
})));
|
|
64
80
|
};
|
|
65
81
|
return Demo;
|
|
66
82
|
}(React.Component);
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export { default as data } from './index.json';
|
|
2
|
+
import { Component } from 'intact';
|
|
3
|
+
import './index.styl';
|
|
4
|
+
export default class extends Component {
|
|
5
|
+
static template: string | import("intact").Template<any>;
|
|
6
|
+
static defaults(): {
|
|
7
|
+
types: readonly ["default", "primary", "success", "warning", "danger"];
|
|
8
|
+
};
|
|
9
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import _inheritsLoose from "@babel/runtime-corejs3/helpers/inheritsLoose";
|
|
2
|
+
export { default as data } from './index.json';
|
|
3
|
+
import { Component } from 'intact';
|
|
4
|
+
import template from './index.vdt';
|
|
5
|
+
import './index.styl';
|
|
6
|
+
var default_1 = /*#__PURE__*/function (_Component) {
|
|
7
|
+
_inheritsLoose(default_1, _Component);
|
|
8
|
+
function default_1() {
|
|
9
|
+
return _Component.apply(this, arguments) || this;
|
|
10
|
+
}
|
|
11
|
+
default_1.defaults = function defaults() {
|
|
12
|
+
return {
|
|
13
|
+
types: ['default', 'primary', 'success', 'warning', 'danger']
|
|
14
|
+
};
|
|
15
|
+
};
|
|
16
|
+
return default_1;
|
|
17
|
+
}(Component);
|
|
18
|
+
default_1.template = template;
|
|
19
|
+
export { default_1 as default };
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import _inheritsLoose from "@babel/runtime-corejs3/helpers/inheritsLoose";
|
|
2
|
+
import _concatInstanceProperty from "@babel/runtime-corejs3/core-js/instance/concat";
|
|
3
|
+
import _mapInstanceProperty from "@babel/runtime-corejs3/core-js/instance/map";
|
|
4
|
+
import React from 'react';
|
|
5
|
+
import { Tip, Icon } from '@king-design/react';
|
|
6
|
+
import './index.styl';
|
|
7
|
+
var Demo = /*#__PURE__*/function (_React$Component) {
|
|
8
|
+
_inheritsLoose(Demo, _React$Component);
|
|
9
|
+
function Demo() {
|
|
10
|
+
var _context;
|
|
11
|
+
var _this;
|
|
12
|
+
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
|
|
13
|
+
args[_key] = arguments[_key];
|
|
14
|
+
}
|
|
15
|
+
_this = _React$Component.call.apply(_React$Component, _concatInstanceProperty(_context = [this]).call(_context, args)) || this;
|
|
16
|
+
_this.state = {
|
|
17
|
+
types: ['default', 'primary', 'success', 'warning', 'danger']
|
|
18
|
+
};
|
|
19
|
+
return _this;
|
|
20
|
+
}
|
|
21
|
+
var _proto = Demo.prototype;
|
|
22
|
+
_proto.render = function render() {
|
|
23
|
+
var _context2;
|
|
24
|
+
return /*#__PURE__*/React.createElement("div", null, _mapInstanceProperty(_context2 = this.state.types).call(_context2, function ($value, $key) {
|
|
25
|
+
return /*#__PURE__*/React.createElement(Tip, {
|
|
26
|
+
type: $value,
|
|
27
|
+
showIcon: true,
|
|
28
|
+
closable: true
|
|
29
|
+
}, $value);
|
|
30
|
+
}), /*#__PURE__*/React.createElement(Tip, {
|
|
31
|
+
type: "success",
|
|
32
|
+
showIcon: true,
|
|
33
|
+
closable: true
|
|
34
|
+
}, "\u8FD9\u662F\u4E00\u6761\u6D4B\u8BD5\u5185\u5BB9\uFF0C\u8FD9\u662F\u4E00\u6761\u6D4B\u8BD5\u5185\u5BB9\uFF0C\u8FD9\u662F\u4E00\u6761\u6D4B\u8BD5\u5185\u5BB9\uFF0C\u8FD9\u662F\u4E00\u6761\u6D4B\u8BD5\u5185\u5BB9\uFF0C\u8FD9\u662F\u4E00\u6761\u6D4B\u8BD5\u5185\u5BB9\uFF0C\u8FD9\u662F\u4E00\u6761\u6D4B\u8BD5\u5185\u5BB9\uFF0C\u8FD9\u662F\u4E00\u6761\u6D4B\u8BD5\u5185\u5BB9\uFF0C\u8FD9\u662F\u4E00\u6761\u6D4B\u8BD5\u5185\u5BB9\uFF0C\u8FD9\u662F\u4E00\u6761\u6D4B\u8BD5\u5185\u5BB9\uFF0C\u8FD9\u662F\u4E00\u6761\u6D4B\u8BD5\u5185\u5BB9\uFF0C\u8FD9\u662F\u4E00\u6761\u6D4B\u8BD5\u5185\u5BB9\uFF0C\u8FD9\u662F\u4E00\u6761\u6D4B\u8BD5\u5185\u5BB9\uFF0C\u8FD9\u662F\u4E00\u6761\u6D4B\u8BD5\u5185\u5BB9\uFF0C\u8FD9\u662F\u4E00\u6761\u6D4B\u8BD5\u5185\u5BB9\uFF0C\u8FD9\u662F\u4E00\u6761\u6D4B\u8BD5\u5185\u5BB9\uFF0C\u8FD9\u662F\u4E00\u6761\u6D4B\u8BD5\u5185\u5BB9\uFF0C\u8FD9\u662F\u4E00\u6761\u6D4B\u8BD5\u5185\u5BB9\uFF0C\u8FD9\u662F\u4E00\u6761\u6D4B\u8BD5\u5185\u5BB9\uFF0C\u8FD9\u662F\u4E00\u6761\u6D4B\u8BD5\u5185\u5BB9\u3002"), /*#__PURE__*/React.createElement("h3", null, "\u81EA\u5B9A\u4E49Icon"), /*#__PURE__*/React.createElement(Tip, {
|
|
35
|
+
slotIcon: /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(Icon, {
|
|
36
|
+
className: "k-icon-internet"
|
|
37
|
+
}))
|
|
38
|
+
}, "custom Icon"), /*#__PURE__*/React.createElement("h3", null, "\u6807\u9898\u5E26Icon"), /*#__PURE__*/React.createElement(Tip, {
|
|
39
|
+
type: "primary",
|
|
40
|
+
showIcon: true,
|
|
41
|
+
slotTitle: /*#__PURE__*/React.createElement(React.Fragment, null, "\u8FD9\u662F\u6807\u9898")
|
|
42
|
+
}, "This is a tip."), /*#__PURE__*/React.createElement("h3", null, "\u6807\u9898\u81EA\u5B9A\u4E49Icon"), /*#__PURE__*/React.createElement(Tip, {
|
|
43
|
+
type: "primary",
|
|
44
|
+
showIcon: true,
|
|
45
|
+
closable: true,
|
|
46
|
+
slotIcon: /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(Icon, {
|
|
47
|
+
className: "k-icon-internet"
|
|
48
|
+
})),
|
|
49
|
+
slotTitle: /*#__PURE__*/React.createElement(React.Fragment, null, "\u8FD9\u662F\u6807\u9898")
|
|
50
|
+
}, "This is a tip."));
|
|
51
|
+
};
|
|
52
|
+
return Demo;
|
|
53
|
+
}(React.Component);
|
|
54
|
+
export { Demo as default };
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export { default as data } from './index.json';
|
|
2
|
+
import { Component } from 'intact';
|
|
3
|
+
import './index.styl';
|
|
4
|
+
export default class extends Component {
|
|
5
|
+
static template: string | import("intact").Template<any>;
|
|
6
|
+
static defaults(): {
|
|
7
|
+
sizes: readonly ["large", "default", "small", "mini"];
|
|
8
|
+
};
|
|
9
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import _inheritsLoose from "@babel/runtime-corejs3/helpers/inheritsLoose";
|
|
2
|
+
export { default as data } from './index.json';
|
|
3
|
+
import { Component } from 'intact';
|
|
4
|
+
import template from './index.vdt';
|
|
5
|
+
import './index.styl';
|
|
6
|
+
var default_1 = /*#__PURE__*/function (_Component) {
|
|
7
|
+
_inheritsLoose(default_1, _Component);
|
|
8
|
+
function default_1() {
|
|
9
|
+
return _Component.apply(this, arguments) || this;
|
|
10
|
+
}
|
|
11
|
+
default_1.defaults = function defaults() {
|
|
12
|
+
return {
|
|
13
|
+
sizes: ['large', 'default', 'small', 'mini']
|
|
14
|
+
};
|
|
15
|
+
};
|
|
16
|
+
return default_1;
|
|
17
|
+
}(Component);
|
|
18
|
+
default_1.template = template;
|
|
19
|
+
export { default_1 as default };
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import _inheritsLoose from "@babel/runtime-corejs3/helpers/inheritsLoose";
|
|
2
|
+
import _concatInstanceProperty from "@babel/runtime-corejs3/core-js/instance/concat";
|
|
3
|
+
import _mapInstanceProperty from "@babel/runtime-corejs3/core-js/instance/map";
|
|
4
|
+
import React from 'react';
|
|
5
|
+
import { Tip } from '@king-design/react';
|
|
6
|
+
import './index.styl';
|
|
7
|
+
var Demo = /*#__PURE__*/function (_React$Component) {
|
|
8
|
+
_inheritsLoose(Demo, _React$Component);
|
|
9
|
+
function Demo() {
|
|
10
|
+
var _context;
|
|
11
|
+
var _this;
|
|
12
|
+
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
|
|
13
|
+
args[_key] = arguments[_key];
|
|
14
|
+
}
|
|
15
|
+
_this = _React$Component.call.apply(_React$Component, _concatInstanceProperty(_context = [this]).call(_context, args)) || this;
|
|
16
|
+
_this.state = {
|
|
17
|
+
sizes: ['large', 'default', 'small', 'mini']
|
|
18
|
+
};
|
|
19
|
+
return _this;
|
|
20
|
+
}
|
|
21
|
+
var _proto = Demo.prototype;
|
|
22
|
+
_proto.render = function render() {
|
|
23
|
+
var _context2, _context3;
|
|
24
|
+
return /*#__PURE__*/React.createElement("div", null, _mapInstanceProperty(_context2 = this.state.sizes).call(_context2, function ($value, $key) {
|
|
25
|
+
return /*#__PURE__*/React.createElement(Tip, {
|
|
26
|
+
type: "primary",
|
|
27
|
+
size: $value
|
|
28
|
+
}, $value);
|
|
29
|
+
}), /*#__PURE__*/React.createElement("h3", null, "\u5E26\u5173\u95ED\u6309\u94AE"), _mapInstanceProperty(_context3 = this.state.sizes).call(_context3, function ($value, $key) {
|
|
30
|
+
return /*#__PURE__*/React.createElement(Tip, {
|
|
31
|
+
type: "primary",
|
|
32
|
+
size: $value,
|
|
33
|
+
closable: true
|
|
34
|
+
}, $value);
|
|
35
|
+
}));
|
|
36
|
+
};
|
|
37
|
+
return Demo;
|
|
38
|
+
}(React.Component);
|
|
39
|
+
export { Demo as default };
|
|
@@ -21,6 +21,11 @@ var Demo = /*#__PURE__*/function (_React$Component) {
|
|
|
21
21
|
value: true,
|
|
22
22
|
container: this.container
|
|
23
23
|
}, "always show this tootip"), /*#__PURE__*/React.createElement("br", null), /*#__PURE__*/React.createElement("br", null), /*#__PURE__*/React.createElement(Tooltip, {
|
|
24
|
+
content: "hide",
|
|
25
|
+
always: true,
|
|
26
|
+
value: false,
|
|
27
|
+
container: this.container
|
|
28
|
+
}, "always hide this tootip"), /*#__PURE__*/React.createElement("br", null), /*#__PURE__*/React.createElement("br", null), /*#__PURE__*/React.createElement(Tooltip, {
|
|
24
29
|
content: "",
|
|
25
30
|
always: true,
|
|
26
31
|
value: true
|
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
export { default as data } from './index.json';
|
|
2
2
|
import { Component } from 'intact';
|
|
3
|
+
import './index.styl';
|
|
3
4
|
export default class extends Component {
|
|
4
5
|
static template: string | import("intact").Template<any>;
|
|
5
6
|
static defaults(): {
|
|
6
7
|
volume: number;
|
|
8
|
+
day: string;
|
|
7
9
|
};
|
|
8
10
|
}
|
|
@@ -2,6 +2,7 @@ import _inheritsLoose from "@babel/runtime-corejs3/helpers/inheritsLoose";
|
|
|
2
2
|
export { default as data } from './index.json';
|
|
3
3
|
import { Component } from 'intact';
|
|
4
4
|
import template from './index.vdt';
|
|
5
|
+
import './index.styl';
|
|
5
6
|
var default_1 = /*#__PURE__*/function (_Component) {
|
|
6
7
|
_inheritsLoose(default_1, _Component);
|
|
7
8
|
function default_1() {
|
|
@@ -9,7 +10,8 @@ var default_1 = /*#__PURE__*/function (_Component) {
|
|
|
9
10
|
}
|
|
10
11
|
default_1.defaults = function defaults() {
|
|
11
12
|
return {
|
|
12
|
-
volume: 0
|
|
13
|
+
volume: 0,
|
|
14
|
+
day: 'Monday'
|
|
13
15
|
};
|
|
14
16
|
};
|
|
15
17
|
return default_1;
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import _inheritsLoose from "@babel/runtime-corejs3/helpers/inheritsLoose";
|
|
2
2
|
import _concatInstanceProperty from "@babel/runtime-corejs3/core-js/instance/concat";
|
|
3
3
|
import React from 'react';
|
|
4
|
-
import { Tooltip, Slider, Button } from '@king-design/react';
|
|
4
|
+
import { Tooltip, Slider, Button, Select, Option } from '@king-design/react';
|
|
5
|
+
import './index.styl';
|
|
5
6
|
var Demo = /*#__PURE__*/function (_React$Component) {
|
|
6
7
|
_inheritsLoose(Demo, _React$Component);
|
|
7
8
|
function Demo() {
|
|
@@ -12,7 +13,8 @@ var Demo = /*#__PURE__*/function (_React$Component) {
|
|
|
12
13
|
}
|
|
13
14
|
_this = _React$Component.call.apply(_React$Component, _concatInstanceProperty(_context = [this]).call(_context, args)) || this;
|
|
14
15
|
_this.state = {
|
|
15
|
-
volume: 0
|
|
16
|
+
volume: 0,
|
|
17
|
+
day: 'Monday'
|
|
16
18
|
};
|
|
17
19
|
return _this;
|
|
18
20
|
}
|
|
@@ -34,7 +36,23 @@ var Demo = /*#__PURE__*/function (_React$Component) {
|
|
|
34
36
|
showInput: false,
|
|
35
37
|
showEnd: false
|
|
36
38
|
}))
|
|
37
|
-
}, /*#__PURE__*/React.createElement(Button, null, "Adjust Volume"))
|
|
39
|
+
}, /*#__PURE__*/React.createElement(Button, null, "Adjust Volume")), /*#__PURE__*/React.createElement(Tooltip, {
|
|
40
|
+
trigger: "click",
|
|
41
|
+
theme: "light",
|
|
42
|
+
slotContent: /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(Select, {
|
|
43
|
+
value: this.state.day,
|
|
44
|
+
onChangeValue: function onChangeValue(day) {
|
|
45
|
+
return _this2.setState({
|
|
46
|
+
day: day
|
|
47
|
+
});
|
|
48
|
+
},
|
|
49
|
+
width: 200
|
|
50
|
+
}, /*#__PURE__*/React.createElement(Option, {
|
|
51
|
+
value: "Monday"
|
|
52
|
+
}, "\u661F\u671F\u4E00"), /*#__PURE__*/React.createElement(Option, {
|
|
53
|
+
value: "Tuesday"
|
|
54
|
+
}, "\u661F\u671F\u4E8C")))
|
|
55
|
+
}, /*#__PURE__*/React.createElement(Button, null, "Test Dropdown")));
|
|
38
56
|
};
|
|
39
57
|
return Demo;
|
|
40
58
|
}(React.Component);
|
|
@@ -20,6 +20,9 @@ var default_1 = /*#__PURE__*/function (_Component) {
|
|
|
20
20
|
}, {
|
|
21
21
|
name: 'test3.png',
|
|
22
22
|
status: UploadFileStatus.Error
|
|
23
|
+
}, {
|
|
24
|
+
name: 'test4-测试超长测试超长测试超长测试超长测试超长测试超长测试超长测试超长测试超长测试超长测试超长测试超长测试超长测试超长测试超长测试超长测试超长测试超长.png',
|
|
25
|
+
url: 'http://www.example.com/test4.png'
|
|
23
26
|
}]
|
|
24
27
|
};
|
|
25
28
|
};
|
|
@@ -23,6 +23,9 @@ var Demo = /*#__PURE__*/function (_React$Component) {
|
|
|
23
23
|
}, {
|
|
24
24
|
name: 'test3.png',
|
|
25
25
|
status: UploadFileStatus.Error
|
|
26
|
+
}, {
|
|
27
|
+
name: 'test4-测试超长测试超长测试超长测试超长测试超长测试超长测试超长测试超长测试超长测试超长测试超长测试超长测试超长测试超长测试超长测试超长测试超长测试超长.png',
|
|
28
|
+
url: 'http://www.example.com/test4.png'
|
|
26
29
|
}]
|
|
27
30
|
};
|
|
28
31
|
return _this;
|
|
@@ -9,7 +9,7 @@ var Index = /*#__PURE__*/function (_Layout) {
|
|
|
9
9
|
}
|
|
10
10
|
var _proto = Index.prototype;
|
|
11
11
|
_proto.handleDownLoad = function handleDownLoad() {
|
|
12
|
-
location.href = 'https://damife.ks3-cn-beijing.ksyuncs.com/kpc/
|
|
12
|
+
location.href = 'https://damife.ks3-cn-beijing.ksyuncs.com/kpc/Kingsoft_Cloud_Font_v1.0.1.ttf';
|
|
13
13
|
};
|
|
14
14
|
return Index;
|
|
15
15
|
}(Layout);
|
|
@@ -3,5 +3,5 @@ import source_nav_web from '../../imgs/font/banner-font.jpg';
|
|
|
3
3
|
import text_web from "../../imgs/font/text-web.png";
|
|
4
4
|
import text_h5 from "../../imgs/font/text-h5.png";
|
|
5
5
|
export function makeStyles() {
|
|
6
|
-
return /*#__PURE__*/css(".font-nav{height:600px;margin-top:-64px;background-image:url(", source_nav_web, ");background-size:cover;background-position:center;background-repeat:no-repeat;display:flex;justify-content:center;.bg-img{display:none;}.font-nav-content{height:536px;margin-top:64px;width:1200px;display:flex;align-items:center;.nav-content-img{img{width:380px;}.nav-btn-download{margin-top:30px;width:380px;height:60px;border:none;background:#006FFF;border-radius:14px;font-family:PingFangSC-Regular;font-size:18px;color:#FFFFFF;font-weight:400;cursor:pointer;transition:all .25s ease-in;outline:none;&:hover{background-color:#3D91FF;}&:active{background-color:#3D91FF;}}}}@media (max-width: 768px){background-image:none;height:900px;position:relative;height:auto;.bg-img{display:block;width:100%;}.font-nav-content{position:absolute;left:0;top:10px;width:100%;height:40%;justify-content:center;.nav-content-img{width:100%;text-align:center;img{width:65%;}.nav-btn-download{height:50px;width:65%;}}}}}.source-intro{margin:100px auto;background-image:url(", text_web, ");width:800px;height:590px;background-repeat:no-repeat;background-position:right bottom;background-size:cover;@media (max-width:768px){margin:13% auto;width:64%;background-image:url(", text_h5, ");background-size:contain;background-position:center;}}.font-info{background:#F7F8F9;margin-bottom:60px;padding:80px 0;text-align:center;img{width:400px;}@media (max-width:768px){margin-bottom:40px;padding:60px 0;img{width:80%;height:auto;}}}.designer-box{background:#F7F8F9;padding-top:40px;}.designer-part{width:1200px;margin:0 auto;.designer-title{display:flex;margin-bottom:60px;img{width:90px;}&>div:last-child{flex-grow:1;margin-left:24px;border-bottom:1px solid rgba(151, 151, 151, .3);}@media (max-width:768px){margin-bottom:40px;img{width:60px;height:auto;}}}.designer-list{width:100%;display:flex;flex-wrap:wrap;@media (max-width: 768px){justify-content:space-between;}.designer-item{img{width:200px;border-radius:16px;}&>div:last-child{text-align:center;font-size:18px;color:#000000;padding:20px 0 40px 0;font-family:PingFangSC-Regular;}@media (max-width: 768px){img{border-radius:8px;}&>div:last-child{font-size:12px;padding:10px 0 25px 0;}}}.designer-item:not(:nth-child(5n)){margin-right:50px;}}@media (max-width: 768px){width:90%;.designer-list{.designer-item{width:22%;img{width:100%!important;}}.designer-item:not(:nth-child(5n)){margin-right:0;}}}}.icon-list-box{/* padding-top: 60px;\n @media (max-width: 768px) {\n padding-top: 30px;\n } */}.icon-list{width:1200px;margin:0 auto;@media (max-width: 768px){width:98%;}.icon-box{margin-top:20px;.icon-box-title{margin-bottom:60px;display:flex;&>div{border-bottom:1px solid rgba(151, 151, 151, .3);}&>div:first-child{display:none;}img{height:30px;}&>div:last-child{width:100%;margin-left:24px;}@media (max-width: 768px){margin-bottom:40px;&>div:first-child{display:block;width:45%;margin-right:24px;}&>div:last-child{width:45%;margin-left:24px;}img{height:20px;}}}.icon-wrapper{display:flex;flex-wrap:wrap;img{width:60px;height:60px;}.icon-item{width:240px;display:flex;align-items:center;margin-bottom:60px;display:flex;&>div:last-child{margin-left:20px;font-family:PingFangSC-Regular;font-size:16px;color:#000000;}@media (max-width: 768px){text-align:center;display:block;margin-bottom:30px;width:33.33%;&>div:last-child{font-size:14px!important;margin-left:0px;margin-top:5px;}img{width:45%;height:auto;}}}}}}");
|
|
6
|
+
return /*#__PURE__*/css(".font-nav{height:600px;margin-top:-64px;background-image:url(", source_nav_web, ");background-size:cover;background-position:center;background-repeat:no-repeat;display:flex;justify-content:center;.bg-img{display:none;}.font-nav-content{height:536px;margin-top:64px;width:1200px;display:flex;align-items:center;.nav-content-img{img{width:380px;}.nav-content-notice{width:380px;margin-top:10px;text-align:center;font-size:14px;font-weight:500;}.nav-btn-download{margin-top:30px;width:380px;height:60px;border:none;background:#006FFF;border-radius:14px;font-family:PingFangSC-Regular;font-size:18px;color:#FFFFFF;font-weight:400;cursor:pointer;transition:all .25s ease-in;outline:none;&:hover{background-color:#3D91FF;}&:active{background-color:#3D91FF;}}}}@media (max-width: 768px){background-image:none;height:900px;position:relative;height:auto;.bg-img{display:block;width:100%;}.font-nav-content{position:absolute;left:0;top:10px;width:100%;height:40%;justify-content:center;.nav-content-img{width:100%;text-align:center;img{width:65%;}.nav-btn-download{height:50px;width:65%;}}}}}.source-intro{margin:100px auto;background-image:url(", text_web, ");width:800px;height:590px;background-repeat:no-repeat;background-position:right bottom;background-size:cover;@media (max-width:768px){margin:13% auto;width:64%;background-image:url(", text_h5, ");background-size:contain;background-position:center;}}.font-info{background:#F7F8F9;margin-bottom:60px;padding:80px 0;text-align:center;img{width:400px;}@media (max-width:768px){margin-bottom:40px;padding:60px 0;img{width:80%;height:auto;}}}.designer-box{background:#F7F8F9;padding-top:40px;}.designer-part{width:1200px;margin:0 auto;.designer-title{display:flex;margin-bottom:60px;img{width:90px;}&>div:last-child{flex-grow:1;margin-left:24px;border-bottom:1px solid rgba(151, 151, 151, .3);}@media (max-width:768px){margin-bottom:40px;img{width:60px;height:auto;}}}.designer-list{width:100%;display:flex;flex-wrap:wrap;@media (max-width: 768px){justify-content:space-between;}.designer-item{img{width:200px;border-radius:16px;}&>div:last-child{text-align:center;font-size:18px;color:#000000;padding:20px 0 40px 0;font-family:PingFangSC-Regular;}@media (max-width: 768px){img{border-radius:8px;}&>div:last-child{font-size:12px;padding:10px 0 25px 0;}}}.designer-item:not(:nth-child(5n)){margin-right:50px;}}@media (max-width: 768px){width:90%;.designer-list{.designer-item{width:22%;img{width:100%!important;}}.designer-item:not(:nth-child(5n)){margin-right:0;}}}}.icon-list-box{/* padding-top: 60px;\n @media (max-width: 768px) {\n padding-top: 30px;\n } */}.icon-list{width:1200px;margin:0 auto;@media (max-width: 768px){width:98%;}.icon-box{margin-top:20px;.icon-box-title{margin-bottom:60px;display:flex;&>div{border-bottom:1px solid rgba(151, 151, 151, .3);}&>div:first-child{display:none;}img{height:30px;}&>div:last-child{width:100%;margin-left:24px;}@media (max-width: 768px){margin-bottom:40px;&>div:first-child{display:block;width:45%;margin-right:24px;}&>div:last-child{width:45%;margin-left:24px;}img{height:20px;}}}.icon-wrapper{display:flex;flex-wrap:wrap;img{width:60px;height:60px;}.icon-item{width:240px;display:flex;align-items:center;margin-bottom:60px;display:flex;&>div:last-child{margin-left:20px;font-family:PingFangSC-Regular;font-size:16px;color:#000000;}@media (max-width: 768px){text-align:center;display:block;margin-bottom:30px;width:33.33%;&>div:last-child{font-size:14px!important;margin-left:0px;margin-top:5px;}img{width:45%;height:auto;}}}}}}");
|
|
7
7
|
}
|
package/index.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* @king-design v3.4.
|
|
2
|
+
* @king-design v3.4.4
|
|
3
3
|
*
|
|
4
4
|
* Copyright (c) Kingsoft Cloud
|
|
5
5
|
* Released under the MIT License
|
|
@@ -69,6 +69,6 @@ export * from './components/upload';
|
|
|
69
69
|
export * from './components/view';
|
|
70
70
|
export * from './components/wave';
|
|
71
71
|
|
|
72
|
-
export const version = '3.4.
|
|
72
|
+
export const version = '3.4.4';
|
|
73
73
|
|
|
74
74
|
/* generate end */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@king-design/intact",
|
|
3
|
-
"version": "3.4.
|
|
3
|
+
"version": "3.4.4",
|
|
4
4
|
"description": "A component library written in Intact for Intact, Vue, React and Angular",
|
|
5
5
|
"main": "es/index.js",
|
|
6
6
|
"engines": {
|
|
@@ -180,7 +180,7 @@
|
|
|
180
180
|
"@emotion/css": "^11.5.0",
|
|
181
181
|
"dayjs": "^1.10.7",
|
|
182
182
|
"enquire.js": "^2.1.6",
|
|
183
|
-
"intact": "^3.0.
|
|
183
|
+
"intact": "^3.0.39",
|
|
184
184
|
"monaco-editor": "^0.26.1",
|
|
185
185
|
"mxgraphx": "^4.0.7",
|
|
186
186
|
"resize-observer-polyfill": "^1.5.1",
|