@jetlinks-web/components 2.0.12 → 2.0.14-1
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/FullPage/FullPage.js +1 -1
- package/es/ProLayout/Basic/BasicLayout.js +2 -1
- package/es/ProLayout/PageContainer/index.js +9 -2
- package/es/ProLayout/SiderMenu/SiderMenu.js +30 -26
- package/es/Search/Advanced/SaveHistory.js +1 -1
- package/es/Search/Item.js +1 -1
- package/es/Search/Search.js +1 -1
- package/lib/FullPage/FullPage.js +1 -1
- package/lib/ProLayout/Basic/BasicLayout.js +2 -1
- package/lib/ProLayout/PageContainer/index.js +9 -2
- package/lib/ProLayout/SiderMenu/SiderMenu.js +29 -25
- package/lib/Search/Advanced/SaveHistory.js +1 -1
- package/lib/Search/Item.js +1 -1
- package/lib/Search/Search.js +1 -1
- package/package.json +3 -3
package/es/FullPage/FullPage.js
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
} */
|
|
7
7
|
import { defineComponent as _defineComponent } from 'vue';
|
|
8
8
|
import { unref as _unref, renderSlot as _renderSlot, createElementVNode as _createElementVNode, normalizeStyle as _normalizeStyle, openBlock as _openBlock, createElementBlock as _createElementBlock, pushScopeId as _pushScopeId, popScopeId as _popScopeId } from "vue";
|
|
9
|
-
const _withScopeId = n => (_pushScopeId("data-v-
|
|
9
|
+
const _withScopeId = n => (_pushScopeId("data-v-1713949331431"), n = n(), _popScopeId(), n);
|
|
10
10
|
const _hoisted_1 = { class: "full-page-warp-content" };
|
|
11
11
|
import { ref } from 'vue';
|
|
12
12
|
import { useElementBounding } from '@vueuse/core';
|
|
@@ -13,6 +13,7 @@ import { useRouteContext } from '../RouteContext';
|
|
|
13
13
|
import { getSlotVNode } from '../util';
|
|
14
14
|
import 'ant-design-vue/es/_util/type';
|
|
15
15
|
import PropTypes from 'ant-design-vue/es/_util/vue-types';
|
|
16
|
+
import { LayoutType } from "../defaultSettings";
|
|
16
17
|
function _isSlot(s) {
|
|
17
18
|
return typeof s === 'function' || Object.prototype.toString.call(s) === '[object Object]' && !_isVNode(s);
|
|
18
19
|
}
|
|
@@ -236,11 +237,17 @@ var ProPageHeader = function ProPageHeader(props) {
|
|
|
236
237
|
(_value$back = value.back) === null || _value$back === void 0 ? void 0 : _value$back.call(value);
|
|
237
238
|
};
|
|
238
239
|
}
|
|
240
|
+
console.log(props, pageHeaderTitle, value, tabList);
|
|
241
|
+
var styles = value.layoutType === LayoutType.CARD ? {
|
|
242
|
+
padding: props.extra || props.subTitle || pageHeaderTitle || tabList || props.extraContent || props.showBack || props.title ? '16px 24px' : '0px'
|
|
243
|
+
} : {};
|
|
239
244
|
return _createVNode("div", {
|
|
240
245
|
"class": "".concat(prefixedClassName, "-wrap")
|
|
241
|
-
}, [_createVNode(PageHeader, _objectSpread(_objectSpread(_objectSpread({
|
|
246
|
+
}, [_createVNode(PageHeader, _objectSpread(_objectSpread(_objectSpread({
|
|
247
|
+
"style": styles
|
|
248
|
+
}, backProps), restProps), {}, {
|
|
242
249
|
"title": pageHeaderTitle,
|
|
243
|
-
"breadcrumb": breadcrumb,
|
|
250
|
+
"breadcrumb": value.layoutType === LayoutType.LIST ? breadcrumb : null,
|
|
244
251
|
"footer": renderFooter(_objectSpread(_objectSpread({}, restProps), {}, {
|
|
245
252
|
tabList: tabList,
|
|
246
253
|
tabActiveKey: tabActiveKey
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import _toConsumableArray from "@babel/runtime/helpers/esm/toConsumableArray";
|
|
2
2
|
import _defineProperty from "@babel/runtime/helpers/esm/defineProperty";
|
|
3
|
-
import { createVNode as _createVNode, resolveDirective as _resolveDirective, isVNode as _isVNode, Fragment as _Fragment } from "vue";
|
|
3
|
+
import { createVNode as _createVNode, resolveDirective as _resolveDirective, createTextVNode as _createTextVNode, isVNode as _isVNode, Fragment as _Fragment } from "vue";
|
|
4
4
|
import _objectSpread from "@babel/runtime/helpers/esm/objectSpread2";
|
|
5
5
|
import { LayoutSider as Sider, Menu, Tooltip } from 'ant-design-vue';
|
|
6
6
|
import BaseMenu, { baseMenuProps } from './BaseMenu';
|
|
@@ -87,12 +87,36 @@ export var siderMenuProps = _objectSpread(_objectSpread(_objectSpread({}, defaul
|
|
|
87
87
|
type: Function
|
|
88
88
|
}
|
|
89
89
|
});
|
|
90
|
-
export var defaultRenderLogo = function defaultRenderLogo(logo, logoStyle) {
|
|
90
|
+
export var defaultRenderLogo = function defaultRenderLogo(logo, logoStyle, application, onAppMenuClick) {
|
|
91
91
|
if (!logo) {
|
|
92
92
|
return null;
|
|
93
93
|
}
|
|
94
94
|
if (typeof logo === 'string') {
|
|
95
|
-
return _createVNode(
|
|
95
|
+
return application.length ? _createVNode(Tooltip, {
|
|
96
|
+
"placement": "rightTop",
|
|
97
|
+
"color": "#fff",
|
|
98
|
+
"arrowPointAtCenter": true
|
|
99
|
+
}, {
|
|
100
|
+
default: function _default() {
|
|
101
|
+
return [_createVNode("img", {
|
|
102
|
+
"src": logo,
|
|
103
|
+
"alt": "logo",
|
|
104
|
+
"style": logoStyle
|
|
105
|
+
}, null)];
|
|
106
|
+
},
|
|
107
|
+
title: function title() {
|
|
108
|
+
return application.map(function (item) {
|
|
109
|
+
return _createVNode("div", {
|
|
110
|
+
"class": "sider-app-menus"
|
|
111
|
+
}, [_createVNode("div", {
|
|
112
|
+
"class": "sider-app-menus-item",
|
|
113
|
+
"onClick": function onClick() {
|
|
114
|
+
return onAppMenuClick(item);
|
|
115
|
+
}
|
|
116
|
+
}, [item.label])]);
|
|
117
|
+
});
|
|
118
|
+
}
|
|
119
|
+
}) : _createVNode("img", {
|
|
96
120
|
"src": logo,
|
|
97
121
|
"alt": "logo",
|
|
98
122
|
"style": logoStyle
|
|
@@ -113,31 +137,11 @@ export var defaultRenderLogoAndTitle = function defaultRenderLogoAndTitle(props)
|
|
|
113
137
|
layout = props.layout,
|
|
114
138
|
apps = props.apps,
|
|
115
139
|
baseClassName = props.baseClassName;
|
|
116
|
-
var logoDom = defaultRenderLogo(logo, logoStyle);
|
|
117
|
-
var renderFunction = props[renderKey || ''];
|
|
140
|
+
var logoDom = defaultRenderLogo(logo, logoStyle, apps, props.onAppMenuClick);
|
|
118
141
|
if (props.layoutType === LayoutType.CARD) {
|
|
119
|
-
return _createVNode("a", null, [
|
|
120
|
-
"placement": "rightTop",
|
|
121
|
-
"color": "#fff",
|
|
122
|
-
"arrowPointAtCenter": true
|
|
123
|
-
}, {
|
|
124
|
-
default: function _default() {
|
|
125
|
-
return [logoDom];
|
|
126
|
-
},
|
|
127
|
-
title: function title() {
|
|
128
|
-
return apps.map(function (item) {
|
|
129
|
-
return _createVNode("div", {
|
|
130
|
-
"class": "sider-app-menus"
|
|
131
|
-
}, [_createVNode("div", {
|
|
132
|
-
"class": "sider-app-menus-item",
|
|
133
|
-
"onClick": function onClick() {
|
|
134
|
-
return props.onAppMenuClick(item);
|
|
135
|
-
}
|
|
136
|
-
}, [item.label])]);
|
|
137
|
-
});
|
|
138
|
-
}
|
|
139
|
-
}) : logoDom]);
|
|
142
|
+
return _createVNode("a", null, [_createTextVNode(" "), logoDom]);
|
|
140
143
|
}
|
|
144
|
+
var renderFunction = props[renderKey || ''];
|
|
141
145
|
if (layout === 'mix' && renderFunction === false) {
|
|
142
146
|
return null;
|
|
143
147
|
}
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
} */
|
|
22
22
|
import { defineComponent as _defineComponent } from 'vue';
|
|
23
23
|
import { unref as _unref, createVNode as _createVNode, withCtx as _withCtx, createTextVNode as _createTextVNode, openBlock as _openBlock, createElementBlock as _createElementBlock, createCommentVNode as _createCommentVNode, createBlock as _createBlock, pushScopeId as _pushScopeId, popScopeId as _popScopeId } from "vue";
|
|
24
|
-
const _withScopeId = n => (_pushScopeId("data-v-
|
|
24
|
+
const _withScopeId = n => (_pushScopeId("data-v-1713949335703"), n = n(), _popScopeId(), n);
|
|
25
25
|
const _hoisted_1 = {
|
|
26
26
|
key: 0,
|
|
27
27
|
style: { "width": "240px" }
|
package/es/Search/Item.js
CHANGED
|
@@ -78,7 +78,7 @@ function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]
|
|
|
78
78
|
} */
|
|
79
79
|
import { defineComponent as _defineComponent } from 'vue';
|
|
80
80
|
import { unref as _unref, openBlock as _openBlock, createBlock as _createBlock, createCommentVNode as _createCommentVNode, toDisplayString as _toDisplayString, createElementBlock as _createElementBlock, createVNode as _createVNode, Fragment as _Fragment, normalizeStyle as _normalizeStyle, mergeProps as _mergeProps, resolveDynamicComponent as _resolveDynamicComponent, withCtx as _withCtx, createElementVNode as _createElementVNode, pushScopeId as _pushScopeId, popScopeId as _popScopeId } from "vue";
|
|
81
|
-
const _withScopeId = n => (_pushScopeId("data-v-
|
|
81
|
+
const _withScopeId = n => (_pushScopeId("data-v-1713949334657"), n = n(), _popScopeId(), n);
|
|
82
82
|
const _hoisted_1 = { class: "JSearch-item" };
|
|
83
83
|
const _hoisted_2 = {
|
|
84
84
|
key: 0,
|
package/es/Search/Search.js
CHANGED
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
} */
|
|
37
37
|
import { defineComponent as _defineComponent } from 'vue';
|
|
38
38
|
import { renderList as _renderList, Fragment as _Fragment, openBlock as _openBlock, createElementBlock as _createElementBlock, createVNode as _createVNode, unref as _unref, withCtx as _withCtx, createBlock as _createBlock, renderSlot as _renderSlot, toDisplayString as _toDisplayString, createTextVNode as _createTextVNode, normalizeStyle as _normalizeStyle, createElementVNode as _createElementVNode, normalizeClass as _normalizeClass, pushScopeId as _pushScopeId, popScopeId as _popScopeId } from "vue";
|
|
39
|
-
const _withScopeId = n => (_pushScopeId("data-v-
|
|
39
|
+
const _withScopeId = n => (_pushScopeId("data-v-1713949335246"), n = n(), _popScopeId(), n);
|
|
40
40
|
const _hoisted_1 = { class: "JSearch-content simple" };
|
|
41
41
|
const _hoisted_2 = { class: "JSearch-items" };
|
|
42
42
|
import { Button, Row, Col, Form, FormItemRest, } from 'ant-design-vue';
|
package/lib/FullPage/FullPage.js
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
} */
|
|
7
7
|
import { defineComponent as _defineComponent } from 'vue';
|
|
8
8
|
import { unref as _unref, renderSlot as _renderSlot, createElementVNode as _createElementVNode, normalizeStyle as _normalizeStyle, openBlock as _openBlock, createElementBlock as _createElementBlock, pushScopeId as _pushScopeId, popScopeId as _popScopeId } from "vue";
|
|
9
|
-
const _withScopeId = n => (_pushScopeId("data-v-
|
|
9
|
+
const _withScopeId = n => (_pushScopeId("data-v-1713949331416"), n = n(), _popScopeId(), n);
|
|
10
10
|
const _hoisted_1 = { class: "full-page-warp-content" };
|
|
11
11
|
import { ref } from 'vue';
|
|
12
12
|
import { useElementBounding } from '@vueuse/core';
|
|
@@ -339,7 +339,8 @@ var _default2 = exports.default = (0, _vue.defineComponent)({
|
|
|
339
339
|
}
|
|
340
340
|
}), (0, _vue.createVNode)(_antDesignVue.LayoutContent, {
|
|
341
341
|
"style": {
|
|
342
|
-
height: "calc(100vh - 84px)"
|
|
342
|
+
height: "calc(100vh - 84px)",
|
|
343
|
+
overflow: 'auto'
|
|
343
344
|
}
|
|
344
345
|
}, {
|
|
345
346
|
default: function _default() {
|
|
@@ -15,6 +15,7 @@ var _pageHeader = require("ant-design-vue/es/page-header");
|
|
|
15
15
|
var _RouteContext = require("../RouteContext");
|
|
16
16
|
var _util = require("../util");
|
|
17
17
|
var _vueTypes = _interopRequireDefault(require("ant-design-vue/es/_util/vue-types"));
|
|
18
|
+
var _defaultSettings = require("../defaultSettings");
|
|
18
19
|
var _excluded = ["title", "tabList", "tabActiveKey", "content", "pageHeaderRender", "header", "extraContent", "prefixedClassName", "prefixCls", "fixedHeader", "showBack"];
|
|
19
20
|
function _isSlot(s) {
|
|
20
21
|
return typeof s === 'function' || Object.prototype.toString.call(s) === '[object Object]' && !(0, _vue.isVNode)(s);
|
|
@@ -239,11 +240,17 @@ var ProPageHeader = function ProPageHeader(props) {
|
|
|
239
240
|
(_value$back = value.back) === null || _value$back === void 0 ? void 0 : _value$back.call(value);
|
|
240
241
|
};
|
|
241
242
|
}
|
|
243
|
+
console.log(props, pageHeaderTitle, value, tabList);
|
|
244
|
+
var styles = value.layoutType === _defaultSettings.LayoutType.CARD ? {
|
|
245
|
+
padding: props.extra || props.subTitle || pageHeaderTitle || tabList || props.extraContent || props.showBack || props.title ? '16px 24px' : '0px'
|
|
246
|
+
} : {};
|
|
242
247
|
return (0, _vue.createVNode)("div", {
|
|
243
248
|
"class": "".concat(prefixedClassName, "-wrap")
|
|
244
|
-
}, [(0, _vue.createVNode)(_antDesignVue.PageHeader, (0, _objectSpread2.default)((0, _objectSpread2.default)((0, _objectSpread2.default)({
|
|
249
|
+
}, [(0, _vue.createVNode)(_antDesignVue.PageHeader, (0, _objectSpread2.default)((0, _objectSpread2.default)((0, _objectSpread2.default)({
|
|
250
|
+
"style": styles
|
|
251
|
+
}, backProps), restProps), {}, {
|
|
245
252
|
"title": pageHeaderTitle,
|
|
246
|
-
"breadcrumb": breadcrumb,
|
|
253
|
+
"breadcrumb": value.layoutType === _defaultSettings.LayoutType.LIST ? breadcrumb : null,
|
|
247
254
|
"footer": renderFooter((0, _objectSpread2.default)((0, _objectSpread2.default)({}, restProps), {}, {
|
|
248
255
|
tabList: tabList,
|
|
249
256
|
tabActiveKey: tabActiveKey
|
|
@@ -96,12 +96,36 @@ var siderMenuProps = exports.siderMenuProps = (0, _objectSpread2.default)((0, _o
|
|
|
96
96
|
type: Function
|
|
97
97
|
}
|
|
98
98
|
});
|
|
99
|
-
var defaultRenderLogo = exports.defaultRenderLogo = function defaultRenderLogo(logo, logoStyle) {
|
|
99
|
+
var defaultRenderLogo = exports.defaultRenderLogo = function defaultRenderLogo(logo, logoStyle, application, onAppMenuClick) {
|
|
100
100
|
if (!logo) {
|
|
101
101
|
return null;
|
|
102
102
|
}
|
|
103
103
|
if (typeof logo === 'string') {
|
|
104
|
-
return (0, _vue.createVNode)(
|
|
104
|
+
return application.length ? (0, _vue.createVNode)(_antDesignVue.Tooltip, {
|
|
105
|
+
"placement": "rightTop",
|
|
106
|
+
"color": "#fff",
|
|
107
|
+
"arrowPointAtCenter": true
|
|
108
|
+
}, {
|
|
109
|
+
default: function _default() {
|
|
110
|
+
return [(0, _vue.createVNode)("img", {
|
|
111
|
+
"src": logo,
|
|
112
|
+
"alt": "logo",
|
|
113
|
+
"style": logoStyle
|
|
114
|
+
}, null)];
|
|
115
|
+
},
|
|
116
|
+
title: function title() {
|
|
117
|
+
return application.map(function (item) {
|
|
118
|
+
return (0, _vue.createVNode)("div", {
|
|
119
|
+
"class": "sider-app-menus"
|
|
120
|
+
}, [(0, _vue.createVNode)("div", {
|
|
121
|
+
"class": "sider-app-menus-item",
|
|
122
|
+
"onClick": function onClick() {
|
|
123
|
+
return onAppMenuClick(item);
|
|
124
|
+
}
|
|
125
|
+
}, [item.label])]);
|
|
126
|
+
});
|
|
127
|
+
}
|
|
128
|
+
}) : (0, _vue.createVNode)("img", {
|
|
105
129
|
"src": logo,
|
|
106
130
|
"alt": "logo",
|
|
107
131
|
"style": logoStyle
|
|
@@ -122,31 +146,11 @@ var defaultRenderLogoAndTitle = exports.defaultRenderLogoAndTitle = function def
|
|
|
122
146
|
layout = props.layout,
|
|
123
147
|
apps = props.apps,
|
|
124
148
|
baseClassName = props.baseClassName;
|
|
125
|
-
var logoDom = defaultRenderLogo(logo, logoStyle);
|
|
126
|
-
var renderFunction = props[renderKey || ''];
|
|
149
|
+
var logoDom = defaultRenderLogo(logo, logoStyle, apps, props.onAppMenuClick);
|
|
127
150
|
if (props.layoutType === _defaultSettings.LayoutType.CARD) {
|
|
128
|
-
return (0, _vue.createVNode)("a", null, [
|
|
129
|
-
"placement": "rightTop",
|
|
130
|
-
"color": "#fff",
|
|
131
|
-
"arrowPointAtCenter": true
|
|
132
|
-
}, {
|
|
133
|
-
default: function _default() {
|
|
134
|
-
return [logoDom];
|
|
135
|
-
},
|
|
136
|
-
title: function title() {
|
|
137
|
-
return apps.map(function (item) {
|
|
138
|
-
return (0, _vue.createVNode)("div", {
|
|
139
|
-
"class": "sider-app-menus"
|
|
140
|
-
}, [(0, _vue.createVNode)("div", {
|
|
141
|
-
"class": "sider-app-menus-item",
|
|
142
|
-
"onClick": function onClick() {
|
|
143
|
-
return props.onAppMenuClick(item);
|
|
144
|
-
}
|
|
145
|
-
}, [item.label])]);
|
|
146
|
-
});
|
|
147
|
-
}
|
|
148
|
-
}) : logoDom]);
|
|
151
|
+
return (0, _vue.createVNode)("a", null, [(0, _vue.createTextVNode)(" "), logoDom]);
|
|
149
152
|
}
|
|
153
|
+
var renderFunction = props[renderKey || ''];
|
|
150
154
|
if (layout === 'mix' && renderFunction === false) {
|
|
151
155
|
return null;
|
|
152
156
|
}
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
} */
|
|
22
22
|
import { defineComponent as _defineComponent } from 'vue';
|
|
23
23
|
import { unref as _unref, createVNode as _createVNode, withCtx as _withCtx, createTextVNode as _createTextVNode, openBlock as _openBlock, createElementBlock as _createElementBlock, createCommentVNode as _createCommentVNode, createBlock as _createBlock, pushScopeId as _pushScopeId, popScopeId as _popScopeId } from "vue";
|
|
24
|
-
const _withScopeId = n => (_pushScopeId("data-v-
|
|
24
|
+
const _withScopeId = n => (_pushScopeId("data-v-1713949335645"), n = n(), _popScopeId(), n);
|
|
25
25
|
const _hoisted_1 = {
|
|
26
26
|
key: 0,
|
|
27
27
|
style: { "width": "240px" }
|
package/lib/Search/Item.js
CHANGED
|
@@ -78,7 +78,7 @@ function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]
|
|
|
78
78
|
} */
|
|
79
79
|
import { defineComponent as _defineComponent } from 'vue';
|
|
80
80
|
import { unref as _unref, openBlock as _openBlock, createBlock as _createBlock, createCommentVNode as _createCommentVNode, toDisplayString as _toDisplayString, createElementBlock as _createElementBlock, createVNode as _createVNode, Fragment as _Fragment, normalizeStyle as _normalizeStyle, mergeProps as _mergeProps, resolveDynamicComponent as _resolveDynamicComponent, withCtx as _withCtx, createElementVNode as _createElementVNode, pushScopeId as _pushScopeId, popScopeId as _popScopeId } from "vue";
|
|
81
|
-
const _withScopeId = n => (_pushScopeId("data-v-
|
|
81
|
+
const _withScopeId = n => (_pushScopeId("data-v-1713949334395"), n = n(), _popScopeId(), n);
|
|
82
82
|
const _hoisted_1 = { class: "JSearch-item" };
|
|
83
83
|
const _hoisted_2 = {
|
|
84
84
|
key: 0,
|
package/lib/Search/Search.js
CHANGED
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
} */
|
|
37
37
|
import { defineComponent as _defineComponent } from 'vue';
|
|
38
38
|
import { renderList as _renderList, Fragment as _Fragment, openBlock as _openBlock, createElementBlock as _createElementBlock, createVNode as _createVNode, unref as _unref, withCtx as _withCtx, createBlock as _createBlock, renderSlot as _renderSlot, toDisplayString as _toDisplayString, createTextVNode as _createTextVNode, normalizeStyle as _normalizeStyle, createElementVNode as _createElementVNode, normalizeClass as _normalizeClass, pushScopeId as _pushScopeId, popScopeId as _popScopeId } from "vue";
|
|
39
|
-
const _withScopeId = n => (_pushScopeId("data-v-
|
|
39
|
+
const _withScopeId = n => (_pushScopeId("data-v-1713949335077"), n = n(), _popScopeId(), n);
|
|
40
40
|
const _hoisted_1 = { class: "JSearch-content simple" };
|
|
41
41
|
const _hoisted_2 = { class: "JSearch-items" };
|
|
42
42
|
import { Button, Row, Col, Form, FormItemRest, } from 'ant-design-vue';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jetlinks-web/components",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.14-1",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"module": "es/index.js",
|
|
@@ -134,8 +134,8 @@
|
|
|
134
134
|
"webpack-merge": "^5.0.0",
|
|
135
135
|
"webpackbar": "^5.0.2",
|
|
136
136
|
"@jetlinks-web/constants": "^1.0.2",
|
|
137
|
-
"@jetlinks-web/
|
|
138
|
-
"@jetlinks-web/
|
|
137
|
+
"@jetlinks-web/utils": "^1.0.6",
|
|
138
|
+
"@jetlinks-web/hooks": "^1.0.12"
|
|
139
139
|
},
|
|
140
140
|
"publishConfig": {
|
|
141
141
|
"registry": "https://registry.npmjs.org/",
|