@zat-design/sisyphus-react 3.4.1 → 3.4.2-beta.10

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 (152) hide show
  1. package/dist/index.esm.css +246 -209
  2. package/es/ProConfigProvider/index.js +8 -1
  3. package/es/ProEditLabel/style/index.less +1 -1
  4. package/es/ProEditTable/components/RenderField/index.js +13 -15
  5. package/es/ProEditTable/index.js +3 -3
  6. package/es/ProEditTable/propsType.d.ts +1 -1
  7. package/es/ProEditTable/style/index.less +1 -1
  8. package/es/ProEditTable/utils/index.js +42 -26
  9. package/es/ProEditTable/utils/tools.js +3 -1
  10. package/es/ProEnum/style/index.less +6 -5
  11. package/es/ProForm/components/base/DatePicker/index.js +2 -2
  12. package/es/ProForm/components/base/InputNumber/index.js +3 -0
  13. package/es/ProForm/components/combination/Group/index.js +17 -3
  14. package/es/ProForm/components/combination/Group/propsType.d.ts +4 -0
  15. package/es/ProForm/components/combination/Group/style/index.less +7 -4
  16. package/es/ProForm/components/combination/Group/utils.d.ts +2 -0
  17. package/es/ProForm/components/combination/Group/utils.js +10 -0
  18. package/es/ProForm/components/combination/ProTimeLimit/index.js +8 -2
  19. package/es/ProForm/components/index.d.ts +0 -1
  20. package/es/ProForm/components/index.js +1 -1
  21. package/es/ProForm/components/render/ConfirmWrapper.js +15 -23
  22. package/es/ProForm/components/render/Render.js +26 -18
  23. package/es/ProForm/components/render/RenderFields.d.ts +2 -1
  24. package/es/ProForm/components/render/RenderFields.js +4 -2
  25. package/es/ProForm/components/render/propsType.d.ts +1 -4
  26. package/es/ProForm/index.js +8 -6
  27. package/es/ProForm/propsType.d.ts +3 -1
  28. package/es/ProForm/utils/{contrastOriginal.d.ts → diffOriginal.d.ts} +2 -1
  29. package/es/ProForm/utils/diffOriginal.js +61 -0
  30. package/es/ProForm/utils/index.d.ts +3 -1
  31. package/es/ProForm/utils/index.js +15 -14
  32. package/es/ProForm/utils/transformValue.js +2 -2
  33. package/es/ProForm/utils/useChanged.js +4 -3
  34. package/es/ProForm/utils/useListChanged.d.ts +1 -1
  35. package/es/ProForm/utils/useListChanged.js +4 -3
  36. package/es/ProIcon/config/index.d.ts +4 -0
  37. package/es/ProIcon/config/index.js +199 -0
  38. package/es/ProIcon/index.js +77 -31
  39. package/es/ProIcon/propsTypes.d.ts +23 -1
  40. package/es/ProIcon/symbolIcon.js +1 -1
  41. package/es/ProLayout/components/Layout/Menu/OpenMenu/style/index.less +58 -55
  42. package/es/ProLayout/components/Layout/Menu/SideMenu/style/index.less +25 -20
  43. package/es/ProLayout/components/Layout/Menu/style/index.less +52 -56
  44. package/es/ProLayout/components/ProCollapse/style/index.less +17 -9
  45. package/es/ProLayout/components/ProFooter/index.js +1 -1
  46. package/es/ProLayout/components/ProFooter/style/index.less +1 -1
  47. package/es/ProLayout/components/ProHeader/style/index.less +4 -3
  48. package/es/ProLayout/style/index.less +173 -87
  49. package/es/ProTable/components/RenderColumn/index.d.ts +1 -1
  50. package/es/ProTable/components/RenderColumn/index.js +3 -3
  51. package/es/ProTable/propsType.d.ts +1 -1
  52. package/es/ProTable/style/index.less +2 -2
  53. package/es/ProTable/utils.js +9 -9
  54. package/es/ProTabs/style/index.less +3 -1
  55. package/es/ProThemeTools/component/PrdTools/index.d.ts +1 -1
  56. package/es/ProThemeTools/component/PrdTools/index.js +2 -2
  57. package/es/ProThemeTools/component/PrdTools/style/index.less +1 -1
  58. package/es/ProThemeTools/index.js +21 -28
  59. package/es/ProThemeTools/propsType.d.ts +1 -1
  60. package/es/ProThemeTools/style/index.less +25 -8
  61. package/es/{ProTreeSelect → ProTree/components/ProTreeSelect}/index.js +2 -2
  62. package/es/{ProTreeSelect → ProTree/components/ProTreeSelect}/propsType.d.ts +1 -1
  63. package/es/ProTree/index.js +1 -1
  64. package/es/ProTreeModal/style/index.less +10 -2
  65. package/es/ProUpload/style/fileItem.less +2 -2
  66. package/es/ProUpload/style/index.less +2 -2
  67. package/es/assets/setting.svg +14 -0
  68. package/es/style/components.less +0 -1
  69. package/es/style/theme/antd.less +0 -1
  70. package/es/style/theme/index.less +2 -2
  71. package/es/style/theme/tokens.less +2 -2
  72. package/es/tokens.js +2 -2
  73. package/lib/ProConfigProvider/index.js +8 -1
  74. package/lib/ProEditLabel/style/index.less +1 -1
  75. package/lib/ProEditTable/components/RenderField/index.js +12 -14
  76. package/lib/ProEditTable/index.js +3 -3
  77. package/lib/ProEditTable/propsType.d.ts +1 -1
  78. package/lib/ProEditTable/style/index.less +1 -1
  79. package/lib/ProEditTable/utils/index.js +42 -26
  80. package/lib/ProEditTable/utils/tools.js +3 -1
  81. package/lib/ProEnum/style/index.less +6 -5
  82. package/lib/ProForm/components/base/DatePicker/index.js +1 -1
  83. package/lib/ProForm/components/base/InputNumber/index.js +3 -0
  84. package/lib/ProForm/components/combination/Group/index.js +15 -1
  85. package/lib/ProForm/components/combination/Group/propsType.d.ts +4 -0
  86. package/lib/ProForm/components/combination/Group/style/index.less +7 -4
  87. package/lib/ProForm/components/combination/Group/utils.d.ts +2 -0
  88. package/lib/ProForm/components/combination/Group/utils.js +11 -1
  89. package/lib/ProForm/components/combination/ProTimeLimit/index.js +7 -1
  90. package/lib/ProForm/components/index.d.ts +0 -1
  91. package/lib/ProForm/components/index.js +0 -7
  92. package/lib/ProForm/components/render/ConfirmWrapper.js +15 -23
  93. package/lib/ProForm/components/render/Render.js +25 -17
  94. package/lib/ProForm/components/render/RenderFields.d.ts +2 -1
  95. package/lib/ProForm/components/render/RenderFields.js +4 -2
  96. package/lib/ProForm/components/render/propsType.d.ts +1 -4
  97. package/lib/ProForm/index.js +7 -5
  98. package/lib/ProForm/propsType.d.ts +3 -1
  99. package/lib/ProForm/utils/{contrastOriginal.d.ts → diffOriginal.d.ts} +2 -1
  100. package/lib/ProForm/utils/diffOriginal.js +68 -0
  101. package/lib/ProForm/utils/index.d.ts +3 -1
  102. package/lib/ProForm/utils/index.js +16 -15
  103. package/lib/ProForm/utils/transformValue.js +1 -1
  104. package/lib/ProForm/utils/useChanged.js +4 -3
  105. package/lib/ProForm/utils/useListChanged.d.ts +1 -1
  106. package/lib/ProForm/utils/useListChanged.js +4 -3
  107. package/lib/ProIcon/config/index.d.ts +4 -0
  108. package/lib/ProIcon/config/index.js +205 -0
  109. package/lib/ProIcon/index.js +77 -31
  110. package/lib/ProIcon/propsTypes.d.ts +23 -1
  111. package/lib/ProIcon/symbolIcon.js +1 -1
  112. package/lib/ProLayout/components/Layout/Menu/OpenMenu/style/index.less +58 -55
  113. package/lib/ProLayout/components/Layout/Menu/SideMenu/style/index.less +25 -20
  114. package/lib/ProLayout/components/Layout/Menu/style/index.less +52 -56
  115. package/lib/ProLayout/components/ProCollapse/style/index.less +17 -9
  116. package/lib/ProLayout/components/ProFooter/index.js +1 -1
  117. package/lib/ProLayout/components/ProFooter/style/index.less +1 -1
  118. package/lib/ProLayout/components/ProHeader/style/index.less +4 -3
  119. package/lib/ProLayout/style/index.less +173 -87
  120. package/lib/ProTable/components/RenderColumn/index.d.ts +1 -1
  121. package/lib/ProTable/components/RenderColumn/index.js +3 -3
  122. package/lib/ProTable/propsType.d.ts +1 -1
  123. package/lib/ProTable/style/index.less +2 -2
  124. package/lib/ProTable/utils.js +9 -9
  125. package/lib/ProTabs/style/index.less +3 -1
  126. package/lib/ProThemeTools/component/PrdTools/index.d.ts +1 -1
  127. package/lib/ProThemeTools/component/PrdTools/index.js +2 -2
  128. package/lib/ProThemeTools/component/PrdTools/style/index.less +1 -1
  129. package/lib/ProThemeTools/index.js +19 -27
  130. package/lib/ProThemeTools/propsType.d.ts +1 -1
  131. package/lib/ProThemeTools/style/index.less +25 -8
  132. package/lib/{ProTreeSelect → ProTree/components/ProTreeSelect}/index.js +2 -2
  133. package/lib/{ProTreeSelect → ProTree/components/ProTreeSelect}/propsType.d.ts +1 -1
  134. package/lib/ProTree/index.js +1 -1
  135. package/lib/ProTreeModal/style/index.less +10 -2
  136. package/lib/ProUpload/style/fileItem.less +2 -2
  137. package/lib/ProUpload/style/index.less +2 -2
  138. package/lib/assets/setting.svg +14 -0
  139. package/lib/style/components.less +0 -1
  140. package/lib/style/theme/antd.less +0 -1
  141. package/lib/style/theme/index.less +2 -2
  142. package/lib/style/theme/tokens.less +2 -2
  143. package/lib/tokens.js +2 -2
  144. package/package.json +1 -1
  145. package/es/ProForm/utils/contrastOriginal.js +0 -24
  146. package/lib/ProForm/utils/contrastOriginal.js +0 -30
  147. /package/es/{ProTreeSelect → ProTree/components/ProTreeSelect}/index.d.ts +0 -0
  148. /package/es/{ProTreeSelect → ProTree/components/ProTreeSelect}/propsType.js +0 -0
  149. /package/es/{ProTreeSelect → ProTree/components/ProTreeSelect}/style/index.less +0 -0
  150. /package/lib/{ProTreeSelect → ProTree/components/ProTreeSelect}/index.d.ts +0 -0
  151. /package/lib/{ProTreeSelect → ProTree/components/ProTreeSelect}/propsType.js +0 -0
  152. /package/lib/{ProTreeSelect → ProTree/components/ProTreeSelect}/style/index.less +0 -0
@@ -273,7 +273,7 @@
273
273
  padding-left: 16px !important;
274
274
  }
275
275
  .pro-layout-open-menu .ant-menu-root > .ant-menu-submenu .ant-menu-sub {
276
- background: #1A202D;
276
+ background: #1a202d;
277
277
  }
278
278
  .pro-layout-open-menu .ant-menu-root > .ant-menu-submenu > .ant-menu-sub > .ant-menu-submenu > .ant-menu-submenu-title,
279
279
  .pro-layout-open-menu .ant-menu-root > .ant-menu-submenu > .ant-menu-item-only-child,
@@ -281,15 +281,15 @@
281
281
  padding-left: 16px !important;
282
282
  }
283
283
  .pro-layout-open-menu .ant-menu-root > .ant-menu-item-only-child {
284
+ height: auto;
284
285
  min-height: 48px;
286
+ margin: 0;
285
287
  padding-top: 12px;
286
288
  padding-bottom: calc(var(--zaui-space-size-md, 16px) * var(--zaui-size, 1) - var(--zaui-space-size-xs, 4px) * var(--zaui-size, 1));
287
- margin: 0;
288
- height: auto;
289
289
  }
290
290
  .pro-layout-open-menu .ant-menu-root > .ant-menu-item-only-child h2 {
291
- line-height: initial !important;
292
291
  height: auto !important;
292
+ line-height: initial !important;
293
293
  white-space: pre-wrap;
294
294
  }
295
295
  .pro-layout-open-menu .ant-menu-root .ant-menu-item {
@@ -310,8 +310,8 @@
310
310
  color: #fff;
311
311
  }
312
312
  .pro-layout-open-menu .ant-menu.ant-menu-dark {
313
- background: #1A202D;
314
313
  overflow-x: hidden;
314
+ background: #1a202d;
315
315
  }
316
316
  .pro-layout-open-menu .ant-menu.ant-menu-dark .ant-menu-item-only-child:hover {
317
317
  background: var(--ant-primary-8, #003eb3);
@@ -327,12 +327,12 @@
327
327
  }
328
328
  .pro-layout-open-menu .ant-menu-sub.ant-menu-inline > .ant-menu-item,
329
329
  .pro-layout-open-menu .ant-menu-submenu-title {
330
- white-space: pre-wrap;
331
- line-height: initial !important;
332
330
  height: auto !important;
331
+ min-height: 48px;
333
332
  margin: 0;
334
333
  padding: 12px 0;
335
- min-height: 48px;
334
+ line-height: initial !important;
335
+ white-space: pre-wrap;
336
336
  }
337
337
  .pro-layout-open-menu .ant-menu-title-content div {
338
338
  display: -webkit-box;
@@ -355,62 +355,64 @@
355
355
  flex: 0 0 20px;
356
356
  width: 20px;
357
357
  height: 20px;
358
- color: #CACACA;
358
+ color: #cacaca;
359
359
  }
360
360
  .pro-layout-open-menu .ant-menu-title-content div h2 {
361
+ display: inline-block;
361
362
  -webkit-box-flex: 1;
362
363
  -webkit-flex-grow: 1;
363
364
  -ms-flex-positive: 1;
364
365
  flex-grow: 1;
365
366
  margin-bottom: 0;
366
- opacity: 1;
367
- -webkit-transition: opacity 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), margin 0.3s, color 0.3s;
368
- transition: opacity 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), margin 0.3s, color 0.3s;
369
- display: inline-block;
370
367
  padding-left: 12px;
371
- color: #CACACA;
368
+ color: #cacaca;
372
369
  font-weight: 400;
373
370
  font-size: var(--zaui-font-size-md, 14px);
371
+ opacity: 1;
372
+ -webkit-transition: opacity 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), margin 0.3s, color 0.3s;
373
+ transition: opacity 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), margin 0.3s, color 0.3s;
374
374
  }
375
375
  .pro-layout-open-menu .anticon-caret-down {
376
- color: #CACACA;
376
+ top: auto;
377
+ color: #cacaca;
377
378
  -webkit-transform: rotateZ(0deg);
378
379
  transform: rotateZ(0deg);
379
- top: auto;
380
380
  -webkit-transition: all 0.1s ease-in;
381
381
  transition: all 0.1s ease-in;
382
382
  }
383
383
  .pro-layout-open-menu .ant-menu-submenu-open .anticon-caret-down {
384
+ color: #fff;
384
385
  -webkit-transform: rotateZ(180deg);
385
386
  transform: rotateZ(180deg);
386
- color: #fff;
387
387
  }
388
388
  .pro-layout-open-menu .ant-menu-submenu-open .ant-menu-submenu-inline .anticon-caret-down {
389
+ color: #cacaca;
389
390
  -webkit-transform: rotateZ(0deg);
390
391
  transform: rotateZ(0deg);
391
- color: #CACACA;
392
392
  }
393
393
  .pro-layout-open-menu .ant-menu-submenu-open .ant-menu-submenu-inline.ant-menu-submenu-open .anticon-caret-down {
394
+ color: #fff;
394
395
  -webkit-transform: rotateZ(180deg);
395
396
  transform: rotateZ(180deg);
396
- color: #fff;
397
397
  }
398
398
  .pro-layout-open-menu .ant-menu-submenu:hover > .ant-menu-submenu-title > .ant-menu-submenu-expand-icon {
399
399
  color: #fff;
400
400
  }
401
+ .pro-layout-open-menu .ant-menu-item-selected .ant-menu-title-content h2 {
402
+ font-weight: bold !important;
403
+ }
401
404
  .pro-layout-open-menu .ant-menu-submenu-selected > .ant-menu-submenu-title .ant-menu-title-content div .pro-layout-icon {
402
405
  color: #fff;
403
406
  }
404
407
  .pro-layout-open-menu .ant-menu-submenu-selected > .ant-menu-submenu-title .ant-menu-title-content div h2 {
405
- font-weight: bold;
406
408
  color: #fff;
407
409
  }
408
410
  .pro-layout-open-menu .ant-menu-submenu-selected .ant-menu-item-only-child .ant-menu-title-content div .pro-layout-icon {
409
- color: #CACACA;
411
+ color: #cacaca;
410
412
  }
411
413
  .pro-layout-open-menu .ant-menu-submenu-selected .ant-menu-item-only-child .ant-menu-title-content div h2 {
414
+ color: #cacaca;
412
415
  font-weight: 400;
413
- color: #CACACA;
414
416
  }
415
417
  .pro-layout-sider-menu {
416
418
  width: 220px;
@@ -442,11 +444,16 @@
442
444
  overflow-x: hidden;
443
445
  overflow-y: auto;
444
446
  }
447
+ .pro-layout-sider-menu .pro-layout-open-menu.pro-layout-sider-menu-list .ant-menu .ant-menu-item-only-child .ant-menu-title-content .pro-layout-open-menu-lv1 h2 {
448
+ padding-right: 0;
449
+ }
445
450
  .pro-layout-sider-menu .pro-layout-open-menu.pro-layout-sider-menu-list .ant-menu .ant-menu-title-content div h2 {
446
- color: var(--zaui-text);
447
451
  padding: 0;
452
+ padding-right: 12px;
453
+ color: var(--zaui-text);
448
454
  }
449
455
  .pro-layout-sider-menu .pro-layout-open-menu.pro-layout-sider-menu-list .ant-menu .ant-menu-title-content .pro-layout-open-menu-lv1 h2 {
456
+ padding-right: 26px;
450
457
  color: var(--zaui-text);
451
458
  font-weight: 500;
452
459
  }
@@ -460,8 +467,8 @@
460
467
  margin-left: var(--zaui-space-size-md, 16px);
461
468
  }
462
469
  .pro-layout-sider-menu .pro-layout-open-menu.pro-layout-sider-menu-list .ant-menu .pro-layout-icon {
463
- fill: currentColor;
464
470
  color: var(--zaui-text, #343434) !important;
471
+ fill: currentColor;
465
472
  }
466
473
  .pro-layout-sider-menu .pro-layout-open-menu.pro-layout-sider-menu-list .ant-menu.ant-menu-sub {
467
474
  overflow: hidden;
@@ -469,8 +476,8 @@
469
476
  }
470
477
  .pro-layout-sider-menu .pro-layout-open-menu.pro-layout-sider-menu-list .ant-menu .ant-menu-submenu-title:hover,
471
478
  .pro-layout-sider-menu .pro-layout-open-menu.pro-layout-sider-menu-list .ant-menu .ant-menu-item:hover {
472
- background-color: #f2f2f2;
473
479
  color: #fff;
480
+ background-color: #f2f2f2;
474
481
  }
475
482
  .pro-layout-sider-menu .pro-layout-open-menu.pro-layout-sider-menu-list .ant-menu .ant-menu-item {
476
483
  margin: 0;
@@ -481,9 +488,9 @@
481
488
  .pro-layout-sider-menu .pro-layout-open-menu.pro-layout-sider-menu-list .ant-menu .ant-menu-submenu-title,
482
489
  .pro-layout-sider-menu .pro-layout-open-menu.pro-layout-sider-menu-list .ant-menu.ant-menu-root > .ant-menu-item-only-child,
483
490
  .pro-layout-sider-menu .pro-layout-open-menu.pro-layout-sider-menu-list .ant-menu.ant-menu-sub.ant-menu-inline > .ant-menu-item {
491
+ min-height: 40px;
484
492
  padding-top: 10px;
485
493
  padding-bottom: 10px;
486
- min-height: 40px;
487
494
  }
488
495
  /** 侧边栏 + 内容区 */
489
496
  .pro-layout-row {
@@ -501,12 +508,12 @@
501
508
  .pro-layout-row .pro-layout-arrow {
502
509
  width: 10px;
503
510
  height: 10px;
511
+ margin-left: -5px;
504
512
  background-color: transparent;
505
513
  /* 模块背景为透明 */
506
514
  border-color: #fff;
507
515
  border-style: solid;
508
516
  border-width: 2px 2px 0 0;
509
- margin-left: -5px;
510
517
  -webkit-transform: rotate(45deg);
511
518
  transform: rotate(45deg);
512
519
  }
@@ -534,8 +541,8 @@
534
541
  display: inline-block;
535
542
  white-space: nowrap;
536
543
  opacity: 0;
537
- -webkit-transition: opacity 0.5s cubic-bezier(0.645, 0.045, 0.355, 1), color 0.5s;
538
- transition: opacity 0.5s cubic-bezier(0.645, 0.045, 0.355, 1), color 0.5s;
544
+ -webkit-transition: opacity 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), color 0.3s;
545
+ transition: opacity 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), color 0.3s;
539
546
  }
540
547
  .pro-layout-row.pro-layout-menu-collapsed .pro-layout-content {
541
548
  margin-left: 220px !important;
@@ -560,7 +567,7 @@
560
567
  position: fixed;
561
568
  top: 48px;
562
569
  left: 0;
563
- z-index: 1;
570
+ z-index: 99;
564
571
  width: 48px;
565
572
  height: 100vh;
566
573
  min-height: 100%;
@@ -575,10 +582,6 @@
575
582
  width: 220px;
576
583
  }
577
584
  .pro-layout-row .pro-layout-content {
578
- margin-left: 48px;
579
- padding: 0 var(--zaui-space-size-md, 16px);
580
- -webkit-transition: all 0.3s ease-in-out;
581
- transition: all 0.3s ease-in-out;
582
585
  z-index: 1;
583
586
  -webkit-box-flex: 1;
584
587
  -webkit-flex: auto;
@@ -586,6 +589,10 @@
586
589
  flex: auto;
587
590
  min-height: calc(100vh - 48px);
588
591
  margin-top: 48px;
592
+ margin-left: 48px;
593
+ padding: 0 var(--zaui-space-size-md, 16px);
594
+ -webkit-transition: all 0.3s ease-in-out;
595
+ transition: all 0.3s ease-in-out;
589
596
  }
590
597
  .pro-layout-row .pro-layout-menu.pro-layout-menu-open .pro-layout-menu-collapsed {
591
598
  left: 0;
@@ -614,9 +621,9 @@
614
621
  justify-content: center;
615
622
  width: 48px;
616
623
  height: 48px;
617
- -webkit-transition: all 0.25s ease;
618
- transition: all 0.25s ease;
619
624
  background: #292f3b;
625
+ -webkit-transition: all 0.3s ease;
626
+ transition: all 0.3s ease;
620
627
  }
621
628
  .pro-layout-row .pro-layout-menu .pro-layout-menu-collapsed:hover {
622
629
  background-color: rgba(185, 185, 189, 0.1);
@@ -668,12 +675,12 @@
668
675
  width: 12px;
669
676
  margin-right: 0;
670
677
  }
671
- .pro-collapse {
672
- background: #f6f8fc;
673
- }
674
678
  .pro-collapse.pro-collapse-no-title .ant-collapse-header {
675
679
  display: none !important;
676
680
  }
681
+ .pro-collapse.pro-collapse-no-title .pro-collapse-level2 .ant-collapse-header {
682
+ display: block !important;
683
+ }
677
684
  .pro-collapse.ant-collapse .pro-collapse-panel {
678
685
  margin-bottom: calc(var(--zaui-space-size-md, 16px) * var(--zaui-size, 1));
679
686
  }
@@ -691,14 +698,13 @@
691
698
  font-size: var(--zaui-font-size-lg, 16px);
692
699
  }
693
700
  .pro-collapse .ant-collapse-expand-icon {
694
- color: #c5c7cd;
701
+ color: #999;
695
702
  }
696
703
  .pro-collapse.ant-collapse-borderless .ant-collapse-item > .ant-collapse-content > .ant-collapse-content-box {
697
704
  padding: 0;
698
705
  }
699
706
  .pro-collapse .ant-collapse-content-box {
700
707
  padding: 0;
701
- background: var(--zaui-base-bg, #ffffff);
702
708
  }
703
709
  .pro-collapse .ant-collapse-content-box .pro-collapse-content {
704
710
  padding: var(--zaui-space-size-md, 16px);
@@ -707,9 +713,12 @@
707
713
  background: var(--zaui-base-bg, #ffffff);
708
714
  }
709
715
  .pro-collapse.pro-collapse-level2 {
710
- margin-bottom: 0;
716
+ margin-top: var(--zaui-space-size-md, 16px);
711
717
  background: var(--zaui-base-bg, #ffffff);
712
718
  }
719
+ .pro-collapse.pro-collapse-level2 .pro-collapse-panel {
720
+ margin-bottom: 0;
721
+ }
713
722
  .pro-collapse.pro-collapse-level2 .ant-collapse-header {
714
723
  padding: 0 !important;
715
724
  background: var(--zaui-base-bg, #ffffff);
@@ -726,7 +735,7 @@
726
735
  width: 4px;
727
736
  height: 14px;
728
737
  background: var(--zaui-brand);
729
- border-radius: var(--zaui-border-radius-card, 2px);
738
+ border-radius: var(--zaui-border-radius-card, 4px);
730
739
  -webkit-transform: translateY(-50%);
731
740
  transform: translateY(-50%);
732
741
  content: '';
@@ -739,7 +748,7 @@
739
748
  }
740
749
  .pro-collapse.pro-collapse-level2 .pro-collapse-level2-collapse .ant-collapse-header {
741
750
  padding: 0 8px 6px !important;
742
- border-bottom: 2px solid #dee0e3;
751
+ border-bottom: 1px solid #dee0e3;
743
752
  margin: 0 -8px;
744
753
  }
745
754
  .pro-collapse.pro-collapse-level2 .pro-collapse-level2-collapse .ant-collapse-header .ant-collapse-arrow {
@@ -768,6 +777,9 @@
768
777
  .pro-collapse .ant-collapse-extra .extra-info {
769
778
  margin-right: 24px;
770
779
  }
780
+ .pro-collapse.pro-collapse-list .ant-descriptions-view {
781
+ margin: 0 -8px;
782
+ }
771
783
  .pro-collapse.pro-collapse-list .ant-descriptions-row > th,
772
784
  .pro-collapse.pro-collapse-list .ant-descriptions-row > td {
773
785
  padding: var(--zaui-space-size-sm, 8px) 0;
@@ -775,7 +787,7 @@
775
787
  }
776
788
  .pro-collapse.pro-collapse-list .ant-descriptions-row > th.ant-descriptions-item,
777
789
  .pro-collapse.pro-collapse-list .ant-descriptions-row > td.ant-descriptions-item {
778
- padding-left: var(--zaui-space-size-md, 16px);
790
+ padding-left: 20px;
779
791
  }
780
792
  .pro-collapse.pro-collapse-list .ant-descriptions-row td:first-child {
781
793
  position: relative;
@@ -787,7 +799,7 @@
787
799
  width: 4px;
788
800
  height: 14px;
789
801
  background: var(--zaui-brand);
790
- border-radius: var(--zaui-border-radius-card, 2px);
802
+ border-radius: var(--zaui-border-radius-card, 4px);
791
803
  -webkit-transform: translateY(-50%);
792
804
  transform: translateY(-50%);
793
805
  content: '';
@@ -802,7 +814,7 @@
802
814
  position: fixed;
803
815
  right: 0;
804
816
  bottom: 0;
805
- z-index: 101;
817
+ z-index: 98;
806
818
  width: 100%;
807
819
  padding: calc(var(--zaui-space-size-md, 16px) * var(--zaui-size, 1)) var(--zaui-space-size-lg, 32px);
808
820
  background: var(--zaui-base-bg, #ffffff);
@@ -829,6 +841,8 @@
829
841
  .pro-header {
830
842
  padding: 16px 0 0 0 !important;
831
843
  background-color: var(--zaui-base-bg, #ffffff);
844
+ -webkit-box-shadow: 2px 3px 8px 0px rgba(0, 55, 93, 0.1);
845
+ box-shadow: 2px 3px 8px 0px rgba(0, 55, 93, 0.1);
832
846
  }
833
847
  .pro-header.pro-header-no-back.pro-header-has-describe .pro-header-top {
834
848
  padding-left: var(--zaui-space-size-md, 16px);
@@ -894,7 +908,7 @@
894
908
  line-height: 16px;
895
909
  white-space: pre;
896
910
  background: var(--ant-primary-1, #e6f4ff);
897
- border-radius: var(--zaui-border-radius-card, 2px);
911
+ border-radius: var(--zaui-border-radius-card, 4px);
898
912
  }
899
913
  .pro-header .pro-header-title {
900
914
  padding: 0 var(--zaui-space-size-md, 16px);
@@ -1011,7 +1025,7 @@
1011
1025
  font-style: initial;
1012
1026
  line-height: 24px;
1013
1027
  background: var(--ant-primary-1, #e6f4ff);
1014
- border-radius: var(--zaui-border-radius, 4px);
1028
+ border-radius: var(--zaui-border-radius, 8px);
1015
1029
  }
1016
1030
  .pro-header .pro-header-top .pro-header-left ul li.hidden {
1017
1031
  display: none;
@@ -1034,7 +1048,7 @@
1034
1048
  display: -webkit-flex;
1035
1049
  display: -ms-flexbox;
1036
1050
  display: flex;
1037
- background: #f7f9fc;
1051
+ background: #fafafa;
1038
1052
  border-top: 1px solid #f2f2f2;
1039
1053
  }
1040
1054
  .pro-header .pro-header-nav.pro-header-nav-open .pro-header-fold .pro-header-fold-bg {
@@ -1184,83 +1198,146 @@
1184
1198
  .pro-layout .pro-layout-menu-open .pro-layout-open-menu-lv1 h2 {
1185
1199
  font-weight: bold;
1186
1200
  }
1201
+ .pro-layout.pro-layout-light .pro-collapse {
1202
+ border-radius: var(--zaui-border-radius, 8px);
1203
+ }
1204
+ .pro-layout.pro-layout-light .pro-collapse.ant-collapse-borderless {
1205
+ background: #fff;
1206
+ }
1207
+ .pro-layout.pro-layout-light .pro-collapse.pro-collapse-no-title .pro-collapse-content {
1208
+ border-radius: var(--zaui-border-radius, 8px) !important;
1209
+ padding: var(--zaui-space-size-md, 16px);
1210
+ }
1211
+ .pro-layout.pro-layout-light .pro-collapse.pro-collapse-no-title .pro-header-no-describe {
1212
+ padding: 0 !important;
1213
+ }
1214
+ .pro-layout.pro-layout-light .pro-collapse .ant-collapse-item-active.pro-collapse-panel .ant-collapse-header {
1215
+ border-radius: var(--zaui-border-radius, 8px) var(--zaui-border-radius, 8px) 0 0 !important;
1216
+ }
1217
+ .pro-layout.pro-layout-light .pro-collapse .pro-collapse-content {
1218
+ border-radius: 0 0 var(--zaui-border-radius, 8px) var(--zaui-border-radius, 8px);
1219
+ padding: var(--zaui-space-size-md, 16px);
1220
+ }
1221
+ .pro-layout.pro-layout-light .pro-collapse .pro-collapse-content .pro-form {
1222
+ margin-bottom: 0;
1223
+ }
1224
+ .pro-layout.pro-layout-light .pro-collapse.pro-collapse-level2 .pro-collapse-panel .ant-collapse-header {
1225
+ background: #fff;
1226
+ }
1227
+ .pro-layout.pro-layout-light .pro-collapse.pro-collapse-level2 .pro-collapse-content {
1228
+ padding-bottom: var(--zaui-border-radius, 8px);
1229
+ }
1230
+ .pro-layout.pro-layout-light .pro-collapse .pro-collapse-panel .ant-collapse-header {
1231
+ border-radius: var(--zaui-border-radius, 8px) !important;
1232
+ background: #E4F2FE;
1233
+ }
1234
+ .pro-layout.pro-layout-light .pro-header {
1235
+ border-radius: 0 0 var(--zaui-border-radius, 8px) var(--zaui-border-radius, 8px);
1236
+ }
1237
+ .pro-layout.pro-layout-light .pro-header.pro-header-no-describe {
1238
+ padding: var(--zaui-space-size-md, 16px) !important;
1239
+ }
1240
+ .pro-layout.pro-layout-light .pro-header.pro-header-no-describe .pro-header-top {
1241
+ padding-bottom: 0;
1242
+ }
1243
+ .pro-layout.pro-layout-light .pro-header.pro-header-has-describe .pro-header-nav-open {
1244
+ border-radius: 0 0 var(--zaui-border-radius, 8px) var(--zaui-border-radius, 8px);
1245
+ }
1246
+ .pro-layout.pro-layout-light .pro-layout-content {
1247
+ padding: 0 var(--zaui-space-size-md, 16px);
1248
+ background: #f3f5f8;
1249
+ }
1187
1250
  .pro-layout.pro-layout-light .pro-layout-menu-open,
1188
1251
  .pro-layout.pro-layout-light .pro-layout-menu {
1189
1252
  -webkit-box-shadow: 2px 0px 5px 0px rgba(0, 55, 93, 0.1);
1190
1253
  box-shadow: 2px 0px 5px 0px rgba(0, 55, 93, 0.1);
1191
1254
  }
1192
1255
  .pro-layout.pro-layout-light .pro-layout-open-menu .ant-menu-title-content div .pro-layout-icon {
1193
- color: var(--zaui-text, #343434);
1194
1256
  position: relative;
1195
1257
  z-index: 1;
1258
+ color: var(--zaui-text, #343434);
1196
1259
  }
1197
- .pro-layout.pro-layout-light .pro-layout-menu-fold-list li {
1260
+ .pro-layout.pro-layout-light .pro-layout-menu-fold .pro-layout-menu-fold-list {
1261
+ border-right: 1px solid #f0f0f0;
1262
+ }
1263
+ .pro-layout.pro-layout-light .pro-layout-menu-fold .pro-layout-menu-fold-list li {
1198
1264
  position: relative;
1199
1265
  }
1200
- .pro-layout.pro-layout-light .pro-layout-menu-fold-list li > div {
1266
+ .pro-layout.pro-layout-light .pro-layout-menu-fold .pro-layout-menu-fold-list li > div {
1201
1267
  position: relative;
1202
1268
  z-index: 1;
1203
1269
  }
1204
- .pro-layout.pro-layout-light .pro-layout-menu-fold-list li.active {
1270
+ .pro-layout.pro-layout-light .pro-layout-menu-fold .pro-layout-menu-fold-list li.active {
1205
1271
  background: transparent;
1272
+ border-radius: var(--zaui-border-radius, 8px);
1206
1273
  }
1207
- .pro-layout.pro-layout-light .pro-layout-menu-fold-list li.active div .pro-layout-icon {
1274
+ .pro-layout.pro-layout-light .pro-layout-menu-fold .pro-layout-menu-fold-list li.active div .pro-layout-icon {
1208
1275
  color: #fff;
1209
1276
  }
1210
- .pro-layout.pro-layout-light .pro-layout-menu-fold-list li.active::before {
1211
- content: '';
1212
- border-radius: var(--zaui-border-radius, 4px);
1213
- background-color: var(--zaui-brand, #006aff);
1214
- height: 38px;
1277
+ .pro-layout.pro-layout-light .pro-layout-menu-fold .pro-layout-menu-fold-list li.active::before {
1215
1278
  position: absolute;
1216
- left: 5px;
1217
1279
  top: 4px;
1280
+ left: 5px;
1218
1281
  width: calc(100% - 10px);
1282
+ height: 38px;
1283
+ background-color: var(--zaui-brand, #006aff);
1284
+ border-radius: var(--zaui-border-radius, 8px);
1219
1285
  opacity: 1 !important;
1286
+ content: '';
1220
1287
  }
1221
- .pro-layout.pro-layout-light .pro-layout-menu-fold-list li:hover {
1288
+ .pro-layout.pro-layout-light .pro-layout-menu-fold .pro-layout-menu-fold-list li:hover {
1222
1289
  background: transparent;
1223
1290
  }
1224
- .pro-layout.pro-layout-light .pro-layout-menu-fold-list li:hover::before {
1225
- content: '';
1226
- border-radius: var(--zaui-border-radius, 4px);
1227
- background-color: var(--zaui-brand, #006aff);
1228
- height: 38px;
1291
+ .pro-layout.pro-layout-light .pro-layout-menu-fold .pro-layout-menu-fold-list li:hover::before {
1229
1292
  position: absolute;
1230
- left: 5px;
1231
1293
  top: 4px;
1294
+ left: 5px;
1232
1295
  width: calc(100% - 10px);
1296
+ height: 38px;
1297
+ background-color: var(--zaui-brand, #006aff);
1298
+ border-radius: var(--zaui-border-radius, 8px);
1233
1299
  opacity: 0.08;
1300
+ content: '';
1234
1301
  }
1235
- .pro-layout.pro-layout-light .pro-layout-menu-fold-list li div .pro-layout-icon {
1302
+ .pro-layout.pro-layout-light .pro-layout-menu-fold .pro-layout-menu-fold-list li div .pro-layout-icon {
1236
1303
  color: var(--zaui-text, #343434);
1237
1304
  }
1238
- .pro-layout.pro-layout-light .pro-layout-menu-fold-list li.active {
1239
- border-radius: var(--zaui-border-radius, 4px);
1240
- }
1241
1305
  .pro-layout.pro-layout-light .pro-layout-menu-collapsed {
1242
1306
  position: relative;
1307
+ background: var(--zaui-base-bg, #fff);
1308
+ border-right: 1px solid #f0f0f0;
1243
1309
  }
1244
- .pro-layout.pro-layout-light .pro-layout-menu-collapsed::before {
1310
+ .pro-layout.pro-layout-light .pro-layout-menu-collapsed:hover {
1311
+ background: transparent !important;
1312
+ }
1313
+ .pro-layout.pro-layout-light .pro-layout-menu-collapsed:hover::after {
1314
+ position: absolute;
1315
+ top: 5px;
1316
+ left: 5px;
1317
+ width: calc(100% - 10px);
1318
+ height: 40px;
1319
+ background-color: var(--zaui-brand, #006aff);
1320
+ border-radius: var(--zaui-border-radius, 8px);
1321
+ opacity: 0.08;
1245
1322
  content: '';
1246
- height: 1px;
1247
- background: #DEE0E3;
1248
- width: calc(100% - 16px);
1323
+ }
1324
+ .pro-layout.pro-layout-light .pro-layout-menu-collapsed::before {
1249
1325
  position: absolute;
1250
1326
  top: 0;
1251
1327
  left: var(--zaui-space-size-sm, 8px);
1328
+ width: calc(100% - 16px);
1329
+ height: 1px;
1330
+ background: #dee0e3;
1331
+ content: '';
1252
1332
  }
1253
1333
  .pro-layout.pro-layout-light .pro-layout-row .pro-layout-arrow {
1254
1334
  border-color: var(--zaui-text, #343434);
1255
1335
  }
1256
- .pro-layout.pro-layout-light .pro-layout-menu-collapsed {
1257
- background: var(--zaui-base-bg, #fff);
1258
- }
1259
1336
  .pro-layout.pro-layout-light .ant-menu-root {
1260
1337
  overflow-x: hidden !important;
1261
1338
  }
1262
1339
  .pro-layout.pro-layout-light .anticon-caret-down {
1263
- color: #CACACA !important;
1340
+ color: #999 !important;
1264
1341
  }
1265
1342
  .pro-layout.pro-layout-light .pro-layout-row .pro-layout-menu {
1266
1343
  background: var(--zaui-base-bg, #ffffff);
@@ -1270,22 +1347,27 @@
1270
1347
  }
1271
1348
  .pro-layout.pro-layout-light .pro-layout-open-menu .ant-menu-title-content div h2 {
1272
1349
  color: var(--zaui-text, #343434);
1350
+ padding-right: 26px;
1351
+ }
1352
+ .pro-layout.pro-layout-light .ant-menu-item-only-child .ant-menu-title-content div h2 {
1353
+ padding-right: 0;
1273
1354
  }
1274
1355
  .pro-layout.pro-layout-light .pro-layout-open-menu .ant-menu-item:hover,
1275
1356
  .pro-layout.pro-layout-light .pro-layout-open-menu .ant-menu-submenu-title:hover {
1276
- background: transparent;
1277
1357
  position: relative;
1358
+ background: transparent;
1278
1359
  }
1279
1360
  .pro-layout.pro-layout-light .pro-layout-open-menu .ant-menu-item:hover:before,
1280
1361
  .pro-layout.pro-layout-light .pro-layout-open-menu .ant-menu-submenu-title:hover:before {
1281
- content: '';
1282
- border-radius: var(--zaui-border-radius, 4px);
1283
- background-color: var(--zaui-brand, #006aff);
1284
- opacity: 0.08;
1285
- height: 38px;
1286
1362
  position: absolute;
1287
1363
  left: var(--zaui-space-size-sm, 8px);
1288
1364
  width: calc(100% - 16px);
1365
+ min-height: 38px;
1366
+ height: 80%;
1367
+ background-color: var(--zaui-brand, #006aff);
1368
+ border-radius: var(--zaui-border-radius, 8px);
1369
+ opacity: 0.08;
1370
+ content: '';
1289
1371
  }
1290
1372
  .pro-layout.pro-layout-light .pro-layout-open-menu .ant-menu-item-selected {
1291
1373
  background: transparent !important;
@@ -1300,10 +1382,6 @@
1300
1382
  min-height: calc(100vh - 80px);
1301
1383
  }
1302
1384
  .pro-layout .pro-layout-content {
1303
- margin-left: 48px;
1304
- padding: 0 var(--zaui-space-size-lg, 32px);
1305
- -webkit-transition: all 0.3s ease-in-out;
1306
- transition: all 0.3s ease-in-out;
1307
1385
  z-index: 1;
1308
1386
  -webkit-box-flex: 1;
1309
1387
  -webkit-flex: auto;
@@ -1311,10 +1389,14 @@
1311
1389
  flex: auto;
1312
1390
  min-height: calc(100vh - 48px);
1313
1391
  margin-top: 48px;
1392
+ margin-left: 48px;
1393
+ padding: 0 var(--zaui-space-size-lg, 32px);
1394
+ -webkit-transition: all 0.24s ease;
1395
+ transition: all 0.24s ease;
1314
1396
  }
1315
1397
  .pro-layout .pro-layout-content.pro-layout-has-notice {
1316
- margin-top: 80px;
1317
1398
  min-height: calc(100vh - 80px);
1399
+ margin-top: 80px;
1318
1400
  }
1319
1401
  .pro-layout .pro-layout-row-pure .pro-layout-content {
1320
1402
  margin: 0 !important;
@@ -1575,9 +1657,11 @@
1575
1657
  width: 48px;
1576
1658
  }
1577
1659
  .pro-tabs-tab .pro-tabs-card .ant-tag {
1660
+ min-width: 22px;
1578
1661
  margin-right: 0;
1579
1662
  padding: 0 var(--zaui-space-size-xs, 4px);
1580
- border-radius: 10px;
1663
+ text-align: center;
1664
+ border-radius: 12px;
1581
1665
  }
1582
1666
  .pro-tabs-tab .pro-tabs-card .ant-space-item {
1583
1667
  display: -webkit-box;
@@ -1651,7 +1735,7 @@
1651
1735
  margin-left: -8px;
1652
1736
  padding: var(--zaui-space-size-xs, 4px) var(--zaui-space-size-sm, 8px);
1653
1737
  background: var(--zaui-contract-bg, #fffaa1);
1654
- border-radius: var(--zaui-border-radius, 4px);
1738
+ border-radius: var(--zaui-border-radius, 8px);
1655
1739
  }
1656
1740
  .pro-table .ant-table-body .varied-cell.empty-cell {
1657
1741
  width: 24.5px;
@@ -1868,7 +1952,7 @@
1868
1952
  .pro-table .ant-pagination .ant-pagination-item-active a {
1869
1953
  color: #ffffff;
1870
1954
  background: var(--zaui-brand, #006aff) !important;
1871
- border-radius: var(--zaui-border-radius, 4px);
1955
+ border-radius: var(--zaui-border-radius, 8px);
1872
1956
  }
1873
1957
  .pro-table .pro-table-footer.no-page {
1874
1958
  margin-top: var(--zaui-space-size-md, 16px);
@@ -2297,6 +2381,9 @@ span.ant-input-group-compact.pro-range-limit .forever-checkbox {
2297
2381
  margin-inline-start: -1px;
2298
2382
  border-start-start-radius: 0;
2299
2383
  border-end-start-radius: 0;
2384
+ padding: 0 12px;
2385
+ background-color: #fff;
2386
+ cursor: default;
2300
2387
  }
2301
2388
  .pro-group .ant-space-compact .pro-modal-select {
2302
2389
  margin-left: -1px;
@@ -2319,13 +2406,13 @@ span.ant-input-group-compact.pro-range-limit .forever-checkbox {
2319
2406
  }
2320
2407
  .pro-group .ant-space-compact .ant-input-affix-wrapper:first-child,
2321
2408
  .pro-group .ant-space-compact .ant-select:first-child {
2322
- border-start-start-radius: var(--zaui-border-radius, 4px);
2323
- border-end-start-radius: var(--zaui-border-radius, 4px);
2409
+ border-start-start-radius: 4px;
2410
+ border-end-start-radius: 4px;
2324
2411
  }
2325
2412
  .pro-group .ant-space-compact .ant-input-affix-wrapper:last-child,
2326
2413
  .pro-group .ant-space-compact .ant-select:last-child {
2327
- border-start-end-radius: var(--zaui-border-radius, 4px);
2328
- border-end-end-radius: var(--zaui-border-radius, 4px);
2414
+ border-start-end-radius: 4px;
2415
+ border-end-end-radius: 4px;
2329
2416
  }
2330
2417
  .pro-group .ant-space-compact .ant-select .ant-select-selector {
2331
2418
  border-start-end-radius: 0;
@@ -2334,12 +2421,12 @@ span.ant-input-group-compact.pro-range-limit .forever-checkbox {
2334
2421
  border-end-start-radius: 0;
2335
2422
  }
2336
2423
  .pro-group .ant-space-compact .ant-select:first-child .ant-select-selector {
2337
- border-start-start-radius: var(--zaui-border-radius, 4px);
2338
- border-end-start-radius: var(--zaui-border-radius, 4px);
2424
+ border-start-start-radius: 4px;
2425
+ border-end-start-radius: 4px;
2339
2426
  }
2340
2427
  .pro-group .ant-space-compact .ant-select:last-child .ant-select-selector {
2341
- border-start-end-radius: var(--zaui-border-radius, 4px);
2342
- border-end-end-radius: var(--zaui-border-radius, 4px);
2428
+ border-start-end-radius: 4px;
2429
+ border-end-end-radius: 4px;
2343
2430
  }
2344
2431
  .pro-group .ant-space-compact .ant-input-affix-wrapper-status-error ~ .group-separator {
2345
2432
  color: var(--ant-error-color);
@@ -2749,7 +2836,7 @@ span.ant-input-group-compact.pro-range-limit .forever-checkbox {
2749
2836
  }
2750
2837
  .pro-upload .pro-upload-dragger .pro-upload-handle-box {
2751
2838
  background: #F8F9FA;
2752
- border-radius: var(--zaui-border-radius, 4px);
2839
+ border-radius: var(--zaui-border-radius, 8px);
2753
2840
  padding: var(--zaui-space-size-sm, 8px);
2754
2841
  }
2755
2842
  .pro-upload .pro-upload-dragger .pro-upload-handle-box .ant-upload.ant-upload-drag {
@@ -2920,7 +3007,7 @@ span.ant-input-group-compact.pro-range-limit .forever-checkbox {
2920
3007
  text-align: center;
2921
3008
  line-height: 32px;
2922
3009
  background: #FFFFFF;
2923
- border-radius: var(--zaui-border-radius, 4px);
3010
+ border-radius: var(--zaui-border-radius, 8px);
2924
3011
  border: 1px solid #DCDCDC;
2925
3012
  }
2926
3013
  .pro-upload .pro-upload-image .file-item-image {
@@ -3084,93 +3171,6 @@ span.ant-input-group-compact.pro-range-limit .forever-checkbox {
3084
3171
  .proupload-modal-preview .ant-modal {
3085
3172
  width: 600px;
3086
3173
  }
3087
- .pro-tree-select .ant-select-selector .check-mark-icon {
3088
- display: none;
3089
- }
3090
- .pro-tree-select .ant-select.ant-select-single.ant-select-show-arrow:not(.ant-select-show-search).ant-select-open .ant-select-arrow {
3091
- -webkit-transition: -webkit-transform 300ms ease-in-out;
3092
- transition: -webkit-transform 300ms ease-in-out;
3093
- transition: transform 300ms ease-in-out;
3094
- transition: transform 300ms ease-in-out, -webkit-transform 300ms ease-in-out;
3095
- -webkit-transform: rotate(180deg);
3096
- transform: rotate(180deg);
3097
- }
3098
- .pro-tree-select-drop-down-container.ant-select-dropdown .highlight-search-text {
3099
- color: var(--zaui-brand, #006aff);
3100
- }
3101
- .pro-tree-select-drop-down-container.ant-select-dropdown .ant-select-tree-list-holder-inner {
3102
- position: relative!important;
3103
- }
3104
- .pro-tree-select-drop-down-container.ant-select-dropdown.ant-tree-select-dropdown {
3105
- width: auto!important;
3106
- padding: 0px;
3107
- }
3108
- .pro-tree-select-drop-down-container.ant-select-dropdown.singal-tree .ant-select-tree .ant-select-tree-treenode,
3109
- .pro-tree-select-drop-down-container.ant-select-dropdown.checkable-tree .ant-select-tree .ant-select-tree-treenode {
3110
- padding-top: var(--zaui-space-size-xs);
3111
- padding-bottom: var(--zaui-space-size-xs);
3112
- }
3113
- .pro-tree-select-drop-down-container.ant-select-dropdown.singal-tree .highlight,
3114
- .pro-tree-select-drop-down-container.ant-select-dropdown.checkable-tree .highlight {
3115
- color: red;
3116
- }
3117
- .pro-tree-select-drop-down-container.ant-select-dropdown.signal-tree .ant-select-tree .ant-select-tree-treenode {
3118
- position: relative;
3119
- padding-right: 50px;
3120
- padding-left: 7px;
3121
- z-index: 0;
3122
- }
3123
- .pro-tree-select-drop-down-container.ant-select-dropdown.signal-tree .ant-select-tree .ant-select-tree-treenode:after {
3124
- content: '';
3125
- display: none;
3126
- position: absolute;
3127
- z-index: 0;
3128
- left: 0;
3129
- width: 100%;
3130
- height: 100%;
3131
- background-color: var(--zaui-brand, #006aff);
3132
- opacity: 0.1;
3133
- }
3134
- .pro-tree-select-drop-down-container.ant-select-dropdown.signal-tree .ant-select-tree .ant-select-tree-treenode.ant-select-tree-treenode-selected:after {
3135
- display: block;
3136
- }
3137
- .pro-tree-select-drop-down-container.ant-select-dropdown.signal-tree .ant-select-tree .ant-select-tree-node-content-wrapper {
3138
- background-color: transparent;
3139
- }
3140
- .pro-tree-select-drop-down-container.ant-select-dropdown.signal-tree .ant-select-tree .ant-select-tree-node-content-wrapper.ant-select-tree-node-selected .check-mark-icon {
3141
- display: block;
3142
- }
3143
- .pro-tree-select-drop-down-container.ant-select-dropdown.signal-tree .ant-select-tree .ant-select-tree-treenode:hover {
3144
- background-color: #f5f5f5;
3145
- }
3146
- .pro-tree-select-drop-down-container.ant-select-dropdown.signal-tree .ant-select-tree .check-option-text .check-mark-icon {
3147
- position: absolute;
3148
- right: -34px;
3149
- top: 2px;
3150
- display: none;
3151
- color: var(--zaui-list-item-selected-bg);
3152
- }
3153
- .pro-tree-select-drop-down-container.ant-select-dropdown.checkable-tree .ant-select-tree .ant-select-tree-treenode {
3154
- padding-left: 7px;
3155
- }
3156
- .pro-tree-select-drop-down-container.ant-select-dropdown.checkable-tree .ant-select-tree .ant-select-tree-treenode:hover {
3157
- background-color: #f5f5f5;
3158
- }
3159
- .pro-tree-select-drop-down-container.ant-select-dropdown.checkable-tree .ant-select-tree .ant-select-tree-node-content-wrapper {
3160
- padding-right: var(--zaui-space-size-md);
3161
- }
3162
- .pro-tree-select-drop-down-container.ant-select-dropdown.checkable-tree .ant-select-tree .ant-select-tree-node-content-wrapper:hover {
3163
- background-color: transparent;
3164
- }
3165
- .pro-tree-select-drop-down-container.ant-select-dropdown.checkable-tree .ant-select-tree .ant-select-tree-checkbox {
3166
- margin-top: var(--zaui-space-size-xs);
3167
- -webkit-align-self: stretch;
3168
- -ms-flex-item-align: stretch;
3169
- align-self: stretch;
3170
- }
3171
- .pro-tree-select-drop-down-container.ant-select-dropdown.ten-count-tree-node .ant-select-tree-switcher-noop {
3172
- width: var(--zaui-space-size-xs);
3173
- }
3174
3174
  .pro-tree-modal-container .ant-modal-content .ant-modal-body {
3175
3175
  max-height: 498px;
3176
3176
  }
@@ -3228,7 +3228,7 @@ span.ant-input-group-compact.pro-range-limit .forever-checkbox {
3228
3228
  font-size: var(--zaui-font-size, 14px);
3229
3229
  line-height: 20px;
3230
3230
  border: 1px solid #e6e6e6;
3231
- border-radius: var(--zaui-border-radius, 4px);
3231
+ border-radius: var(--zaui-border-radius, 8px);
3232
3232
  /* 修改滚动条样式 */
3233
3233
  }
3234
3234
  .pro-tree-modal-box:first-child {
@@ -3447,6 +3447,10 @@ span.ant-input-group-compact.pro-range-limit .forever-checkbox {
3447
3447
  .pro-transfer-right .checked-item {
3448
3448
  margin: var(--zaui-space-size-sm, 8px) 0;
3449
3449
  }
3450
+ .pro-transfer-right .checked-item.dragable .ant-tag > span:first-child {
3451
+ padding: 8px 0;
3452
+ cursor: move;
3453
+ }
3450
3454
  .pro-transfer-right .checked-item:first-child {
3451
3455
  margin-top: 0;
3452
3456
  }
@@ -3470,7 +3474,7 @@ span.ant-input-group-compact.pro-range-limit .forever-checkbox {
3470
3474
  font-size: var(--zaui-font-size, 14px);
3471
3475
  background: #f2f2f2;
3472
3476
  border: none;
3473
- border-radius: var(--zaui-border-radius, 4px);
3477
+ border-radius: var(--zaui-border-radius, 8px);
3474
3478
  }
3475
3479
  .pro-transfer-right .checked-item .ant-tag .pro-tooltip {
3476
3480
  -webkit-box-flex: 1;
@@ -4056,7 +4060,7 @@ span.ant-input-group-compact.pro-range-limit .forever-checkbox {
4056
4060
  }
4057
4061
  .pro-edit-table .is-cell .ant-form-item .ant-form-item-row .ant-form-item-control .ant-form-item-control-input:hover {
4058
4062
  border: 1px solid #DEE0E3;
4059
- border-radius: var(--zaui-border-radius, 4px);
4063
+ border-radius: var(--zaui-border-radius, 8px);
4060
4064
  text-indent: 5px;
4061
4065
  }
4062
4066
  .pro-edit-table .drag-wrapper {
@@ -4267,7 +4271,7 @@ span.ant-input-group-compact.pro-range-limit .forever-checkbox {
4267
4271
  }
4268
4272
  .pro-edit-label .anticon-edit:active {
4269
4273
  background: #E3E8F0;
4270
- border-radius: var(--zaui-border-radius-card, 2px);
4274
+ border-radius: var(--zaui-border-radius-card, 4px);
4271
4275
  }
4272
4276
  .pro-edit-label.pro-edit-label-small {
4273
4277
  height: 24px;
@@ -4386,7 +4390,7 @@ span.ant-input-group-compact.pro-range-limit .forever-checkbox {
4386
4390
  width: 4px;
4387
4391
  height: 14px;
4388
4392
  background: var(--zaui-brand, #006aff);
4389
- border-radius: var(zaui-border-radius-card, 2px);
4393
+ border-radius: var(zaui-border-radius-card, 4px);
4390
4394
  }
4391
4395
  .pro-theme-prd-tools-drawer .pro-theme-color {
4392
4396
  display: -webkit-box;
@@ -4533,15 +4537,48 @@ span.ant-input-group-compact.pro-range-limit .forever-checkbox {
4533
4537
  display: -webkit-flex;
4534
4538
  display: -ms-flexbox;
4535
4539
  display: flex;
4540
+ -webkit-box-align: center;
4541
+ -webkit-align-items: center;
4542
+ -ms-flex-align: center;
4543
+ align-items: center;
4544
+ -webkit-box-pack: center;
4545
+ -webkit-justify-content: center;
4546
+ -ms-flex-pack: center;
4547
+ justify-content: center;
4548
+ width: 34px;
4549
+ height: 34px;
4550
+ background: #d8e6ff;
4551
+ border-radius: var(--zaui-border-radius, 8px);
4552
+ cursor: pointer;
4553
+ }
4554
+ .pro-theme-tools .setting-icon {
4555
+ margin-top: -1px;
4556
+ }
4557
+ .pro-theme-tools .setting-icon div {
4558
+ display: -webkit-box;
4559
+ display: -webkit-flex;
4560
+ display: -ms-flexbox;
4561
+ display: flex;
4562
+ -webkit-box-align: center;
4563
+ -webkit-align-items: center;
4564
+ -ms-flex-align: center;
4565
+ align-items: center;
4566
+ -webkit-box-pack: center;
4567
+ -webkit-justify-content: center;
4568
+ -ms-flex-pack: center;
4569
+ justify-content: center;
4570
+ }
4571
+ .pro-theme-tools.pro-theme-tools-follow {
4572
+ background: var(--ant-primary-1);
4536
4573
  }
4537
4574
  .pro-theme-tools.pro-theme-tools-follow svg {
4538
4575
  color: var(--zaui-brand, #006aff);
4539
4576
  }
4540
4577
  .pro-theme-tools .anticon {
4541
- color: var(--zaui-brand, #006aff);
4578
+ color: var(--zaui-text, #343434);
4542
4579
  }
4543
4580
  .pro-theme-tools .anticon svg {
4544
- font-size: var(--zaui-font-size-lg-title, 24px);
4581
+ font-size: 20px;
4545
4582
  }
4546
4583
  .pro-theme-tools-drawer .ant-drawer-body {
4547
4584
  padding: 32px;
@@ -4554,23 +4591,23 @@ span.ant-input-group-compact.pro-range-limit .forever-checkbox {
4554
4591
  }
4555
4592
  .pro-theme-tools-drawer .copy-btn {
4556
4593
  position: absolute;
4557
- width: calc(100% - 64px);
4558
4594
  bottom: 20px;
4559
4595
  left: 32px;
4560
4596
  z-index: 10;
4597
+ width: calc(100% - 64px);
4561
4598
  }
4562
4599
  .pro-theme-tools-drawer .pro-theme-tools-box {
4563
4600
  display: -webkit-box;
4564
4601
  display: -webkit-flex;
4565
4602
  display: -ms-flexbox;
4566
4603
  display: flex;
4604
+ -webkit-flex-wrap: wrap;
4605
+ -ms-flex-wrap: wrap;
4606
+ flex-wrap: wrap;
4567
4607
  -webkit-box-pack: justify;
4568
4608
  -webkit-justify-content: space-between;
4569
4609
  -ms-flex-pack: justify;
4570
4610
  justify-content: space-between;
4571
- -webkit-flex-wrap: wrap;
4572
- -ms-flex-wrap: wrap;
4573
- flex-wrap: wrap;
4574
4611
  }
4575
4612
  .pro-theme-tools-drawer .pro-theme-tools-space {
4576
4613
  margin-bottom: var(--zaui-space-size-md, 16px);
@@ -4938,8 +4975,8 @@ input[type='button'] {
4938
4975
  --zaui-table-nested-bg: #fafcfe;
4939
4976
  --zaui-contract-bg: #fffaa1;
4940
4977
  --zaui-form-label-width: 130px;
4941
- --zaui-border-radius: 4px;
4942
- --zaui-border-radius-card: 2px;
4978
+ --zaui-border-radius: 8px;
4979
+ --zaui-border-radius-card: 4px;
4943
4980
  --zaui-font-size-title: 16px;
4944
4981
  --zaui-font-size-card-title: var(--zaui-font-size-title);
4945
4982
  --zaui-font-size: 14px;
@@ -5306,7 +5343,7 @@ input[type='button'] {
5306
5343
  line-height: 32px;
5307
5344
  background-color: #f7f9fa;
5308
5345
  border: 0;
5309
- border-radius: var(--zaui-border-radius, 4px);
5346
+ border-radius: var(--zaui-border-radius, 8px);
5310
5347
  }
5311
5348
  .ant-pagination .ant-pagination-item a {
5312
5349
  color: var(--zaui-text, #464646);
@@ -5320,7 +5357,7 @@ input[type='button'] {
5320
5357
  .ant-pagination .ant-pagination-item-active a {
5321
5358
  color: #fff;
5322
5359
  background: var(--zaui-brand, #006aff);
5323
- border-radius: var(--zaui-border-radius, 4px);
5360
+ border-radius: var(--zaui-border-radius, 8px);
5324
5361
  }
5325
5362
  .ant-pagination .ant-pagination-item-active:focus-visible a,
5326
5363
  .ant-pagination .ant-pagination-item-active:hover a {
@@ -5335,7 +5372,7 @@ input[type='button'] {
5335
5372
  line-height: 30px;
5336
5373
  background-color: #f7f9fa;
5337
5374
  border: 0;
5338
- border-radius: var(--zaui-border-radius, 4px);
5375
+ border-radius: var(--zaui-border-radius, 8px);
5339
5376
  }
5340
5377
  .ant-pagination .ant-pagination-prev svg,
5341
5378
  .ant-pagination .ant-pagination-next svg {
@@ -5353,7 +5390,7 @@ input[type='button'] {
5353
5390
  line-height: 32px;
5354
5391
  background-color: #fafafa;
5355
5392
  border: 0;
5356
- border-radius: var(--zaui-border-radius, 4px);
5393
+ border-radius: var(--zaui-border-radius, 8px);
5357
5394
  }
5358
5395
  .ant-pagination .ant-select-single:not(.ant-select-customize-input) .ant-select-selector {
5359
5396
  color: var(--zaui-text, #464646);
@@ -5366,7 +5403,7 @@ input[type='button'] {
5366
5403
  position: relative;
5367
5404
  background-color: #fafafa;
5368
5405
  border: 0;
5369
- border-radius: var(--zaui-border-radius, 4px);
5406
+ border-radius: var(--zaui-border-radius, 8px);
5370
5407
  }
5371
5408
  .ant-pagination .ant-pagination-jump-prev .ant-pagination-item-container .ant-pagination-item-link-icon,
5372
5409
  .ant-pagination .ant-pagination-jump-next .ant-pagination-item-container .ant-pagination-item-link-icon {