@luck-design-biz/luckda 1.0.1-13 → 1.0.1-15
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/es/components/LDActions/index.less +3 -1
- package/es/components/LdCard/index.js +15 -8
- package/es/components/LdTree/index.js +14 -8
- package/es/helper/ldBuilder.js +1 -1
- package/es/lowcode/engine/meta/cardlist.props.json +5 -5
- package/es/lowcode/engine/meta/iframe.props.json +1 -2
- package/es/lowcode/engine/meta/image.props.json +1 -1
- package/es/lowcode/painter/DesignToolbar.js +1 -1
- package/es/lowcode/painter/components/field-setting/FieldAttrs.js +2 -2
- package/es/lowcode/painter/style/action-bind-modal.less +5 -3
- package/es/lowcode/painter/style/design.less +10 -7
- package/es/lowcode/painter/style/list-editor.less +5 -3
- package/es/lowcode/painter/style/number-input.less +3 -1
- package/es/lowcode/painter/style/outline.less +3 -1
- package/es/lowcode/painter/style/panel-attrs.less +7 -3
- package/es/lowcode/painter/style/panel.less +9 -7
- package/es/lowcode/painter/style/radio.less +1 -1
- package/es/lowcode/painter/style/ribbon.less +4 -2
- package/es/lowcode/view/lc-components/CardList/index.js +16 -11
- package/es/lowcode/view/lc-components/CardList/meta.json +5 -5
- package/es/lowcode/view/lc-components/GroupTree/index.js +23 -7
- package/es/lowcode/view/lc-components/Iframe/index.js +2 -3
- package/es/lowcode/view/lc-components/Iframe/meta.json +1 -2
- package/es/lowcode/view/lc-components/Image/index.js +23 -3
- package/es/lowcode/view/lc-components/Image/meta.json +1 -1
- package/es/lowcode/view/lc-components/Link/index.js +20 -2
- package/es/lowcode/view/lc-components/Table/index.js +1 -3
- package/es/lowcode/view/lc-components/Tree/index.js +18 -11
- package/lib/components/LDActions/index.less +3 -1
- package/lib/components/LdCard/index.js +15 -8
- package/lib/components/LdTree/index.js +14 -8
- package/lib/helper/ldBuilder.js +2 -2
- package/lib/lowcode/engine/meta/cardlist.props.json +5 -5
- package/lib/lowcode/engine/meta/iframe.props.json +1 -2
- package/lib/lowcode/engine/meta/image.props.json +1 -1
- package/lib/lowcode/painter/DesignToolbar.js +1 -1
- package/lib/lowcode/painter/components/field-setting/FieldAttrs.js +2 -2
- package/lib/lowcode/painter/style/action-bind-modal.less +5 -3
- package/lib/lowcode/painter/style/design.less +10 -7
- package/lib/lowcode/painter/style/list-editor.less +5 -3
- package/lib/lowcode/painter/style/number-input.less +3 -1
- package/lib/lowcode/painter/style/outline.less +3 -1
- package/lib/lowcode/painter/style/panel-attrs.less +7 -3
- package/lib/lowcode/painter/style/panel.less +9 -7
- package/lib/lowcode/painter/style/radio.less +1 -1
- package/lib/lowcode/painter/style/ribbon.less +4 -2
- package/lib/lowcode/view/lc-components/CardList/index.js +16 -11
- package/lib/lowcode/view/lc-components/CardList/meta.json +5 -5
- package/lib/lowcode/view/lc-components/GroupTree/index.js +21 -5
- package/lib/lowcode/view/lc-components/Iframe/index.js +0 -1
- package/lib/lowcode/view/lc-components/Iframe/meta.json +1 -2
- package/lib/lowcode/view/lc-components/Image/index.js +22 -2
- package/lib/lowcode/view/lc-components/Image/meta.json +1 -1
- package/lib/lowcode/view/lc-components/Link/index.js +19 -1
- package/lib/lowcode/view/lc-components/Table/index.js +1 -3
- package/lib/lowcode/view/lc-components/Tree/index.js +17 -10
- package/package.json +2 -2
|
@@ -340,12 +340,11 @@ LCCardList.propTypes = {
|
|
|
340
340
|
*/
|
|
341
341
|
suppressActions: _propTypes.default.bool,
|
|
342
342
|
/**
|
|
343
|
-
* @name
|
|
344
|
-
* @type
|
|
345
|
-
* @default
|
|
346
|
-
* @groupNext actionsColumn
|
|
343
|
+
* @name 拖拽排序
|
|
344
|
+
* @type switch
|
|
345
|
+
* @default false
|
|
347
346
|
*/
|
|
348
|
-
|
|
347
|
+
draggable: _propTypes.default.bool,
|
|
349
348
|
/**
|
|
350
349
|
* @name 操作项
|
|
351
350
|
* @type _TableActions
|
|
@@ -413,12 +412,6 @@ LCCardList.propTypes = {
|
|
|
413
412
|
batchOperations: _propTypes.default.shape({
|
|
414
413
|
todoList: _propTypes.default.array.isRequired
|
|
415
414
|
}),
|
|
416
|
-
/**
|
|
417
|
-
* @name 每页行数
|
|
418
|
-
* @type number
|
|
419
|
-
* @default 40
|
|
420
|
-
*/
|
|
421
|
-
pageSize: _propTypes.default.number,
|
|
422
415
|
/**
|
|
423
416
|
* @name 无边框风格
|
|
424
417
|
* @type switch
|
|
@@ -473,6 +466,18 @@ LCCardList.propTypes = {
|
|
|
473
466
|
* @default "function renderContent(record) { \n return null; \n}"
|
|
474
467
|
*/
|
|
475
468
|
renderContent: _propTypes.default.string,
|
|
469
|
+
/**
|
|
470
|
+
* @name 开启分页
|
|
471
|
+
* @type switch
|
|
472
|
+
* @default true
|
|
473
|
+
*/
|
|
474
|
+
pagination: _propTypes.default.bool,
|
|
475
|
+
/**
|
|
476
|
+
* @name 每页行数
|
|
477
|
+
* @type number
|
|
478
|
+
* @default 40
|
|
479
|
+
*/
|
|
480
|
+
pageSize: _propTypes.default.number,
|
|
476
481
|
/**
|
|
477
482
|
* @name 组件首次渲染时
|
|
478
483
|
* @type _JSEditor
|
|
@@ -298,31 +298,31 @@
|
|
|
298
298
|
"key": "onMount",
|
|
299
299
|
"name": "组件首次渲染时",
|
|
300
300
|
"desc": "在组件首次渲染时,执行方法",
|
|
301
|
-
"func": "(params)=>{\n\t\n}"
|
|
301
|
+
"func": "function onMount(params)=>{\n\t\n}"
|
|
302
302
|
},
|
|
303
303
|
{
|
|
304
304
|
"key": "onUnmount",
|
|
305
305
|
"name": "组件卸载时",
|
|
306
306
|
"desc": "在组件卸载时,执行方法。",
|
|
307
|
-
"func": "()=>{\n\t\n}"
|
|
307
|
+
"func": "function onUnmount()=>{\n\t\n}"
|
|
308
308
|
},
|
|
309
309
|
{
|
|
310
310
|
"key": "onAddCardClick",
|
|
311
311
|
"name": "新增卡片点击",
|
|
312
312
|
"desc": "点击新增卡片行时,执行方法",
|
|
313
|
-
"func": "()=>{\n\t\n}"
|
|
313
|
+
"func": "function onAddCardClick()=>{\n\t\n}"
|
|
314
314
|
},
|
|
315
315
|
{
|
|
316
316
|
"key": "onCardClick",
|
|
317
317
|
"name": "卡片单击",
|
|
318
318
|
"desc": "单击卡片行时,执行方法",
|
|
319
|
-
"func": "(data, e)=>{\n\t\n}"
|
|
319
|
+
"func": "function onCardClick(data, e)=>{\n\t\n}"
|
|
320
320
|
},
|
|
321
321
|
{
|
|
322
322
|
"key": "onCardDelete",
|
|
323
323
|
"name": "卡片删除",
|
|
324
324
|
"desc": "单击卡片删除图标,执行方法",
|
|
325
|
-
"func": "(data, e)=>{\n\t\n}"
|
|
325
|
+
"func": "function onCardDelete(data, e)=>{\n\t\n}"
|
|
326
326
|
},
|
|
327
327
|
{
|
|
328
328
|
"key": "onDrop",
|
|
@@ -50,14 +50,19 @@ var LCGroupTree = function LCGroupTree(_ref) {
|
|
|
50
50
|
advance = _ref.advance;
|
|
51
51
|
var ctx = (0, _ContextProvider.useContext)();
|
|
52
52
|
var ref = (0, _react.useRef)();
|
|
53
|
+
var titleRef = (0, _react.useRef)();
|
|
53
54
|
var _useState = (0, _react.useState)(null),
|
|
54
55
|
_useState2 = (0, _slicedToArray2.default)(_useState, 2),
|
|
55
56
|
dataSource = _useState2[0],
|
|
56
57
|
setDataSource = _useState2[1];
|
|
57
|
-
var _useState3 = (0, _react.useState)(
|
|
58
|
+
var _useState3 = (0, _react.useState)(null),
|
|
58
59
|
_useState4 = (0, _slicedToArray2.default)(_useState3, 2),
|
|
59
|
-
|
|
60
|
-
|
|
60
|
+
titleHeight = _useState4[0],
|
|
61
|
+
setTitleHeight = _useState4[1];
|
|
62
|
+
var _useState5 = (0, _react.useState)([]),
|
|
63
|
+
_useState6 = (0, _slicedToArray2.default)(_useState5, 2),
|
|
64
|
+
selectedKeys = _useState6[0],
|
|
65
|
+
setSelectedKeys = _useState6[1];
|
|
61
66
|
var _useBoolean = (0, _ahooks.useBoolean)(false),
|
|
62
67
|
_useBoolean2 = (0, _slicedToArray2.default)(_useBoolean, 2),
|
|
63
68
|
loading = _useBoolean2[0],
|
|
@@ -65,6 +70,15 @@ var LCGroupTree = function LCGroupTree(_ref) {
|
|
|
65
70
|
setTrue = _useBoolean2$.setTrue,
|
|
66
71
|
setFalse = _useBoolean2$.setFalse;
|
|
67
72
|
var latestOnlySelectLeaf = (0, _ahooks.useLatest)(onlySelectLeaf);
|
|
73
|
+
var _useInViewport = (0, _ahooks.useInViewport)(titleRef),
|
|
74
|
+
_useInViewport2 = (0, _slicedToArray2.default)(_useInViewport, 1),
|
|
75
|
+
inViewport = _useInViewport2[0];
|
|
76
|
+
(0, _react.useEffect)(function () {
|
|
77
|
+
if (inViewport) {
|
|
78
|
+
var _title = document.getElementById('title');
|
|
79
|
+
setTitleHeight(_title.getBoundingClientRect().height);
|
|
80
|
+
}
|
|
81
|
+
}, [inViewport]);
|
|
68
82
|
var handleSelect = (0, _ahooks.useMemoizedFn)(function (_selectedKeys, e) {
|
|
69
83
|
if (cancelSelect || e.selected) {
|
|
70
84
|
setSelectedKeys(_selectedKeys);
|
|
@@ -150,9 +164,11 @@ var LCGroupTree = function LCGroupTree(_ref) {
|
|
|
150
164
|
getTargetDom: getTargetDom
|
|
151
165
|
}, /*#__PURE__*/_react.default.createElement(TreeBox, {
|
|
152
166
|
ref: ref,
|
|
153
|
-
$css: css
|
|
167
|
+
$css: "".concat(css, ";height:calc(100% - ").concat(titleHeight, "px)")
|
|
154
168
|
}, title ? /*#__PURE__*/_react.default.createElement(Title, {
|
|
155
|
-
$theme: document.body.getAttribute('luck-theme')
|
|
169
|
+
$theme: document.body.getAttribute('luck-theme'),
|
|
170
|
+
id: 'title',
|
|
171
|
+
ref: titleRef
|
|
156
172
|
}, title) : null, /*#__PURE__*/_react.default.createElement(_antd.Spin, {
|
|
157
173
|
spinning: loading,
|
|
158
174
|
style: {
|
|
@@ -15,7 +15,6 @@ var _antd = require("luck-design/antd");
|
|
|
15
15
|
var _styledComponents = _interopRequireDefault(require("styled-components"));
|
|
16
16
|
var _Wrapper = _interopRequireDefault(require("../Wrapper"));
|
|
17
17
|
var _ContextProvider = require("../../../engine/provider/ContextProvider");
|
|
18
|
-
var _constants = require("../../../constants");
|
|
19
18
|
var _utils = require("@luck-design-biz/base/utils");
|
|
20
19
|
var _excluded = ["id", "path", "css", "supportFullScreen"];
|
|
21
20
|
var StyledIframe = _styledComponents.default.iframe.withConfig({
|
|
@@ -16,7 +16,8 @@ var _luckDesign = require("luck-design");
|
|
|
16
16
|
var _Wrapper = _interopRequireDefault(require("../Wrapper"));
|
|
17
17
|
var _index = _interopRequireDefault(require("./index.less"));
|
|
18
18
|
var _antd = require("luck-design/antd");
|
|
19
|
-
var
|
|
19
|
+
var _ContextProvider = require("../../../engine/provider/ContextProvider");
|
|
20
|
+
var _excluded = ["id", "src", "css", "advance", "onClick"];
|
|
20
21
|
var StyledImage = _styledComponents.default.img.withConfig({
|
|
21
22
|
displayName: "StyledImage",
|
|
22
23
|
componentId: "luckda-6530__sc-k6wbym-0"
|
|
@@ -37,6 +38,8 @@ var LCImage = function LCImage(_ref) {
|
|
|
37
38
|
var id = _ref.id,
|
|
38
39
|
src = _ref.src,
|
|
39
40
|
css = _ref.css,
|
|
41
|
+
advance = _ref.advance,
|
|
42
|
+
onClick = _ref.onClick,
|
|
40
43
|
props = (0, _objectWithoutProperties2.default)(_ref, _excluded);
|
|
41
44
|
var ref = (0, _react.useRef)();
|
|
42
45
|
var isHovering = (0, _ahooks.useHover)(ref);
|
|
@@ -47,6 +50,22 @@ var LCImage = function LCImage(_ref) {
|
|
|
47
50
|
_useSetState2 = (0, _slicedToArray2.default)(_useSetState, 2),
|
|
48
51
|
state = _useSetState2[0],
|
|
49
52
|
setState = _useSetState2[1];
|
|
53
|
+
var ctx = (0, _ContextProvider.useContext)();
|
|
54
|
+
(0, _react.useEffect)(function () {
|
|
55
|
+
ctx.doAction(advance.events.onMount);
|
|
56
|
+
return function () {
|
|
57
|
+
return ctx.doAction(advance.events.onUnmount);
|
|
58
|
+
};
|
|
59
|
+
}, []);
|
|
60
|
+
var handleClick = (0, _ahooks.useMemoizedFn)(function (e) {
|
|
61
|
+
if (onClick) {
|
|
62
|
+
onClick(e);
|
|
63
|
+
return;
|
|
64
|
+
}
|
|
65
|
+
ctx.doAction(advance.events.onClick, {
|
|
66
|
+
e: e
|
|
67
|
+
});
|
|
68
|
+
});
|
|
50
69
|
var getTargetDom = (0, _ahooks.useMemoizedFn)(function () {
|
|
51
70
|
return ref.current;
|
|
52
71
|
});
|
|
@@ -79,7 +98,8 @@ var LCImage = function LCImage(_ref) {
|
|
|
79
98
|
return setState({
|
|
80
99
|
visible: false
|
|
81
100
|
});
|
|
82
|
-
}
|
|
101
|
+
},
|
|
102
|
+
onClick: handleClick
|
|
83
103
|
})));
|
|
84
104
|
};
|
|
85
105
|
var _default = exports.default = LCImage;
|
|
@@ -16,7 +16,7 @@ var _Wrapper = _interopRequireDefault(require("../Wrapper"));
|
|
|
16
16
|
var _styledComponents = _interopRequireDefault(require("styled-components"));
|
|
17
17
|
var _ContextProvider = require("../../../engine/provider/ContextProvider");
|
|
18
18
|
var _constants = require("../../../constants");
|
|
19
|
-
var _excluded = ["id", "css"];
|
|
19
|
+
var _excluded = ["id", "css", "onClick", "advance"];
|
|
20
20
|
var StyledLink = _styledComponents.default.a.withConfig({
|
|
21
21
|
displayName: "StyledLink",
|
|
22
22
|
componentId: "luckda-6530__sc-13gzda1-0"
|
|
@@ -36,9 +36,26 @@ var StyledLink = _styledComponents.default.a.withConfig({
|
|
|
36
36
|
var LCLink = function LCLink(_ref) {
|
|
37
37
|
var id = _ref.id,
|
|
38
38
|
css = _ref.css,
|
|
39
|
+
onClick = _ref.onClick,
|
|
40
|
+
advance = _ref.advance,
|
|
39
41
|
props = (0, _objectWithoutProperties2.default)(_ref, _excluded);
|
|
40
42
|
var ref = (0, _react.useRef)();
|
|
41
43
|
var ctx = (0, _ContextProvider.useContext)();
|
|
44
|
+
(0, _react.useEffect)(function () {
|
|
45
|
+
ctx.doAction(advance.events.onMount);
|
|
46
|
+
return function () {
|
|
47
|
+
return ctx.doAction(advance.events.onUnmount);
|
|
48
|
+
};
|
|
49
|
+
}, []);
|
|
50
|
+
var handleClick = (0, _ahooks.useMemoizedFn)(function (e) {
|
|
51
|
+
if (onClick) {
|
|
52
|
+
onClick(e);
|
|
53
|
+
return;
|
|
54
|
+
}
|
|
55
|
+
ctx.doAction(advance.events.onClick, {
|
|
56
|
+
e: e
|
|
57
|
+
});
|
|
58
|
+
});
|
|
42
59
|
var getTargetDom = (0, _ahooks.useMemoizedFn)(function () {
|
|
43
60
|
return ref.current;
|
|
44
61
|
});
|
|
@@ -54,6 +71,7 @@ var LCLink = function LCLink(_ref) {
|
|
|
54
71
|
target: props.isBlank ? '_blank' : '_self',
|
|
55
72
|
title: props.textOverflow && props.content,
|
|
56
73
|
onClick: function onClick(e) {
|
|
74
|
+
handleClick(e);
|
|
57
75
|
ctx.runtime === _constants.RUNTIME.DESIGN && e.preventDefault();
|
|
58
76
|
}
|
|
59
77
|
}), props.content));
|
|
@@ -472,9 +472,7 @@ var LCTable = /*#__PURE__*/(0, _react.forwardRef)(function (_ref, ref) {
|
|
|
472
472
|
var condition = _zebra !== null && _zebra !== void 0 && _zebra.condition ? (0, _helper.executeCode)(ctx, _zebra.condition, ['params'], params) : _zebra && params.node.rowIndex % 2 === 0;
|
|
473
473
|
return condition ? {
|
|
474
474
|
'background-color': _zebra.color || _zebra
|
|
475
|
-
} : {
|
|
476
|
-
'background-color': '#fff'
|
|
477
|
-
};
|
|
475
|
+
} : {};
|
|
478
476
|
});
|
|
479
477
|
var _readFilter = (0, _ahooks.useMemoizedFn)(function (params, filters) {
|
|
480
478
|
ctx.doAction(advance.events.onFilterChanged, {
|
|
@@ -20,14 +20,15 @@ var _utils = require("@luck-design-biz/base/utils");
|
|
|
20
20
|
var _ContextProvider = require("../../../engine/provider/ContextProvider");
|
|
21
21
|
var _Wrapper = _interopRequireDefault(require("../Wrapper"));
|
|
22
22
|
var _index = require("../../../../index");
|
|
23
|
+
var _useCombinedRefs = _interopRequireDefault(require("../../../engine/tools/useCombinedRefs"));
|
|
23
24
|
var _helper = require("../../../engine/tools/helper");
|
|
24
25
|
var _treePropsDefault = _interopRequireDefault(require("../../../engine/meta/tree.props.default.json"));
|
|
26
|
+
var _constants = require("../../../constants");
|
|
25
27
|
var _index2 = _interopRequireDefault(require("./index.less"));
|
|
26
|
-
var _excluded = ["id", "
|
|
28
|
+
var _excluded = ["id", "className", "dataset", "width", "height", "showLine", "defaultExpandDeep", "actions", "editable", "showRootAdd", "onlyRoot", "rootAddSetting", "doubleClickExpand", "onDoubleClick", "treeNodeCheckable", "treeNodeDisableCheckbox", "treeNodeDisable", "onTreeNodeRender", "treeNodeIcon", "advance", "cancelSelect", "defaultSelect"];
|
|
27
29
|
var PRIMARY = window.appConfig.constraintKeys.PRIMARY;
|
|
28
|
-
var LCTree = function
|
|
30
|
+
var LCTree = /*#__PURE__*/(0, _react.forwardRef)(function (_ref, ref) {
|
|
29
31
|
var id = _ref.id,
|
|
30
|
-
wrapperRef = _ref.wrapperRef,
|
|
31
32
|
className = _ref.className,
|
|
32
33
|
dataset = _ref.dataset,
|
|
33
34
|
width = _ref.width,
|
|
@@ -51,20 +52,20 @@ var LCTree = function LCTree(_ref) {
|
|
|
51
52
|
defaultSelect = _ref.defaultSelect,
|
|
52
53
|
props = (0, _objectWithoutProperties2.default)(_ref, _excluded);
|
|
53
54
|
var ctx = (0, _ContextProvider.useContext)();
|
|
54
|
-
var ref = (0, _react.useRef)();
|
|
55
55
|
var apiRef = (0, _react.useRef)();
|
|
56
|
-
var
|
|
56
|
+
var wrapperRef = (0, _react.useRef)();
|
|
57
|
+
var instanceRef = (0, _useCombinedRefs.default)(ref);
|
|
57
58
|
var _useState = (0, _react.useState)([]),
|
|
58
59
|
_useState2 = (0, _slicedToArray2.default)(_useState, 2),
|
|
59
60
|
selectedKeys = _useState2[0],
|
|
60
61
|
setSelectedKeys = _useState2[1];
|
|
61
62
|
var getTargetDom = (0, _ahooks.useMemoizedFn)(function () {
|
|
62
|
-
return
|
|
63
|
+
return wrapperRef.current;
|
|
63
64
|
});
|
|
64
65
|
(0, _react.useImperativeHandle)(apiRef, function () {
|
|
65
66
|
return {
|
|
66
67
|
getInstance: function getInstance() {
|
|
67
|
-
return
|
|
68
|
+
return instanceRef.current;
|
|
68
69
|
}
|
|
69
70
|
};
|
|
70
71
|
});
|
|
@@ -149,6 +150,11 @@ var LCTree = function LCTree(_ref) {
|
|
|
149
150
|
doAction();
|
|
150
151
|
}
|
|
151
152
|
};
|
|
153
|
+
var _wrapperProps = (0, _ahooks.useCreation)(function () {
|
|
154
|
+
return (0, _defineProperty2.default)({
|
|
155
|
+
id: id
|
|
156
|
+
}, _constants.LC_COMPONENT_UNIT_KEY, _constants.LC_COMPONENT_UNIT);
|
|
157
|
+
}, []);
|
|
152
158
|
return /*#__PURE__*/_react.default.createElement(_Wrapper.default, {
|
|
153
159
|
id: id,
|
|
154
160
|
displayName: "Tree",
|
|
@@ -159,8 +165,9 @@ var LCTree = function LCTree(_ref) {
|
|
|
159
165
|
height: height,
|
|
160
166
|
id: id,
|
|
161
167
|
ldId: id,
|
|
162
|
-
ref:
|
|
163
|
-
|
|
168
|
+
ref: instanceRef,
|
|
169
|
+
wrapper: wrapperRef,
|
|
170
|
+
wrapperProps: _wrapperProps,
|
|
164
171
|
className: (0, _classnames.default)(_index2.default['lc-component-tree'], (0, _defineProperty2.default)({}, className, !!className)),
|
|
165
172
|
dataSetKey: dataset === null || dataset === void 0 ? void 0 : dataset.code,
|
|
166
173
|
showLine: showLine,
|
|
@@ -226,7 +233,7 @@ var LCTree = function LCTree(_ref) {
|
|
|
226
233
|
onSelect: handleSelect,
|
|
227
234
|
afterInit: afterInit
|
|
228
235
|
}, events, props)));
|
|
229
|
-
};
|
|
236
|
+
});
|
|
230
237
|
LCTree.propTypes = {
|
|
231
238
|
/**
|
|
232
239
|
* @name 唯一标识
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@luck-design-biz/luckda",
|
|
3
|
-
"version": "1.0.1-
|
|
3
|
+
"version": "1.0.1-15",
|
|
4
4
|
"description": "前端配置管理中心业务组件库",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"start": "cross-env NODE_OPTIONS=--max-old-space-size=10240 USER_RUNTIME=SITE RUNTIME=dev umi dev",
|
|
@@ -84,7 +84,7 @@
|
|
|
84
84
|
"@babel/traverse": "^7.24.1",
|
|
85
85
|
"@luck-design-biz/base": "0.0.49-14",
|
|
86
86
|
"@luck-design-biz/bpm": "0.0.7-1",
|
|
87
|
-
"@luck-helper/ui-design": "0.0.6-
|
|
87
|
+
"@luck-helper/ui-design": "0.0.6-3",
|
|
88
88
|
"@types/classnames": "^2.3.1",
|
|
89
89
|
"@types/express": "^4.17.14",
|
|
90
90
|
"@types/history": "^4.7.11",
|