@jetlinks-web/components 2.0.4 → 2.0.6

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.
Files changed (102) hide show
  1. package/es/AMap/Map.js +3 -0
  2. package/es/AMap/index.js +3 -0
  3. package/es/BadgeStatus/Badge.js +3 -0
  4. package/es/BadgeStatus/index.js +3 -0
  5. package/es/CardSelect/CardSelect.js +4 -2
  6. package/es/CardSelect/index.js +3 -0
  7. package/es/CheckButton/CheckButton.js +4 -2
  8. package/es/CheckButton/index.js +3 -0
  9. package/es/CheckButton/style/index.css +37 -0
  10. package/es/CheckButton/style/index.less +40 -0
  11. package/es/ConfigProvider/index.js +3 -0
  12. package/es/Echarts/Echarts.js +3 -0
  13. package/es/Echarts/index.js +3 -0
  14. package/es/Ellipsis/Ellipsis.js +23 -15
  15. package/es/Ellipsis/index.js +3 -0
  16. package/es/Ellipsis/style/index.css +17 -0
  17. package/es/Ellipsis/style/index.less +20 -0
  18. package/es/Empty/Empty.js +3 -0
  19. package/es/Empty/index.js +3 -0
  20. package/es/FullPage/FullPage.js +4 -1
  21. package/es/FullPage/index.js +3 -0
  22. package/es/Icon/index.js +3 -0
  23. package/es/MonacoEditor/Monaco.js +4 -2
  24. package/es/MonacoEditor/index.js +3 -0
  25. package/es/PermissionButton/index.js +4 -1
  26. package/es/ProLayout/Basic/BasicLayout.js +142 -43
  27. package/es/ProLayout/PageContainer/index.js +2 -2
  28. package/es/ProLayout/SiderMenu/BaseMenu.js +2 -3
  29. package/es/ProLayout/SiderMenu/SiderMenu.js +35 -8
  30. package/es/ProLayout/SiderMenu/index.less +226 -212
  31. package/es/ProLayout/defaultSettings.js +38 -1
  32. package/es/ProLayout/index.js +5 -1
  33. package/es/ProLayout/style/default.less +4 -4
  34. package/es/ProTable/index.js +4 -1
  35. package/es/ProTable/style/index.css +5 -1
  36. package/es/Scrollbar/index.js +3 -0
  37. package/es/Search/Advanced/SaveHistory.js +1 -1
  38. package/es/Search/Advanced/index.js +3 -0
  39. package/es/Search/Item.js +1 -1
  40. package/es/Search/Search.js +4 -1
  41. package/es/Search/index.js +3 -0
  42. package/es/ValueItem/ValueItem.js +3 -0
  43. package/es/ValueItem/index.js +3 -0
  44. package/es/components.js +17 -0
  45. package/es/index.js +13 -22
  46. package/es/style/index.css +719 -0
  47. package/es/style/index.less +6 -0
  48. package/es/style/variable.css +4 -0
  49. package/es/style/variable.less +4 -2
  50. package/es/style.js +2 -0
  51. package/lib/AMap/Map.js +3 -0
  52. package/lib/AMap/index.js +3 -0
  53. package/lib/BadgeStatus/Badge.js +3 -0
  54. package/lib/BadgeStatus/index.js +3 -0
  55. package/lib/CardSelect/CardSelect.js +4 -2
  56. package/lib/CardSelect/index.js +3 -0
  57. package/lib/CheckButton/CheckButton.js +4 -2
  58. package/lib/CheckButton/index.js +3 -0
  59. package/lib/CheckButton/style/index.css +37 -0
  60. package/lib/CheckButton/style/index.less +40 -0
  61. package/lib/ConfigProvider/index.js +3 -0
  62. package/lib/Echarts/Echarts.js +3 -0
  63. package/lib/Echarts/index.js +3 -0
  64. package/lib/Ellipsis/Ellipsis.js +23 -15
  65. package/lib/Ellipsis/index.js +3 -0
  66. package/lib/Ellipsis/style/index.css +17 -0
  67. package/lib/Ellipsis/style/index.less +20 -0
  68. package/lib/Empty/Empty.js +3 -0
  69. package/lib/Empty/index.js +3 -0
  70. package/lib/FullPage/FullPage.js +4 -1
  71. package/lib/FullPage/index.js +3 -0
  72. package/lib/Icon/index.js +3 -0
  73. package/lib/MonacoEditor/Monaco.js +4 -2
  74. package/lib/MonacoEditor/index.js +3 -0
  75. package/lib/PermissionButton/index.js +4 -1
  76. package/lib/ProLayout/Basic/BasicLayout.js +140 -41
  77. package/lib/ProLayout/PageContainer/index.js +2 -2
  78. package/lib/ProLayout/SiderMenu/BaseMenu.js +2 -3
  79. package/lib/ProLayout/SiderMenu/SiderMenu.js +32 -5
  80. package/lib/ProLayout/SiderMenu/index.less +226 -212
  81. package/lib/ProLayout/defaultSettings.js +40 -2
  82. package/lib/ProLayout/index.js +10 -0
  83. package/lib/ProLayout/style/default.less +4 -4
  84. package/lib/ProTable/index.js +4 -1
  85. package/lib/ProTable/style/index.css +5 -1
  86. package/lib/Scrollbar/index.js +3 -0
  87. package/lib/Search/Advanced/SaveHistory.js +1 -1
  88. package/lib/Search/Advanced/index.js +3 -0
  89. package/lib/Search/Item.js +1 -1
  90. package/lib/Search/Search.js +4 -1
  91. package/lib/Search/index.js +3 -0
  92. package/lib/ValueItem/ValueItem.js +3 -0
  93. package/lib/ValueItem/index.js +3 -0
  94. package/lib/components.js +134 -0
  95. package/lib/index.js +18 -138
  96. package/lib/style/components.less +2 -0
  97. package/lib/style/index.css +719 -0
  98. package/lib/style/index.less +6 -0
  99. package/lib/style/variable.css +4 -0
  100. package/lib/style/variable.less +4 -2
  101. package/lib/style.js +2 -0
  102. package/package.json +8 -10
@@ -0,0 +1,719 @@
1
+ .j-ellipsis {
2
+ overflow: hidden;
3
+ vertical-align: bottom;
4
+ }
5
+ .j-ellipsis-cursor {
6
+ cursor: pointer;
7
+ }
8
+ .j-ellipsis-line-clamp {
9
+ display: -webkit-box;
10
+ -webkit-box-orient: vertical;
11
+ word-break: break-all;
12
+ }
13
+ .j-ellipsis-deep {
14
+ max-height: 380px;
15
+ -webkit-line-clamp: 17;
16
+ text-overflow: ellipsis;
17
+ }
18
+ /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
19
+ /* stylelint-disable no-duplicate-selectors */
20
+ /* stylelint-disable */
21
+ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
22
+ .j-check-button {
23
+ display: flex;
24
+ gap: 16px;
25
+ width: 100%;
26
+ }
27
+ .j-check-button .j-check-button-item {
28
+ flex: 1;
29
+ min-width: 0;
30
+ padding: 8px;
31
+ border-radius: 2px;
32
+ background-color: #f2f3f5;
33
+ transition: all 0.3s;
34
+ color: #333;
35
+ text-align: center;
36
+ cursor: pointer;
37
+ }
38
+ .j-check-button .j-check-button-item:hover {
39
+ background-color: #1890ff;
40
+ opacity: 0.85;
41
+ color: #fff;
42
+ }
43
+ .j-check-button .j-check-button-item.selected {
44
+ background-color: #1890ff;
45
+ color: #fff;
46
+ }
47
+ .j-check-button .j-check-button-item.disabled {
48
+ cursor: not-allowed;
49
+ color: #00000060;
50
+ }
51
+ .j-check-button .j-check-button-item.disabled:hover {
52
+ background-color: #f2f3f5;
53
+ color: #00000060;
54
+ }
55
+ .ant-pro-basicLayout {
56
+ display: flex;
57
+ flex-direction: column;
58
+ width: 100%;
59
+ min-height: 100%;
60
+ }
61
+ .ant-pro-basicLayout .ant-layout-header.ant-pro-fixed-header {
62
+ position: fixed;
63
+ top: 0;
64
+ }
65
+ .ant-pro-basicLayout-content {
66
+ position: relative;
67
+ margin: 24px;
68
+ }
69
+ .ant-pro-basicLayout-content .ant-pro-page-container {
70
+ margin: -24px -24px 0;
71
+ }
72
+ .ant-pro-basicLayout-content-disable-margin {
73
+ margin: 0;
74
+ }
75
+ .ant-pro-basicLayout-content-disable-margin .ant-pro-page-container {
76
+ margin: 0;
77
+ }
78
+ .ant-pro-basicLayout-content > .ant-layout {
79
+ max-height: 100%;
80
+ }
81
+ .ant-pro-basicLayout .ant-pro-basicLayout-is-children.ant-pro-basicLayout-fix-siderbar {
82
+ height: 100vh;
83
+ overflow: hidden;
84
+ transform: rotate(0);
85
+ }
86
+ .ant-pro-basicLayout .ant-pro-basicLayout-has-header .tech-page-container {
87
+ height: calc(100vh - 48px);
88
+ }
89
+ .ant-pro-basicLayout .ant-pro-basicLayout-has-header .ant-pro-basicLayout-is-children.ant-pro-basicLayout-has-header .tech-page-container {
90
+ height: calc(100vh - 48px - 48px);
91
+ }
92
+ .ant-pro-basicLayout .ant-pro-basicLayout-has-header .ant-pro-basicLayout-is-children.ant-pro-basicLayout-has-header .ant-pro-basicLayout-is-children {
93
+ min-height: calc(100vh - 48px);
94
+ }
95
+ .ant-pro-basicLayout .ant-pro-basicLayout-has-header .ant-pro-basicLayout-is-children.ant-pro-basicLayout-has-header .ant-pro-basicLayout-is-children.ant-pro-basicLayout-fix-siderbar {
96
+ height: calc(100vh - 48px);
97
+ }
98
+ .ant-pro-fixed-header {
99
+ z-index: 9;
100
+ width: 100%;
101
+ }
102
+ .ant-pro-page-container-children-content {
103
+ margin: 24px 24px 0;
104
+ }
105
+ .ant-pro-page-container-warp {
106
+ background-color: #fff;
107
+ }
108
+ .ant-pro-page-container-warp .ant-tabs-bar {
109
+ margin: 0;
110
+ }
111
+ .ant-pro-page-container-ghost .ant-pro-page-container-warp {
112
+ background-color: #fff;
113
+ }
114
+ .ant-pro-page-container-main .ant-pro-page-container-detail {
115
+ display: flex;
116
+ }
117
+ .ant-pro-page-container-main .ant-pro-page-container-row {
118
+ display: flex;
119
+ width: 100%;
120
+ }
121
+ .ant-pro-page-container-main .ant-pro-page-container-title-content {
122
+ margin-bottom: 16px;
123
+ }
124
+ .ant-pro-page-container-main .ant-pro-page-container-title,
125
+ .ant-pro-page-container-main .ant-pro-page-container-content {
126
+ flex: auto;
127
+ }
128
+ .ant-pro-page-container-main .ant-pro-page-container-extraContent,
129
+ .ant-pro-page-container-main .ant-pro-page-container-main {
130
+ flex: 0 1 auto;
131
+ }
132
+ .ant-pro-page-container-main .ant-pro-page-container-main {
133
+ width: 100%;
134
+ }
135
+ .ant-pro-page-container-main .ant-pro-page-container-title {
136
+ margin-bottom: 16px;
137
+ }
138
+ .ant-pro-page-container-main .ant-pro-page-container-logo {
139
+ margin-bottom: 16px;
140
+ }
141
+ .ant-pro-page-container-main .ant-pro-page-container-extraContent {
142
+ min-width: 242px;
143
+ margin-left: 88px;
144
+ text-align: right;
145
+ }
146
+ @media screen and (max-width: 1200px) {
147
+ .ant-pro-page-container-main .ant-pro-page-container-extraContent {
148
+ margin-left: 44px;
149
+ }
150
+ }
151
+ @media screen and (max-width: 992px) {
152
+ .ant-pro-page-container-main .ant-pro-page-container-extraContent {
153
+ margin-left: 20px;
154
+ }
155
+ }
156
+ @media screen and (max-width: 768px) {
157
+ .ant-pro-page-container-main .ant-pro-page-container-row {
158
+ display: block;
159
+ }
160
+ .ant-pro-page-container-main .ant-pro-page-container-action,
161
+ .ant-pro-page-container-main .ant-pro-page-container-extraContent {
162
+ margin-left: 0;
163
+ text-align: left;
164
+ }
165
+ }
166
+ @media screen and (max-width: 576px) {
167
+ .ant-pro-page-container-detail {
168
+ display: block;
169
+ }
170
+ .ant-pro-page-container-extraContent {
171
+ margin-left: 0;
172
+ }
173
+ }
174
+ .ant-pro-sider {
175
+ position: relative;
176
+ background-color: #001529;
177
+ border-right: 0;
178
+ z-index: 20;
179
+ }
180
+ .ant-pro-sider .ant-menu {
181
+ background: transparent;
182
+ }
183
+ .ant-pro-sider.ant-layout-sider-light .ant-menu-item a {
184
+ color: rgba(0, 0, 0, 0.85);
185
+ }
186
+ .ant-pro-sider.ant-layout-sider-light .ant-menu-item-selected a,
187
+ .ant-pro-sider.ant-layout-sider-light .ant-menu-item a:hover {
188
+ color: #1890ff;
189
+ }
190
+ .ant-pro-sider-logo {
191
+ position: relative;
192
+ display: flex;
193
+ align-items: center;
194
+ padding: 16px 16px;
195
+ cursor: pointer;
196
+ transition: padding 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
197
+ }
198
+ .ant-pro-sider-logo > a {
199
+ display: flex;
200
+ align-items: center;
201
+ justify-content: center;
202
+ min-height: 32px;
203
+ }
204
+ .ant-pro-sider-logo img {
205
+ display: inline-block;
206
+ height: 32px;
207
+ vertical-align: middle;
208
+ }
209
+ .ant-pro-sider-logo h1 {
210
+ display: inline-block;
211
+ height: 32px;
212
+ margin: 0 0 0 12px;
213
+ color: white;
214
+ font-weight: 600;
215
+ font-size: 18px;
216
+ line-height: 32px;
217
+ vertical-align: middle;
218
+ animation: pro-layout-title-hide 0.3s;
219
+ }
220
+ .ant-pro-sider-extra {
221
+ margin-bottom: 16px;
222
+ padding: 0 16px;
223
+ }
224
+ .ant-pro-sider-extra-no-logo {
225
+ margin-top: 16px;
226
+ }
227
+ .ant-pro-sider-menu {
228
+ position: relative;
229
+ z-index: 10;
230
+ min-height: 100%;
231
+ box-shadow: 2px 0 6px rgba(0, 21, 41, 0.35);
232
+ }
233
+ .ant-pro-sider .ant-layout-sider-children {
234
+ display: flex;
235
+ flex-direction: column;
236
+ height: 100%;
237
+ /* 滚动条滑块 */
238
+ }
239
+ .ant-pro-sider .ant-layout-sider-children ::-webkit-scrollbar {
240
+ width: 6px;
241
+ height: 6px;
242
+ }
243
+ .ant-pro-sider .ant-layout-sider-children ::-webkit-scrollbar-track {
244
+ background: rgba(255, 255, 255, 0.15);
245
+ border-radius: 3px;
246
+ box-shadow: inset 0 0 5px rgba(37, 37, 37, 0.05);
247
+ }
248
+ .ant-pro-sider .ant-layout-sider-children ::-webkit-scrollbar-thumb {
249
+ background: rgba(255, 255, 255, 0.2);
250
+ border-radius: 3px;
251
+ box-shadow: inset 0 0 5px rgba(255, 255, 255, 0.05);
252
+ }
253
+ .ant-pro-sider.ant-layout-sider-collapsed .ant-menu-inline-collapsed {
254
+ width: 48px;
255
+ }
256
+ .ant-pro-sider.ant-layout-sider-collapsed .ant-pro-sider-logo {
257
+ padding: 16px 8px;
258
+ }
259
+ .ant-pro-sider.ant-layout-sider.ant-pro-sider-fixed {
260
+ position: fixed;
261
+ top: 0;
262
+ left: 0;
263
+ z-index: 99;
264
+ height: 100%;
265
+ overflow: auto;
266
+ overflow-x: hidden;
267
+ box-shadow: 2px 0 8px 0 rgba(29, 35, 41, 0.05);
268
+ }
269
+ .ant-pro-sider.ant-layout-sider.ant-pro-sider-fixed > .ant-menu-root :not(.ant-pro-sider-link-menu) {
270
+ height: calc(100vh - 48px);
271
+ overflow-y: auto;
272
+ }
273
+ .ant-pro-sider-light {
274
+ background-color: #fff;
275
+ box-shadow: 2px 0 8px 0 rgba(29, 35, 41, 0.05);
276
+ }
277
+ .ant-pro-sider-light .ant-layout-sider-children {
278
+ /* 滚动条滑块 */
279
+ }
280
+ .ant-pro-sider-light .ant-layout-sider-children ::-webkit-scrollbar-track {
281
+ background: rgba(0, 0, 0, 0.06);
282
+ border-radius: 3px;
283
+ box-shadow: inset 0 0 5px rgba(0, 21, 41, 0.05);
284
+ }
285
+ .ant-pro-sider-light .ant-layout-sider-children ::-webkit-scrollbar-thumb {
286
+ background: rgba(0, 0, 0, 0.12);
287
+ border-radius: 3px;
288
+ box-shadow: inset 0 0 5px rgba(0, 21, 41, 0.05);
289
+ }
290
+ .ant-pro-sider-light .ant-pro-sider-logo h1 {
291
+ color: #1890ff;
292
+ }
293
+ .ant-pro-sider-light .ant-menu-light {
294
+ border-right-color: transparent;
295
+ }
296
+ .ant-pro-sider-light .ant-pro-sider-collapsed-button {
297
+ border-top: 1px solid #f0f0f0;
298
+ }
299
+ .ant-pro-sider-icon {
300
+ width: 14px;
301
+ vertical-align: baseline;
302
+ }
303
+ .ant-pro-sider-links {
304
+ width: 100%;
305
+ }
306
+ .ant-pro-sider-links ul.ant-menu-root {
307
+ height: auto;
308
+ }
309
+ .ant-pro-sider-collapsed-button {
310
+ border-top: 1px solid rgba(0, 0, 0, 0.25);
311
+ }
312
+ .ant-pro-sider-collapsed-button .anticon {
313
+ font-size: 16px;
314
+ }
315
+ .ant-pro-sider .top-nav-menu li.ant-menu-item {
316
+ height: 100%;
317
+ line-height: 1;
318
+ }
319
+ .ant-pro-sider .drawer .drawer-content {
320
+ background: #001529;
321
+ }
322
+ .ant-pro-menu-item .anticon + .ant-pro-menu-item-title {
323
+ margin-left: 10px;
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
+ }
337
+ @keyframes pro-layout-title-hide {
338
+ 0% {
339
+ display: none;
340
+ opacity: 0;
341
+ }
342
+ 80% {
343
+ display: none;
344
+ opacity: 0;
345
+ }
346
+ 100% {
347
+ display: unset;
348
+ opacity: 1;
349
+ }
350
+ }
351
+ .ant-pro-global-header {
352
+ position: relative;
353
+ display: flex;
354
+ align-items: center;
355
+ height: 100%;
356
+ padding: 0 16px;
357
+ background: #fff;
358
+ box-shadow: 0 1px 4px rgba(0, 21, 41, 0.08);
359
+ }
360
+ .ant-pro-global-header > * {
361
+ height: 100%;
362
+ }
363
+ .ant-pro-global-header-collapsed-button {
364
+ display: flex;
365
+ align-items: center;
366
+ margin-left: 16px;
367
+ font-size: 20px;
368
+ }
369
+ .ant-pro-global-header-layout-mix {
370
+ background-color: #001529;
371
+ }
372
+ .ant-pro-global-header-layout-mix .ant-pro-global-header-logo h1 {
373
+ color: #fff;
374
+ }
375
+ .ant-pro-global-header-layout-mix .anticon {
376
+ color: #fff;
377
+ }
378
+ .ant-pro-global-header-logo {
379
+ position: relative;
380
+ overflow: hidden;
381
+ }
382
+ .ant-pro-global-header-logo a {
383
+ display: flex;
384
+ align-items: center;
385
+ height: 100%;
386
+ }
387
+ .ant-pro-global-header-logo a img {
388
+ height: 28px;
389
+ }
390
+ .ant-pro-global-header-logo a h1 {
391
+ height: 32px;
392
+ margin: 0 0 0 8px;
393
+ margin: 0 0 0 12px;
394
+ color: #1890ff;
395
+ font-weight: 600;
396
+ font-size: 18px;
397
+ line-height: 32px;
398
+ }
399
+ .ant-pro-global-header-menu .anticon {
400
+ margin-right: 8px;
401
+ }
402
+ .ant-pro-global-header-menu .ant-dropdown-menu-item {
403
+ min-width: 160px;
404
+ }
405
+ .ant-pro-global-header .dark {
406
+ height: 48px;
407
+ }
408
+ .ant-pro-global-header .dark .action {
409
+ color: rgba(255, 255, 255, 0.85);
410
+ }
411
+ .ant-pro-global-header .dark .action > i {
412
+ color: rgba(255, 255, 255, 0.85);
413
+ }
414
+ .ant-pro-global-header .dark .action:hover,
415
+ .ant-pro-global-header .dark .action.opened {
416
+ background: #1890ff;
417
+ }
418
+ .ant-pro-global-header .dark .action .ant-badge {
419
+ color: rgba(255, 255, 255, 0.85);
420
+ }
421
+ .ant-pro-top-nav-header {
422
+ position: relative;
423
+ width: 100%;
424
+ height: 100%;
425
+ box-shadow: 0 1px 4px 0 rgba(0, 21, 41, 0.12);
426
+ transition: background 0.3s, width 0.2s;
427
+ }
428
+ .ant-pro-top-nav-header .ant-menu {
429
+ background: transparent;
430
+ }
431
+ .ant-pro-top-nav-header.light {
432
+ background-color: #fff;
433
+ }
434
+ .ant-pro-top-nav-header.light .ant-pro-top-nav-header-logo h1 {
435
+ color: rgba(0, 0, 0, 0.85);
436
+ }
437
+ .ant-pro-top-nav-header.light .anticon {
438
+ color: inherit;
439
+ }
440
+ .ant-pro-top-nav-header-main {
441
+ display: flex;
442
+ height: 100%;
443
+ padding-left: 16px;
444
+ }
445
+ .ant-pro-top-nav-header-main-left {
446
+ display: flex;
447
+ min-width: 192px;
448
+ }
449
+ .ant-pro-top-nav-header .anticon {
450
+ color: #fff;
451
+ }
452
+ .ant-pro-top-nav-header-logo {
453
+ position: relative;
454
+ min-width: 165px;
455
+ height: 100%;
456
+ overflow: hidden;
457
+ }
458
+ .ant-pro-top-nav-header-logo img {
459
+ display: inline-block;
460
+ height: 32px;
461
+ vertical-align: middle;
462
+ }
463
+ .ant-pro-top-nav-header-logo h1 {
464
+ display: inline-block;
465
+ margin: 0 0 0 12px;
466
+ color: #fff;
467
+ font-weight: 600;
468
+ font-size: 16px;
469
+ vertical-align: top;
470
+ }
471
+ .ant-pro-top-nav-header-menu {
472
+ min-width: 0;
473
+ }
474
+ .ant-pro-top-nav-header-menu .ant-menu.ant-menu-horizontal {
475
+ height: 100%;
476
+ border: none;
477
+ }
478
+ .ant-pro-top-nav-header-menu .ant-menu.ant-menu-horizontal .ant-menu-item {
479
+ height: 100%;
480
+ }
481
+ .ant-pro-top-nav-header-menu .ant-menu.ant-menu-horizontal .ant-menu-item .ant-badge {
482
+ color: unset;
483
+ }
484
+ .ant-pro-menu-popup .ant-badge {
485
+ color: unset;
486
+ }
487
+ .jtable-body-spin {
488
+ min-height: 100%;
489
+ width: 100%;
490
+ padding: 16px 24px 24px;
491
+ background-color: #fff;
492
+ }
493
+ .jtable-body-spin .ant-spin-nested-loading {
494
+ height: 100%;
495
+ }
496
+ .jtable-body-spin .ant-spin-nested-loading .ant-spin-container {
497
+ height: 100%;
498
+ }
499
+ .jtable-body-spin .jtable-body {
500
+ width: 100%;
501
+ box-sizing: border-box;
502
+ height: 100%;
503
+ display: flex;
504
+ flex-direction: column;
505
+ }
506
+ .jtable-body-spin .jtable-body .jtable-body-header {
507
+ display: flex;
508
+ justify-content: space-between;
509
+ align-items: center;
510
+ }
511
+ .jtable-body-spin .jtable-body .jtable-body-header .jtable-body-header-right {
512
+ display: flex;
513
+ gap: 8px;
514
+ align-items: center;
515
+ }
516
+ .jtable-body-spin .jtable-body .jtable-body-header .jtable-body-header-right .jtable-body-header-right-button .right-button-icon {
517
+ font-size: 16px;
518
+ color: #d9d9d9;
519
+ }
520
+ .jtable-body-spin .jtable-body .jtable-body-header .jtable-body-header-right .jtable-body-header-right-button .ant-radio-button-wrapper {
521
+ padding: 0 8px;
522
+ }
523
+ .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 {
524
+ color: #1890ff;
525
+ }
526
+ .jtable-body-spin .jtable-body .jtable-content {
527
+ flex: 1;
528
+ padding: 16px 0;
529
+ }
530
+ .jtable-body-spin .jtable-body .jtable-content .jtable-alert {
531
+ margin-bottom: 16px;
532
+ }
533
+ .jtable-body-spin .jtable-body .jtable-content .jtable-card .jtable-card-items {
534
+ display: grid;
535
+ grid-gap: 26px;
536
+ }
537
+ .jtable-body-spin .jtable-body .jtable-content .jtable-card .jtable-card-items .jtable-card-item {
538
+ display: flex;
539
+ min-width: 0;
540
+ }
541
+ .jtable-body-spin .jtable-body .jtable-pagination {
542
+ width: 100%;
543
+ display: flex;
544
+ justify-content: flex-end;
545
+ }
546
+ .jtable-body-spin .jtable-body .j-table-empty {
547
+ display: flex;
548
+ justify-content: center;
549
+ align-items: center;
550
+ margin: 10% 0;
551
+ }
552
+ .JSearch-warp {
553
+ padding: 24px;
554
+ background-color: #fff;
555
+ margin-bottom: 24px;
556
+ }
557
+ .JSearch-warp .pack-up .JSearch-items {
558
+ flex: 1 1 auto;
559
+ }
560
+ .JSearch-warp .pack-up .JSearch-items .left {
561
+ min-width: 380px;
562
+ max-width: 580px;
563
+ }
564
+ .JSearch-warp.senior > .JSearch-content {
565
+ display: flex;
566
+ }
567
+ .JSearch-warp.senior > .JSearch-content .JSearch-footer {
568
+ display: flex;
569
+ gap: 64px;
570
+ position: relative;
571
+ }
572
+ .JSearch-warp.senior > .JSearch-content .JSearch-footer .more-btn .more-text {
573
+ padding-right: 24px;
574
+ }
575
+ .JSearch-warp.senior > .JSearch-content .JSearch-footer .more-btn .more-icon {
576
+ transition: transform 0.3s;
577
+ transform: rotateZ(90deg);
578
+ font-size: 14px;
579
+ }
580
+ .JSearch-warp.senior > .JSearch-content .JSearch-footer .more-btn .more-icon.more-up {
581
+ transform: rotateZ(-90deg);
582
+ }
583
+ .JSearch-warp.senior > .JSearch-content .JSearch-footer.expand {
584
+ margin-top: 16px;
585
+ width: 100%;
586
+ justify-content: space-between;
587
+ }
588
+ .JSearch-warp.senior > .JSearch-content .JSearch-footer .JSearch-footer--btns {
589
+ display: flex;
590
+ gap: 12px;
591
+ }
592
+ .JSearch-warp.senior > .JSearch-content .items-expand {
593
+ display: flex;
594
+ gap: 16px;
595
+ }
596
+ .JSearch-warp.senior > .JSearch-content .items-expand .left,
597
+ .JSearch-warp.senior > .JSearch-content .items-expand .right {
598
+ min-width: 0;
599
+ flex: 1 1 0;
600
+ }
601
+ .JSearch-warp.senior > .JSearch-content .items-expand .left-items,
602
+ .JSearch-warp.senior > .JSearch-content .items-expand .right-items {
603
+ display: flex;
604
+ gap: 16px;
605
+ flex-direction: column;
606
+ }
607
+ .JSearch-warp.senior > .JSearch-content .items-expand .center {
608
+ display: flex;
609
+ flex-direction: column;
610
+ justify-content: center;
611
+ }
612
+ .JSearch-warp.senior > .JSearch-content .items-expand.vertical {
613
+ flex-direction: column;
614
+ }
615
+ .JSearch-warp.senior > .JSearch-content .items-expand.vertical .center {
616
+ flex-direction: row;
617
+ justify-content: center;
618
+ }
619
+ .JSearch-warp.senior > .JSearch-content.senior-expand {
620
+ flex-direction: column;
621
+ }
622
+ .JSearch-warp.senior > .JSearch-content.small {
623
+ gap: 12px;
624
+ }
625
+ .JSearch-warp.senior > .JSearch-content.small .JSearch-footer {
626
+ gap: 4px;
627
+ }
628
+ .JSearch-warp .JSearch-content.simple .JSearch-footer--btns {
629
+ display: flex;
630
+ gap: 12px;
631
+ }
632
+ .JSearch-warp .JSearch-content.simple .JSearch-item {
633
+ gap: 8px;
634
+ }
635
+ .JSearch-warp .JSearch-content.simple .JSearch-item .JSearch-item--label {
636
+ text-align: right;
637
+ }
638
+ .JSearch-warp .no-radius {
639
+ border-radius: 0;
640
+ border-color: #f1f1f1;
641
+ }
642
+ .JSearch-warp .search-history-warp {
643
+ position: relative;
644
+ }
645
+ .JSearch-warp .search-history-warp .search-history-button {
646
+ padding-right: 32px;
647
+ }
648
+ .JSearch-warp .search-history-warp .search-history-button-icon {
649
+ position: absolute;
650
+ width: 24px;
651
+ height: 18px;
652
+ right: 6px;
653
+ top: 8px;
654
+ color: #fff;
655
+ line-height: 18px;
656
+ text-align: center;
657
+ font-weight: bold;
658
+ }
659
+ .JSearch-warp .search-history-warp .search-history-button-icon > span {
660
+ font-size: 14px;
661
+ }
662
+ .search-history-empty {
663
+ padding: 12px 12px 6px 12px;
664
+ background-color: #fff;
665
+ }
666
+ .search-history-items {
667
+ width: 120px;
668
+ max-height: 300px;
669
+ overflow-y: auto;
670
+ }
671
+ .search-history-items .search-history-item {
672
+ display: flex;
673
+ padding: 4px 0px 4px 4px;
674
+ align-items: center;
675
+ gap: 4px;
676
+ }
677
+ .search-history-items .search-history-item:hover {
678
+ background-color: #f1f1f1;
679
+ }
680
+ .search-history-items .search-history-item .history-item--title {
681
+ width: calc(100% - 30px);
682
+ cursor: pointer;
683
+ }
684
+ .search-history-items .search-history-item .delete {
685
+ padding: 0 6px;
686
+ flex: 0 0 28px;
687
+ }
688
+ .search-history-list-pop .ant-popover-inner-content {
689
+ padding: 0;
690
+ }
691
+ .JSearch-item {
692
+ display: flex;
693
+ gap: 16px;
694
+ align-items: center;
695
+ }
696
+ .JSearch-item .JSearch-item--type {
697
+ width: 90px;
698
+ min-width: 0;
699
+ }
700
+ .JSearch-item .JSearch-item--type > span {
701
+ line-height: 34px;
702
+ font-weight: bold;
703
+ }
704
+ .JSearch-item .JSearch-item--column {
705
+ width: 130px;
706
+ min-width: 0;
707
+ }
708
+ .JSearch-item .JSearch-item--termType {
709
+ width: 110px;
710
+ min-width: 0;
711
+ }
712
+ .JSearch-item .JSearch-item--label {
713
+ min-width: 40px;
714
+ }
715
+ .JSearch-item .JSearch-item--value {
716
+ display: flex;
717
+ width: 0;
718
+ flex-grow: 1;
719
+ }
@@ -0,0 +1,6 @@
1
+ @import '../Ellipsis/style/index.less';
2
+ @import '../CheckButton/style/index.less';
3
+ @import '../ProLayout/style/style.less';
4
+ @import '../ProTable/style/index.less';
5
+ @import '../Search/style/Search.less';
6
+ @import '../Search/style/Item.less';
@@ -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 */