@jetlinks-web/components 2.0.5 → 2.0.7

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.
@@ -1,212 +1,226 @@
1
- @import '../style/default.less';
2
-
3
- @pro-layout-sider-menu-prefix-cls: ~'@{ant-prefix}-pro-sider';
4
-
5
- @nav-header-height: @pro-layout-header-height;
6
-
7
- .@{pro-layout-sider-menu-prefix-cls} {
8
- position: relative;
9
- background-color: @layout-sider-background;
10
- border-right: 0;
11
- // FIXME: 临时修正(可能不会做兼容)
12
- z-index: 20;
13
-
14
- // 这里关掉了动画,不然使用无法兼容
15
- .@{ant-prefix}-menu {
16
- background: transparent;
17
- }
18
-
19
- &.@{ant-prefix}-layout-sider-light {
20
- .@{ant-prefix}-menu-item a {
21
- color: @heading-color;
22
- }
23
- .@{ant-prefix}-menu-item-selected a,
24
- .@{ant-prefix}-menu-item a:hover {
25
- color: @primary-color;
26
- }
27
- }
28
-
29
- &-logo {
30
- position: relative;
31
- display: flex;
32
- align-items: center;
33
- padding: 16px 16px;
34
- cursor: pointer;
35
- transition: padding 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
36
-
37
- > a {
38
- display: flex;
39
- align-items: center;
40
- justify-content: center;
41
- min-height: 32px;
42
- }
43
-
44
- img {
45
- display: inline-block;
46
- height: 32px;
47
- vertical-align: middle;
48
- }
49
-
50
- h1 {
51
- display: inline-block;
52
- height: 32px;
53
- margin: 0 0 0 12px;
54
- color: white;
55
- font-weight: 600;
56
- font-size: 18px;
57
- line-height: 32px;
58
- vertical-align: middle;
59
- animation: pro-layout-title-hide 0.3s;
60
- }
61
- }
62
-
63
- &-extra {
64
- margin-bottom: 16px;
65
- padding: 0 16px;
66
- &-no-logo {
67
- margin-top: 16px;
68
- }
69
- }
70
-
71
- &-menu {
72
- position: relative;
73
- z-index: 10;
74
- min-height: 100%;
75
- box-shadow: 2px 0 6px rgba(0, 21, 41, 0.35);
76
- }
77
-
78
- .@{ant-prefix}-layout-sider-children {
79
- display: flex;
80
- flex-direction: column;
81
- height: 100%;
82
-
83
- ::-webkit-scrollbar {
84
- width: 6px;
85
- height: 6px;
86
- }
87
-
88
- ::-webkit-scrollbar-track {
89
- background: rgba(255, 255, 255, 0.15);
90
- border-radius: 3px;
91
- box-shadow: inset 0 0 5px rgba(37, 37, 37, 0.05);
92
- }
93
-
94
- /* 滚动条滑块 */
95
- ::-webkit-scrollbar-thumb {
96
- background: rgba(255, 255, 255, 0.2);
97
- border-radius: 3px;
98
- box-shadow: inset 0 0 5px rgba(255, 255, 255, 0.05);
99
- }
100
- }
101
-
102
- &.@{ant-prefix}-layout-sider-collapsed {
103
- .@{ant-prefix}-menu-inline-collapsed {
104
- width: 48px;
105
- }
106
- .@{pro-layout-sider-menu-prefix-cls} {
107
- &-logo {
108
- padding: 16px 8px;
109
- }
110
- }
111
- }
112
-
113
- &.@{ant-prefix}-layout-sider.@{pro-layout-sider-menu-prefix-cls}-fixed {
114
- position: fixed;
115
- top: 0;
116
- left: 0;
117
- z-index: 99; // react pro-components: z-index: 100;
118
- height: 100%;
119
- overflow: auto;
120
- overflow-x: hidden;
121
- box-shadow: 2px 0 8px 0 rgba(29, 35, 41, 0.05);
122
- > .@{ant-prefix}-menu-root {
123
- :not(.@{pro-layout-sider-menu-prefix-cls}-link-menu) {
124
- height: ~'calc(100vh - @{nav-header-height})';
125
- overflow-y: auto;
126
- }
127
- }
128
- }
129
-
130
- &-light {
131
- background-color: @component-background;
132
- box-shadow: 2px 0 8px 0 rgba(29, 35, 41, 0.05);
133
-
134
- .@{ant-prefix}-layout-sider-children {
135
- ::-webkit-scrollbar-track {
136
- background: rgba(0, 0, 0, 0.06);
137
- border-radius: 3px;
138
- box-shadow: inset 0 0 5px rgba(0, 21, 41, 0.05);
139
- }
140
-
141
- /* 滚动条滑块 */
142
- ::-webkit-scrollbar-thumb {
143
- background: rgba(0, 0, 0, 0.12);
144
- border-radius: 3px;
145
- box-shadow: inset 0 0 5px rgba(0, 21, 41, 0.05);
146
- }
147
- }
148
-
149
- .@{pro-layout-sider-menu-prefix-cls}-logo {
150
- h1 {
151
- color: @primary-color;
152
- }
153
- }
154
- .@{ant-prefix}-menu-light {
155
- border-right-color: transparent;
156
- }
157
-
158
- .@{pro-layout-sider-menu-prefix-cls}-collapsed-button {
159
- border-top: @border-width-base @border-style-base
160
- @border-color-split;
161
- }
162
- }
163
-
164
- &-icon {
165
- width: 14px;
166
- vertical-align: baseline;
167
- }
168
-
169
- &-links {
170
- width: 100%;
171
- ul.@{ant-prefix}-menu-root {
172
- height: auto;
173
- }
174
- }
175
-
176
- &-collapsed-button {
177
- border-top: @border-width-base @border-style-base rgba(0, 0, 0, 0.25);
178
- .anticon {
179
- font-size: 16px;
180
- }
181
- }
182
-
183
- .top-nav-menu li.@{ant-prefix}-menu-item {
184
- height: 100%;
185
- line-height: 1;
186
- }
187
- .drawer .drawer-content {
188
- background: @layout-sider-background;
189
- }
190
- }
191
-
192
- // 修正菜单 collapsed 时,icon 与 title 的间距
193
- .@{ant-prefix}-pro-menu-item {
194
- .anticon + .@{ant-prefix}-pro-menu-item-title {
195
- margin-left: 10px;
196
- }
197
- }
198
-
199
- @keyframes pro-layout-title-hide {
200
- 0% {
201
- display: none;
202
- opacity: 0;
203
- }
204
- 80% {
205
- display: none;
206
- opacity: 0;
207
- }
208
- 100% {
209
- display: unset;
210
- opacity: 1;
211
- }
212
- }
1
+ @import '../style/default.less';
2
+
3
+ @pro-layout-sider-menu-prefix-cls: ~'@{ant-prefix}-pro-sider';
4
+
5
+ @nav-header-height: @pro-layout-header-height;
6
+
7
+ .@{pro-layout-sider-menu-prefix-cls} {
8
+ position: relative;
9
+ background-color: @layout-sider-background;
10
+ border-right: 0;
11
+ // FIXME: 临时修正(可能不会做兼容)
12
+ z-index: 20;
13
+
14
+ // 这里关掉了动画,不然使用无法兼容
15
+ .@{ant-prefix}-menu {
16
+ background: transparent;
17
+ }
18
+
19
+ &.@{ant-prefix}-layout-sider-light {
20
+ .@{ant-prefix}-menu-item a {
21
+ color: @heading-color;
22
+ }
23
+ .@{ant-prefix}-menu-item-selected a,
24
+ .@{ant-prefix}-menu-item a:hover {
25
+ color: @primary-color;
26
+ }
27
+ }
28
+
29
+ &-logo {
30
+ position: relative;
31
+ display: flex;
32
+ align-items: center;
33
+ padding: 16px 16px;
34
+ cursor: pointer;
35
+ transition: padding 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
36
+
37
+ > a {
38
+ display: flex;
39
+ align-items: center;
40
+ justify-content: center;
41
+ min-height: 32px;
42
+ }
43
+
44
+ img {
45
+ display: inline-block;
46
+ height: 32px;
47
+ vertical-align: middle;
48
+ }
49
+
50
+ h1 {
51
+ display: inline-block;
52
+ height: 32px;
53
+ margin: 0 0 0 12px;
54
+ color: white;
55
+ font-weight: 600;
56
+ font-size: 18px;
57
+ line-height: 32px;
58
+ vertical-align: middle;
59
+ animation: pro-layout-title-hide 0.3s;
60
+ }
61
+ }
62
+
63
+ &-extra {
64
+ margin-bottom: 16px;
65
+ padding: 0 16px;
66
+ &-no-logo {
67
+ margin-top: 16px;
68
+ }
69
+ }
70
+
71
+ &-menu {
72
+ position: relative;
73
+ z-index: 10;
74
+ min-height: 100%;
75
+ box-shadow: 2px 0 6px rgba(0, 21, 41, 0.35);
76
+ }
77
+
78
+ .@{ant-prefix}-layout-sider-children {
79
+ display: flex;
80
+ flex-direction: column;
81
+ height: 100%;
82
+
83
+ ::-webkit-scrollbar {
84
+ width: 6px;
85
+ height: 6px;
86
+ }
87
+
88
+ ::-webkit-scrollbar-track {
89
+ background: rgba(255, 255, 255, 0.15);
90
+ border-radius: 3px;
91
+ box-shadow: inset 0 0 5px rgba(37, 37, 37, 0.05);
92
+ }
93
+
94
+ /* 滚动条滑块 */
95
+ ::-webkit-scrollbar-thumb {
96
+ background: rgba(255, 255, 255, 0.2);
97
+ border-radius: 3px;
98
+ box-shadow: inset 0 0 5px rgba(255, 255, 255, 0.05);
99
+ }
100
+ }
101
+
102
+ &.@{ant-prefix}-layout-sider-collapsed {
103
+ .@{ant-prefix}-menu-inline-collapsed {
104
+ width: 48px;
105
+ }
106
+ .@{pro-layout-sider-menu-prefix-cls} {
107
+ &-logo {
108
+ padding: 16px 8px;
109
+ }
110
+ }
111
+ }
112
+
113
+ &.@{ant-prefix}-layout-sider.@{pro-layout-sider-menu-prefix-cls}-fixed {
114
+ position: fixed;
115
+ top: 0;
116
+ left: 0;
117
+ z-index: 99; // react pro-components: z-index: 100;
118
+ height: 100%;
119
+ overflow: auto;
120
+ overflow-x: hidden;
121
+ box-shadow: 2px 0 8px 0 rgba(29, 35, 41, 0.05);
122
+ > .@{ant-prefix}-menu-root {
123
+ :not(.@{pro-layout-sider-menu-prefix-cls}-link-menu) {
124
+ height: ~'calc(100vh - @{nav-header-height})';
125
+ overflow-y: auto;
126
+ }
127
+ }
128
+ }
129
+
130
+ &-light {
131
+ background-color: @component-background;
132
+ box-shadow: 2px 0 8px 0 rgba(29, 35, 41, 0.05);
133
+
134
+ .@{ant-prefix}-layout-sider-children {
135
+ ::-webkit-scrollbar-track {
136
+ background: rgba(0, 0, 0, 0.06);
137
+ border-radius: 3px;
138
+ box-shadow: inset 0 0 5px rgba(0, 21, 41, 0.05);
139
+ }
140
+
141
+ /* 滚动条滑块 */
142
+ ::-webkit-scrollbar-thumb {
143
+ background: rgba(0, 0, 0, 0.12);
144
+ border-radius: 3px;
145
+ box-shadow: inset 0 0 5px rgba(0, 21, 41, 0.05);
146
+ }
147
+ }
148
+
149
+ .@{pro-layout-sider-menu-prefix-cls}-logo {
150
+ h1 {
151
+ color: @primary-color;
152
+ }
153
+ }
154
+ .@{ant-prefix}-menu-light {
155
+ border-right-color: transparent;
156
+ }
157
+
158
+ .@{pro-layout-sider-menu-prefix-cls}-collapsed-button {
159
+ border-top: @border-width-base @border-style-base
160
+ @border-color-split;
161
+ }
162
+ }
163
+
164
+ &-icon {
165
+ width: 14px;
166
+ vertical-align: baseline;
167
+ }
168
+
169
+ &-links {
170
+ width: 100%;
171
+ ul.@{ant-prefix}-menu-root {
172
+ height: auto;
173
+ }
174
+ }
175
+
176
+ &-collapsed-button {
177
+ border-top: @border-width-base @border-style-base rgba(0, 0, 0, 0.25);
178
+ .anticon {
179
+ font-size: 16px;
180
+ }
181
+ }
182
+
183
+ .top-nav-menu li.@{ant-prefix}-menu-item {
184
+ height: 100%;
185
+ line-height: 1;
186
+ }
187
+ .drawer .drawer-content {
188
+ background: @layout-sider-background;
189
+ }
190
+ }
191
+
192
+ // 修正菜单 collapsed 时,icon 与 title 的间距
193
+ .@{ant-prefix}-pro-menu-item {
194
+ .anticon + .@{ant-prefix}-pro-menu-item-title {
195
+ margin-left: 10px;
196
+ }
197
+ }
198
+
199
+ .sider-app-menus {
200
+ width: 100px;
201
+ background-color: #fff;
202
+ cursor: pointer;
203
+ padding: 6px;
204
+ transition: all .3s;
205
+ border-radius: 4px;
206
+ color: #333;
207
+
208
+ &:hover {
209
+ background-color: #efefef;
210
+ }
211
+ }
212
+
213
+ @keyframes pro-layout-title-hide {
214
+ 0% {
215
+ display: none;
216
+ opacity: 0;
217
+ }
218
+ 80% {
219
+ display: none;
220
+ opacity: 0;
221
+ }
222
+ 100% {
223
+ display: unset;
224
+ opacity: 1;
225
+ }
226
+ }
@@ -1,9 +1,12 @@
1
1
  "use strict";
2
2
 
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
3
4
  Object.defineProperty(exports, "__esModule", {
4
5
  value: true
5
6
  });
6
- exports.defaultSettings = exports.defaultSettingProps = void 0;
7
+ exports.defaultSettings = exports.defaultSettingProps = exports.LayoutType = void 0;
8
+ require("vue");
9
+ var _vueTypes = _interopRequireDefault(require("ant-design-vue/es/_util/vue-types"));
7
10
  var defaultSettings = exports.defaultSettings = {
8
11
  theme: 'light',
9
12
  layout: 'mix',
@@ -18,6 +21,10 @@ var defaultSettings = exports.defaultSettings = {
18
21
  iconfontUrl: '',
19
22
  primaryColor: '#315EFB'
20
23
  };
24
+ var LayoutType = exports.LayoutType = {
25
+ CARD: 'card',
26
+ LIST: 'list'
27
+ };
21
28
  var defaultSettingProps = exports.defaultSettingProps = {
22
29
  theme: {
23
30
  type: String,
@@ -68,5 +75,36 @@ var defaultSettingProps = exports.defaultSettingProps = {
68
75
  default: function _default() {
69
76
  return defaultSettings.primaryColor;
70
77
  }
71
- }
78
+ },
79
+ layoutType: {
80
+ type: String,
81
+ default: LayoutType.LIST
82
+ },
83
+ cardSiderWidth: {
84
+ type: Number,
85
+ default: 60
86
+ },
87
+ historyRoutes: {
88
+ type: Array,
89
+ default: function _default() {
90
+ return [];
91
+ }
92
+ },
93
+ historyActive: {
94
+ type: String,
95
+ default: undefined
96
+ },
97
+ pageFooterStyle: {
98
+ type: Object,
99
+ default: function _default() {
100
+ return undefined;
101
+ }
102
+ },
103
+ apps: {
104
+ type: Array,
105
+ default: function _default() {
106
+ return [];
107
+ }
108
+ },
109
+ onAppMenuClick: _vueTypes.default.func
72
110
  };
@@ -4,6 +4,12 @@ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefau
4
4
  Object.defineProperty(exports, "__esModule", {
5
5
  value: true
6
6
  });
7
+ Object.defineProperty(exports, "LayoutType", {
8
+ enumerable: true,
9
+ get: function get() {
10
+ return _defaultSettings.LayoutType;
11
+ }
12
+ });
7
13
  Object.defineProperty(exports, "PageContainer", {
8
14
  enumerable: true,
9
15
  get: function get() {
@@ -13,6 +19,7 @@ Object.defineProperty(exports, "PageContainer", {
13
19
  exports.default = void 0;
14
20
  var _BasicLayout = _interopRequireDefault(require("./Basic/BasicLayout"));
15
21
  var _PageContainer = _interopRequireDefault(require("./PageContainer"));
22
+ var _defaultSettings = require("./defaultSettings");
16
23
  _BasicLayout.default.install = function (app) {
17
24
  app.component(_BasicLayout.default.name, _BasicLayout.default);
18
25
  };
@@ -0,0 +1,69 @@
1
+ /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
2
+ /* stylelint-disable no-duplicate-selectors */
3
+ /* stylelint-disable */
4
+ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
5
+ .jtable-body-spin {
6
+ min-height: 100%;
7
+ width: 100%;
8
+ padding: 16px 24px 24px;
9
+ background-color: #fff;
10
+ }
11
+ .jtable-body-spin .ant-spin-nested-loading {
12
+ height: 100%;
13
+ }
14
+ .jtable-body-spin .ant-spin-nested-loading .ant-spin-container {
15
+ height: 100%;
16
+ }
17
+ .jtable-body-spin .jtable-body {
18
+ width: 100%;
19
+ box-sizing: border-box;
20
+ height: 100%;
21
+ display: flex;
22
+ flex-direction: column;
23
+ }
24
+ .jtable-body-spin .jtable-body .jtable-body-header {
25
+ display: flex;
26
+ justify-content: space-between;
27
+ align-items: center;
28
+ }
29
+ .jtable-body-spin .jtable-body .jtable-body-header .jtable-body-header-right {
30
+ display: flex;
31
+ gap: 8px;
32
+ align-items: center;
33
+ }
34
+ .jtable-body-spin .jtable-body .jtable-body-header .jtable-body-header-right .jtable-body-header-right-button .right-button-icon {
35
+ font-size: 16px;
36
+ color: #d9d9d9;
37
+ }
38
+ .jtable-body-spin .jtable-body .jtable-body-header .jtable-body-header-right .jtable-body-header-right-button .ant-radio-button-wrapper {
39
+ padding: 0 8px;
40
+ }
41
+ .jtable-body-spin .jtable-body .jtable-body-header .jtable-body-header-right .jtable-body-header-right-button .ant-radio-button-wrapper-checked .right-button-icon {
42
+ color: #1890ff;
43
+ }
44
+ .jtable-body-spin .jtable-body .jtable-content {
45
+ flex: 1;
46
+ padding: 16px 0;
47
+ }
48
+ .jtable-body-spin .jtable-body .jtable-content .jtable-alert {
49
+ margin-bottom: 16px;
50
+ }
51
+ .jtable-body-spin .jtable-body .jtable-content .jtable-card .jtable-card-items {
52
+ display: grid;
53
+ grid-gap: 26px;
54
+ }
55
+ .jtable-body-spin .jtable-body .jtable-content .jtable-card .jtable-card-items .jtable-card-item {
56
+ display: flex;
57
+ min-width: 0;
58
+ }
59
+ .jtable-body-spin .jtable-body .jtable-pagination {
60
+ width: 100%;
61
+ display: flex;
62
+ justify-content: flex-end;
63
+ }
64
+ .jtable-body-spin .jtable-body .j-table-empty {
65
+ display: flex;
66
+ justify-content: center;
67
+ align-items: center;
68
+ margin: 10% 0;
69
+ }
@@ -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-1713253709627"), n = n(), _popScopeId(), n);
24
+ const _withScopeId = n => (_pushScopeId("data-v-1713344578885"), n = n(), _popScopeId(), n);
25
25
  const _hoisted_1 = {
26
26
  key: 0,
27
27
  style: { "width": "240px" }
@@ -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-1713253708912"), n = n(), _popScopeId(), n);
81
+ const _withScopeId = n => (_pushScopeId("data-v-1713344577199"), n = n(), _popScopeId(), n);
82
82
  const _hoisted_1 = { class: "JSearch-item" };
83
83
  const _hoisted_2 = {
84
84
  key: 0,
@@ -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-1713253709078"), n = n(), _popScopeId(), n);
39
+ const _withScopeId = n => (_pushScopeId("data-v-1713344577491"), 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';
@@ -0,0 +1,3 @@
1
+ @import "../CheckButton/style/index-pure.less";
2
+ @import "../Ellipsis/style/index-pure.less";
3
+ @import "../ProTable/style/index-pure.less";
@@ -322,6 +322,18 @@
322
322
  .ant-pro-menu-item .anticon + .ant-pro-menu-item-title {
323
323
  margin-left: 10px;
324
324
  }
325
+ .sider-app-menus {
326
+ width: 100px;
327
+ background-color: #fff;
328
+ cursor: pointer;
329
+ padding: 6px;
330
+ transition: all 0.3s;
331
+ border-radius: 4px;
332
+ color: #333;
333
+ }
334
+ .sider-app-menus:hover {
335
+ background-color: #efefef;
336
+ }
325
337
  @keyframes pro-layout-title-hide {
326
338
  0% {
327
339
  display: none;
@@ -0,0 +1,4 @@
1
+ /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
2
+ /* stylelint-disable no-duplicate-selectors */
3
+ /* stylelint-disable */
4
+ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
@@ -1,2 +1,4 @@
1
- @text-color-title: #000;
2
- @text-color-subtitle: #263237;
1
+ @import 'ant-design-vue/es/style/themes/index.less';
2
+
3
+ @text-color-title: #000;
4
+ @text-color-subtitle: #263237;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jetlinks-web/components",
3
- "version": "2.0.5",
3
+ "version": "2.0.7",
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/hooks": "^1.0.12",
138
- "@jetlinks-web/utils": "^1.0.6"
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/",