@aplus-frontend/ui 0.0.1-beta.32 → 0.0.1-beta.34

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 (127) hide show
  1. package/es/src/ap-action/interface.d.ts +2 -1
  2. package/es/src/ap-action/item/index.vue2.mjs +20 -20
  3. package/es/src/ap-custom-column/custom-column.vue.mjs +17 -14
  4. package/es/src/ap-field/text/index.vue.d.ts +1 -1
  5. package/es/src/ap-field/text-area/index.vue.d.ts +1 -1
  6. package/es/src/ap-table/components/interface.d.ts +10 -0
  7. package/es/src/ap-table/components/style/pagination.css +12 -0
  8. package/es/src/ap-table/constants.d.ts +5666 -0
  9. package/es/src/ap-table/hooks/use-table-paging.d.ts +57 -0
  10. package/es/src/ap-table/interface.d.ts +155 -0
  11. package/es/src/ap-table/style/ap-table.css +14 -0
  12. package/es/src/ap-table/utils.d.ts +8 -0
  13. package/es/src/base-button/index.d.ts +137 -0
  14. package/es/src/basic/help.vue.d.ts +4 -4
  15. package/es/src/basic/index.d.ts +278 -0
  16. package/es/src/button/index.d.ts +51 -0
  17. package/es/src/config-provider/config-provider-props.d.ts +1 -1
  18. package/es/src/config-provider/config-provider.d.ts +11 -11
  19. package/es/src/config-provider/hooks/use-global-config.d.ts +1 -1
  20. package/es/src/config-provider/index.d.ts +691 -0
  21. package/es/src/container/index.d.ts +178 -0
  22. package/es/src/count-down/index.d.ts +150 -0
  23. package/es/src/cropper/index.d.ts +369 -0
  24. package/es/src/description/description.vue.d.ts +1 -1
  25. package/es/src/description/index.d.ts +214 -0
  26. package/es/src/dropdown/index.d.ts +113 -0
  27. package/es/src/icon/index.d.ts +208 -0
  28. package/es/src/icon-picker/icon-picker.vue.d.ts +2 -2
  29. package/es/src/icon-picker/index.d.ts +190 -0
  30. package/es/src/locale/lang/en.mjs +6 -0
  31. package/es/src/locale/lang/zh-cn.mjs +6 -0
  32. package/es/src/modal/basic.vue.d.ts +1 -1
  33. package/es/src/modal/components/modal-footer.vue.d.ts +1 -1
  34. package/es/src/modal/index.d.ts +963 -0
  35. package/es/src/pro-form/components/api-cascader.vue.d.ts +1 -1
  36. package/es/src/pro-form/components/api-radio-group.vue.d.ts +1 -1
  37. package/es/src/pro-form/components/api-select.vue.d.ts +2 -2
  38. package/es/src/pro-form/components/api-transfer.vue.d.ts +1 -1
  39. package/es/src/pro-form/components/api-tree-select.vue.d.ts +1 -1
  40. package/es/src/pro-form/components/api-tree.vue.d.ts +1 -1
  41. package/es/src/pro-form/hooks/use-label-width.d.ts +6 -6
  42. package/es/src/pro-form/pro-form.vue.d.ts +1 -1
  43. package/es/src/pro-form/style/table-form.css +3 -0
  44. package/es/src/pro-table/components/editable/editable-cell.vue.d.ts +1 -1
  45. package/es/src/pro-table/pro-table.vue.d.ts +1 -1
  46. package/es/src/scroll-bar/index.d.ts +176 -0
  47. package/es/src/strength-meter/index.d.ts +89 -0
  48. package/es/src/theme/antd-global-overwrite/admin/alert.css +16 -6
  49. package/es/src/theme/antd-global-overwrite/admin/form.css +25 -0
  50. package/es/src/theme/antd-global-overwrite/admin/index.css +82 -20
  51. package/es/src/theme/antd-global-overwrite/admin/modal.css +2 -5
  52. package/es/src/theme/antd-global-overwrite/admin/steps.css +20 -9
  53. package/es/src/theme/antd-global-overwrite/admin/table.css +19 -0
  54. package/es/src/theme/antd-global-overwrite/aplus/alert.css +12 -6
  55. package/es/src/theme/antd-global-overwrite/aplus/form.css +40 -0
  56. package/es/src/theme/antd-global-overwrite/aplus/index.css +76 -16
  57. package/es/src/theme/antd-global-overwrite/aplus/modal.css +3 -6
  58. package/es/src/theme/antd-global-overwrite/aplus/steps.css +21 -4
  59. package/es/src/theme/ap-table/ap-table-pagination.css +12 -0
  60. package/es/src/theme/ap-table/ap-table.css +14 -0
  61. package/es/src/theme/pro-form/table-form-inner.css +3 -0
  62. package/es/src/transition/index.d.ts +369 -0
  63. package/es/src/utils/config-provider-preset.d.ts +12 -12
  64. package/lib/src/ap-action/interface.d.ts +2 -1
  65. package/lib/src/ap-action/item/index.vue2.js +1 -1
  66. package/lib/src/ap-custom-column/custom-column.vue.js +1 -1
  67. package/lib/src/ap-field/text/index.vue.d.ts +1 -1
  68. package/lib/src/ap-field/text-area/index.vue.d.ts +1 -1
  69. package/lib/src/ap-table/components/interface.d.ts +10 -0
  70. package/lib/src/ap-table/components/style/pagination.css +12 -0
  71. package/lib/src/ap-table/constants.d.ts +5666 -0
  72. package/lib/src/ap-table/hooks/use-table-paging.d.ts +57 -0
  73. package/lib/src/ap-table/interface.d.ts +155 -0
  74. package/lib/src/ap-table/style/ap-table.css +14 -0
  75. package/lib/src/ap-table/utils.d.ts +8 -0
  76. package/lib/src/base-button/index.d.ts +137 -0
  77. package/lib/src/basic/help.vue.d.ts +4 -4
  78. package/lib/src/basic/index.d.ts +278 -0
  79. package/lib/src/button/index.d.ts +51 -0
  80. package/lib/src/config-provider/config-provider-props.d.ts +1 -1
  81. package/lib/src/config-provider/config-provider.d.ts +11 -11
  82. package/lib/src/config-provider/hooks/use-global-config.d.ts +1 -1
  83. package/lib/src/config-provider/index.d.ts +691 -0
  84. package/lib/src/container/index.d.ts +178 -0
  85. package/lib/src/count-down/index.d.ts +150 -0
  86. package/lib/src/cropper/index.d.ts +369 -0
  87. package/lib/src/description/description.vue.d.ts +1 -1
  88. package/lib/src/description/index.d.ts +214 -0
  89. package/lib/src/dropdown/index.d.ts +113 -0
  90. package/lib/src/icon/index.d.ts +208 -0
  91. package/lib/src/icon-picker/icon-picker.vue.d.ts +2 -2
  92. package/lib/src/icon-picker/index.d.ts +190 -0
  93. package/lib/src/locale/lang/en.js +1 -1
  94. package/lib/src/locale/lang/zh-cn.js +1 -1
  95. package/lib/src/modal/basic.vue.d.ts +1 -1
  96. package/lib/src/modal/components/modal-footer.vue.d.ts +1 -1
  97. package/lib/src/modal/index.d.ts +963 -0
  98. package/lib/src/pro-form/components/api-cascader.vue.d.ts +1 -1
  99. package/lib/src/pro-form/components/api-radio-group.vue.d.ts +1 -1
  100. package/lib/src/pro-form/components/api-select.vue.d.ts +2 -2
  101. package/lib/src/pro-form/components/api-transfer.vue.d.ts +1 -1
  102. package/lib/src/pro-form/components/api-tree-select.vue.d.ts +1 -1
  103. package/lib/src/pro-form/components/api-tree.vue.d.ts +1 -1
  104. package/lib/src/pro-form/hooks/use-label-width.d.ts +6 -6
  105. package/lib/src/pro-form/pro-form.vue.d.ts +1 -1
  106. package/lib/src/pro-form/style/table-form.css +3 -0
  107. package/lib/src/pro-table/components/editable/editable-cell.vue.d.ts +1 -1
  108. package/lib/src/pro-table/pro-table.vue.d.ts +1 -1
  109. package/lib/src/scroll-bar/index.d.ts +176 -0
  110. package/lib/src/strength-meter/index.d.ts +89 -0
  111. package/lib/src/theme/antd-global-overwrite/admin/alert.css +16 -6
  112. package/lib/src/theme/antd-global-overwrite/admin/form.css +25 -0
  113. package/lib/src/theme/antd-global-overwrite/admin/index.css +82 -20
  114. package/lib/src/theme/antd-global-overwrite/admin/modal.css +2 -5
  115. package/lib/src/theme/antd-global-overwrite/admin/steps.css +20 -9
  116. package/lib/src/theme/antd-global-overwrite/admin/table.css +19 -0
  117. package/lib/src/theme/antd-global-overwrite/aplus/alert.css +12 -6
  118. package/lib/src/theme/antd-global-overwrite/aplus/form.css +40 -0
  119. package/lib/src/theme/antd-global-overwrite/aplus/index.css +76 -16
  120. package/lib/src/theme/antd-global-overwrite/aplus/modal.css +3 -6
  121. package/lib/src/theme/antd-global-overwrite/aplus/steps.css +21 -4
  122. package/lib/src/theme/ap-table/ap-table-pagination.css +12 -0
  123. package/lib/src/theme/ap-table/ap-table.css +14 -0
  124. package/lib/src/theme/pro-form/table-form-inner.css +3 -0
  125. package/lib/src/transition/index.d.ts +369 -0
  126. package/lib/src/utils/config-provider-preset.d.ts +12 -12
  127. package/package.json +1 -1
@@ -1,24 +1,34 @@
1
1
  .ant-alert {
2
+ align-items: flex-start;
2
3
  width: 100%;
3
- margin: 0 0 4px;
4
- padding: 9px 12px;
4
+ padding: 6px 12px;
5
5
  border-radius: 4px;
6
6
  }
7
+ .ant-alert .ant-alert-icon {
8
+ font-size: 16px;
9
+ transform: translateY(1px);
10
+ margin-inline-end: 8px;
11
+ }
7
12
  .ant-alert .ant-alert-message {
8
- color: #182948;
9
- font-weight: bold;
13
+ color: #333333;
14
+ font-weight: normal !important;
10
15
  font-size: 12px;
11
- line-height: 12px;
16
+ line-height: 18px;
12
17
  }
13
18
  .ant-alert .ant-alert-message .href {
14
- color: #0070ff;
19
+ color: #1890ff;
15
20
  cursor: pointer;
16
21
  }
17
22
  .ant-alert .ant-alert-description {
23
+ color: #333333;
18
24
  font-weight: normal;
19
25
  font-size: 12px;
20
26
  line-height: 18px;
21
27
  }
28
+ .ant-alert-with-description .ant-alert-message {
29
+ margin-bottom: 4px;
30
+ font-weight: bold !important;
31
+ }
22
32
  .ant-btn {
23
33
  min-width: 88px;
24
34
  box-shadow: none;
@@ -76,6 +86,9 @@
76
86
  .ant-form .ant-form-item-control .ant-radio-wrapper .ant-radio.ant-radio-checked .ant-radio-inner::after {
77
87
  background-color: #34b77c;
78
88
  }
89
+ .ant-form .ant-form-item-control .ant-select.ant-select-open .ant-select-selection-item {
90
+ color: #bfbfbf;
91
+ }
79
92
  .ant-input::-moz-placeholder {
80
93
  color: #bfbfbf;
81
94
  }
@@ -97,6 +110,28 @@
97
110
  .ant-input-number .ant-input-number-input-wrap > input::placeholder {
98
111
  color: #bfbfbf;
99
112
  }
113
+ input.ant-input[disabled] {
114
+ color: #666666;
115
+ }
116
+ div[class$='-basic-table-form-container'] form[class$='-basic-form--compact'] {
117
+ padding: 16px;
118
+ }
119
+ div[class$='-basic-table-form-container'] form[class$='-basic-form--compact'] div.ant-col[tableaction] .ant-form-item-control-input-content {
120
+ display: flex;
121
+ align-items: center;
122
+ justify-content: flex-end;
123
+ }
124
+ div[class$='-basic-table-form-container'] form[class$='-basic-form--compact'] div.ant-col[tableaction] .ant-form-item-control-input-content button.ant-btn-primary {
125
+ order: 1;
126
+ }
127
+ div[class$='-basic-table-form-container'] form[class$='-basic-form--compact'] div.ant-col[tableaction] .ant-form-item-control-input-content button.ant-btn-default {
128
+ order: 2;
129
+ margin-right: 0;
130
+ }
131
+ div[class$='-basic-table-form-container'] form[class$='-basic-form--compact'] div.ant-col[tableaction] .ant-form-item-control-input-content button.ant-btn-link {
132
+ order: 3;
133
+ margin-left: 0.5rem;
134
+ }
100
135
  .ant-message .ant-message-notice-content {
101
136
  padding: 10px 16px;
102
137
  /* 文字颜色/一级-333333 */
@@ -170,13 +205,10 @@
170
205
  line-height: 24px;
171
206
  }
172
207
  .ant-modal-root .ant-modal .ant-modal-content .ant-modal-body {
173
- padding: 20px;
174
- }
175
- .ant-modal-root .ant-modal .ant-modal-content .ant-modal-body:has(.scrollbar) {
176
- padding: 0;
208
+ padding: 20px !important;
177
209
  }
178
210
  .ant-modal-root .ant-modal .ant-modal-content .ant-modal-body > .scrollbar {
179
- padding: 20px;
211
+ padding: 0;
180
212
  }
181
213
  .ant-modal-root .ant-modal .ant-modal-content .ant-modal-body .scrollbar__wrap {
182
214
  margin-bottom: 0 !important;
@@ -309,12 +341,13 @@
309
341
  display: flex;
310
342
  }
311
343
  .ant-steps .ant-steps-item-icon {
312
- display: flex;
313
- align-items: center;
314
- justify-content: center;
315
344
  width: 28px;
316
345
  height: 28px;
317
346
  margin-top: 4px;
347
+ display: flex;
348
+ justify-content: center;
349
+ align-items: center;
350
+ flex-shrink: 0;
318
351
  }
319
352
  .ant-steps .ant-steps-item-finish .ant-steps-item-container .ant-steps-item-icon {
320
353
  background-color: #ffffff;
@@ -336,7 +369,7 @@
336
369
  color: #999999;
337
370
  font-weight: 400;
338
371
  font-size: 12px;
339
- line-height: 1em;
372
+ line-height: 1rem;
340
373
  }
341
374
  .ant-steps .ant-steps-item-title {
342
375
  height: 24px;
@@ -364,7 +397,7 @@
364
397
  color: #999999;
365
398
  font-weight: 400;
366
399
  font-size: 12px;
367
- line-height: 1em;
400
+ line-height: 1rem;
368
401
  }
369
402
  .ant-steps .ant-steps-item-wait .ant-steps-item-container .ant-steps-item-icon {
370
403
  background-color: #ffffff;
@@ -381,18 +414,28 @@
381
414
  color: #999999;
382
415
  font-weight: 400;
383
416
  font-size: 12px;
384
- line-height: 1em;
417
+ line-height: 1rem;
418
+ }
419
+ .ant-steps-item.ant-steps-item-finish.ant-steps-item-active .ant-steps-item-container .ant-steps-item-icon {
420
+ background-color: #ffffff;
385
421
  }
386
422
  .ant-steps.ant-steps-vertical .ant-steps-item .ant-steps-item-icon {
387
423
  margin-inline-end: 8px;
388
424
  }
425
+ .ant-steps.ant-steps-vertical .ant-steps-item .ant-steps-item-container .ant-steps-item-tail {
426
+ inset-inline-start: 13px;
427
+ }
389
428
  .ant-steps.ant-steps-vertical .ant-steps-item-icon {
390
- display: flex;
391
- align-items: center;
392
- justify-content: center;
393
429
  width: 28px;
394
430
  height: 28px;
395
431
  margin-top: 4px;
432
+ display: flex;
433
+ justify-content: center;
434
+ align-items: center;
435
+ }
436
+ .ant-steps.ant-steps-vertical.ant-steps-small .ant-steps-item .ant-steps-item-tail {
437
+ inset-inline-start: 13px;
438
+ margin: 6px 0;
396
439
  }
397
440
  .ant-table-wrapper {
398
441
  padding: 12px 16px 16px;
@@ -448,3 +491,22 @@
448
491
  .ant-table-wrapper .ant-table-footer td {
449
492
  padding: 12px 8px;
450
493
  }
494
+ [class$='-basic-table-form-container'] {
495
+ padding: 16px;
496
+ }
497
+ [class$='-basic-table-form-container'] .ant-form {
498
+ width: 100%;
499
+ margin-bottom: 16px;
500
+ padding: 16px;
501
+ background-color: #ffffff;
502
+ border-radius: 0;
503
+ }
504
+ [class$='-basic-table-form-container'] .ant-form .ant-row {
505
+ row-gap: 16px;
506
+ }
507
+ [class$='-basic-table-form-container'] .ant-form .ant-form-item {
508
+ margin-bottom: 0;
509
+ }
510
+ [class$='-basic-table--inset'] .ant-table-wrapper {
511
+ padding: 0;
512
+ }
@@ -54,13 +54,10 @@
54
54
  line-height: 24px;
55
55
  }
56
56
  .ant-modal-root .ant-modal .ant-modal-content .ant-modal-body {
57
- padding: 20px;
58
- }
59
- .ant-modal-root .ant-modal .ant-modal-content .ant-modal-body:has(.scrollbar) {
60
- padding: 0;
57
+ padding: 20px !important;
61
58
  }
62
59
  .ant-modal-root .ant-modal .ant-modal-content .ant-modal-body > .scrollbar {
63
- padding: 20px;
60
+ padding: 0;
64
61
  }
65
62
  .ant-modal-root .ant-modal .ant-modal-content .ant-modal-body .scrollbar__wrap {
66
63
  margin-bottom: 0 !important;
@@ -5,12 +5,13 @@
5
5
  display: flex;
6
6
  }
7
7
  .ant-steps .ant-steps-item-icon {
8
- display: flex;
9
- align-items: center;
10
- justify-content: center;
11
8
  width: 28px;
12
9
  height: 28px;
13
10
  margin-top: 4px;
11
+ display: flex;
12
+ justify-content: center;
13
+ align-items: center;
14
+ flex-shrink: 0;
14
15
  }
15
16
  .ant-steps .ant-steps-item-finish .ant-steps-item-container .ant-steps-item-icon {
16
17
  background-color: #ffffff;
@@ -32,7 +33,7 @@
32
33
  color: #999999;
33
34
  font-weight: 400;
34
35
  font-size: 12px;
35
- line-height: 1em;
36
+ line-height: 1rem;
36
37
  }
37
38
  .ant-steps .ant-steps-item-title {
38
39
  height: 24px;
@@ -60,7 +61,7 @@
60
61
  color: #999999;
61
62
  font-weight: 400;
62
63
  font-size: 12px;
63
- line-height: 1em;
64
+ line-height: 1rem;
64
65
  }
65
66
  .ant-steps .ant-steps-item-wait .ant-steps-item-container .ant-steps-item-icon {
66
67
  background-color: #ffffff;
@@ -77,16 +78,26 @@
77
78
  color: #999999;
78
79
  font-weight: 400;
79
80
  font-size: 12px;
80
- line-height: 1em;
81
+ line-height: 1rem;
82
+ }
83
+ .ant-steps-item.ant-steps-item-finish.ant-steps-item-active .ant-steps-item-container .ant-steps-item-icon {
84
+ background-color: #ffffff;
81
85
  }
82
86
  .ant-steps.ant-steps-vertical .ant-steps-item .ant-steps-item-icon {
83
87
  margin-inline-end: 8px;
84
88
  }
89
+ .ant-steps.ant-steps-vertical .ant-steps-item .ant-steps-item-container .ant-steps-item-tail {
90
+ inset-inline-start: 13px;
91
+ }
85
92
  .ant-steps.ant-steps-vertical .ant-steps-item-icon {
86
- display: flex;
87
- align-items: center;
88
- justify-content: center;
89
93
  width: 28px;
90
94
  height: 28px;
91
95
  margin-top: 4px;
96
+ display: flex;
97
+ justify-content: center;
98
+ align-items: center;
99
+ }
100
+ .ant-steps.ant-steps-vertical.ant-steps-small .ant-steps-item .ant-steps-item-tail {
101
+ inset-inline-start: 13px;
102
+ margin: 6px 0;
92
103
  }
@@ -52,3 +52,22 @@
52
52
  .ant-table-wrapper .ant-table-footer td {
53
53
  padding: 12px 8px;
54
54
  }
55
+ [class$='-basic-table-form-container'] {
56
+ padding: 16px;
57
+ }
58
+ [class$='-basic-table-form-container'] .ant-form {
59
+ width: 100%;
60
+ margin-bottom: 16px;
61
+ padding: 16px;
62
+ background-color: #ffffff;
63
+ border-radius: 0;
64
+ }
65
+ [class$='-basic-table-form-container'] .ant-form .ant-row {
66
+ row-gap: 16px;
67
+ }
68
+ [class$='-basic-table-form-container'] .ant-form .ant-form-item {
69
+ margin-bottom: 0;
70
+ }
71
+ [class$='-basic-table--inset'] .ant-table-wrapper {
72
+ padding: 0;
73
+ }
@@ -1,25 +1,31 @@
1
1
  .ant-alert {
2
+ align-items: flex-start;
2
3
  width: 100%;
3
- height: 32px;
4
- margin: 0 0 4px;
5
- padding: 7px 12px;
6
- line-height: 32px;
4
+ padding: 6px 12px;
7
5
  border-radius: 4px;
8
6
  }
9
7
  .ant-alert .ant-alert-icon {
10
- font-size: 14px;
8
+ font-size: 16px;
9
+ transform: translateY(1px);
10
+ margin-inline-end: 8px;
11
11
  }
12
12
  .ant-alert .ant-alert-message {
13
13
  color: #182948;
14
+ font-weight: normal !important;
14
15
  font-size: 12px;
15
- line-height: 12px;
16
+ line-height: 18px;
16
17
  }
17
18
  .ant-alert .ant-alert-message .href {
18
19
  color: #0070ff;
19
20
  cursor: pointer;
20
21
  }
21
22
  .ant-alert .ant-alert-description {
23
+ color: #182948;
22
24
  font-weight: normal;
23
25
  font-size: 12px;
24
26
  line-height: 18px;
25
27
  }
28
+ .ant-alert-with-description .ant-alert-message {
29
+ margin-bottom: 4px;
30
+ font-weight: bold !important;
31
+ }
@@ -38,3 +38,43 @@
38
38
  .ant-input-number .ant-input-number-input-wrap > input::placeholder {
39
39
  color: #abb7cc;
40
40
  }
41
+ div[class$='-basic-table-form-container'] form[class$='-basic-form--compact'] .ant-form-item {
42
+ margin-bottom: 16px;
43
+ /** 适配Aplus UI */
44
+ }
45
+ div[class$='-basic-table-form-container'] form[class$='-basic-form--compact'] .ant-form-item.aplus-ui-adaptation {
46
+ border-radius: 4px 4px 4px 4px;
47
+ border: 1px solid #dee4ed;
48
+ }
49
+ div[class$='-basic-table-form-container'] form[class$='-basic-form--compact'] .ant-form-item.aplus-ui-adaptation .ant-form-item-label {
50
+ padding-left: 12px;
51
+ }
52
+ div[class$='-basic-table-form-container'] form[class$='-basic-form--compact'] .ant-form-item.aplus-ui-adaptation .ant-form-item-label label {
53
+ height: 30px;
54
+ color: #182948;
55
+ }
56
+ div[class$='-basic-table-form-container'] form[class$='-basic-form--compact'] .ant-form-item.aplus-ui-adaptation .ant-form-item-control-input {
57
+ min-height: 30px;
58
+ }
59
+ div[class$='-basic-table-form-container'] form[class$='-basic-form--compact'] .ant-form-item.aplus-ui-adaptation .ant-form-item-control-input .ant-select-selector,
60
+ div[class$='-basic-table-form-container'] form[class$='-basic-form--compact'] .ant-form-item.aplus-ui-adaptation .ant-form-item-control-input .ant-input-affix-wrapper,
61
+ div[class$='-basic-table-form-container'] form[class$='-basic-form--compact'] .ant-form-item.aplus-ui-adaptation .ant-form-item-control-input .ant-input-number,
62
+ div[class$='-basic-table-form-container'] form[class$='-basic-form--compact'] .ant-form-item.aplus-ui-adaptation .ant-form-item-control-input .ant-picker {
63
+ height: 30px;
64
+ border: none;
65
+ border-color: #dee4ed;
66
+ box-shadow: none;
67
+ }
68
+ div[class$='-basic-table-form-container'] form[class$='-basic-form--compact'] .ant-form-item.aplus-ui-adaptation .ant-form-item-control-input .ant-input-number,
69
+ div[class$='-basic-table-form-container'] form[class$='-basic-form--compact'] .ant-form-item.aplus-ui-adaptation .ant-form-item-control-input .ant-picker {
70
+ width: 100%;
71
+ }
72
+ div[class$='-basic-table-form-container'] form[class$='-basic-form--compact'] div.ant-col[tableaction] .ant-form-item-control-input-content button.submit {
73
+ margin-right: 0.5rem;
74
+ }
75
+ div[class$='-basic-table-form-container'] form[class$='-basic-form--compact'] div.ant-col[tableaction] .ant-form-item-control-input-content button.reset {
76
+ margin-right: 0;
77
+ }
78
+ div[class$='-basic-table-form-container'] form[class$='-basic-form--compact'] div.ant-col[tableaction] .ant-form-item-control-input-content button.collapse {
79
+ margin-left: 0.5rem;
80
+ }
@@ -1,28 +1,34 @@
1
1
  .ant-alert {
2
+ align-items: flex-start;
2
3
  width: 100%;
3
- height: 32px;
4
- margin: 0 0 4px;
5
- padding: 7px 12px;
6
- line-height: 32px;
4
+ padding: 6px 12px;
7
5
  border-radius: 4px;
8
6
  }
9
7
  .ant-alert .ant-alert-icon {
10
- font-size: 14px;
8
+ font-size: 16px;
9
+ transform: translateY(1px);
10
+ margin-inline-end: 8px;
11
11
  }
12
12
  .ant-alert .ant-alert-message {
13
13
  color: #182948;
14
+ font-weight: normal !important;
14
15
  font-size: 12px;
15
- line-height: 12px;
16
+ line-height: 18px;
16
17
  }
17
18
  .ant-alert .ant-alert-message .href {
18
19
  color: #0070ff;
19
20
  cursor: pointer;
20
21
  }
21
22
  .ant-alert .ant-alert-description {
23
+ color: #182948;
22
24
  font-weight: normal;
23
25
  font-size: 12px;
24
26
  line-height: 18px;
25
27
  }
28
+ .ant-alert-with-description .ant-alert-message {
29
+ margin-bottom: 4px;
30
+ font-weight: bold !important;
31
+ }
26
32
  .ant-btn {
27
33
  min-width: 88px;
28
34
  box-shadow: none;
@@ -101,6 +107,46 @@
101
107
  .ant-input-number .ant-input-number-input-wrap > input::placeholder {
102
108
  color: #abb7cc;
103
109
  }
110
+ div[class$='-basic-table-form-container'] form[class$='-basic-form--compact'] .ant-form-item {
111
+ margin-bottom: 16px;
112
+ /** 适配Aplus UI */
113
+ }
114
+ div[class$='-basic-table-form-container'] form[class$='-basic-form--compact'] .ant-form-item.aplus-ui-adaptation {
115
+ border-radius: 4px 4px 4px 4px;
116
+ border: 1px solid #dee4ed;
117
+ }
118
+ div[class$='-basic-table-form-container'] form[class$='-basic-form--compact'] .ant-form-item.aplus-ui-adaptation .ant-form-item-label {
119
+ padding-left: 12px;
120
+ }
121
+ div[class$='-basic-table-form-container'] form[class$='-basic-form--compact'] .ant-form-item.aplus-ui-adaptation .ant-form-item-label label {
122
+ height: 30px;
123
+ color: #182948;
124
+ }
125
+ div[class$='-basic-table-form-container'] form[class$='-basic-form--compact'] .ant-form-item.aplus-ui-adaptation .ant-form-item-control-input {
126
+ min-height: 30px;
127
+ }
128
+ div[class$='-basic-table-form-container'] form[class$='-basic-form--compact'] .ant-form-item.aplus-ui-adaptation .ant-form-item-control-input .ant-select-selector,
129
+ div[class$='-basic-table-form-container'] form[class$='-basic-form--compact'] .ant-form-item.aplus-ui-adaptation .ant-form-item-control-input .ant-input-affix-wrapper,
130
+ div[class$='-basic-table-form-container'] form[class$='-basic-form--compact'] .ant-form-item.aplus-ui-adaptation .ant-form-item-control-input .ant-input-number,
131
+ div[class$='-basic-table-form-container'] form[class$='-basic-form--compact'] .ant-form-item.aplus-ui-adaptation .ant-form-item-control-input .ant-picker {
132
+ height: 30px;
133
+ border: none;
134
+ border-color: #dee4ed;
135
+ box-shadow: none;
136
+ }
137
+ div[class$='-basic-table-form-container'] form[class$='-basic-form--compact'] .ant-form-item.aplus-ui-adaptation .ant-form-item-control-input .ant-input-number,
138
+ div[class$='-basic-table-form-container'] form[class$='-basic-form--compact'] .ant-form-item.aplus-ui-adaptation .ant-form-item-control-input .ant-picker {
139
+ width: 100%;
140
+ }
141
+ div[class$='-basic-table-form-container'] form[class$='-basic-form--compact'] div.ant-col[tableaction] .ant-form-item-control-input-content button.submit {
142
+ margin-right: 0.5rem;
143
+ }
144
+ div[class$='-basic-table-form-container'] form[class$='-basic-form--compact'] div.ant-col[tableaction] .ant-form-item-control-input-content button.reset {
145
+ margin-right: 0;
146
+ }
147
+ div[class$='-basic-table-form-container'] form[class$='-basic-form--compact'] div.ant-col[tableaction] .ant-form-item-control-input-content button.collapse {
148
+ margin-left: 0.5rem;
149
+ }
104
150
  .ant-message .ant-message-notice-content {
105
151
  padding: 10px 16px;
106
152
  /* 文字颜色/一级-333333 */
@@ -168,20 +214,17 @@
168
214
  line-height: 24px;
169
215
  }
170
216
  .ant-modal-root .ant-modal .ant-modal-content .ant-modal-body {
171
- padding: 20px 20px 0;
172
- }
173
- .ant-modal-root .ant-modal .ant-modal-content .ant-modal-body:has(.scrollbar) {
174
- padding: 0;
217
+ padding: 20px !important;
175
218
  }
176
219
  .ant-modal-root .ant-modal .ant-modal-content .ant-modal-body > .scrollbar {
177
- padding: 20px 20px 0;
220
+ padding: 0;
178
221
  }
179
222
  .ant-modal-root .ant-modal .ant-modal-content .ant-modal-body .scrollbar__wrap {
180
223
  margin-bottom: 0 !important;
181
224
  }
182
225
  .ant-modal-root .ant-modal .ant-modal-content .ant-modal-footer {
183
226
  margin-top: 0;
184
- padding: 20px;
227
+ padding: 0 20px 20px;
185
228
  border-top: none;
186
229
  }
187
230
  .ant-modal-root .ant-modal .ant-modal-content .ant-modal-footer button {
@@ -323,7 +366,10 @@
323
366
  width: 28px;
324
367
  height: 28px;
325
368
  margin-top: 4px;
326
- line-height: 28px;
369
+ display: flex;
370
+ justify-content: center;
371
+ align-items: center;
372
+ flex-shrink: 0;
327
373
  }
328
374
  .ant-steps .ant-steps-item-finish .ant-steps-item-container .ant-steps-item-icon {
329
375
  background-color: #ffffff;
@@ -343,7 +389,7 @@
343
389
  color: #8896b0;
344
390
  font-weight: 400;
345
391
  font-size: 12px;
346
- line-height: 1em;
392
+ line-height: 1rem;
347
393
  }
348
394
  .ant-steps .ant-steps-item-title {
349
395
  height: 24px;
@@ -369,7 +415,7 @@
369
415
  color: #8896b0;
370
416
  font-weight: 400;
371
417
  font-size: 12px;
372
- line-height: 1em;
418
+ line-height: 1rem;
373
419
  }
374
420
  .ant-steps .ant-steps-item-wait .ant-steps-item-container .ant-steps-item-icon {
375
421
  background-color: #ffffff;
@@ -386,11 +432,21 @@
386
432
  color: #8896b0;
387
433
  font-weight: 400;
388
434
  font-size: 12px;
389
- line-height: 1em;
435
+ line-height: 1rem;
436
+ }
437
+ .ant-steps-item.ant-steps-item-finish.ant-steps-item-active .ant-steps-item-container .ant-steps-item-tail {
438
+ inset-inline-start: 13px;
439
+ margin: 4px 0;
440
+ }
441
+ .ant-steps-item.ant-steps-item-finish.ant-steps-item-active .ant-steps-item-container .ant-steps-item-icon {
442
+ background-color: #ffffff;
390
443
  }
391
444
  .ant-steps.ant-steps-vertical .ant-steps-item .ant-steps-item-icon {
392
445
  margin-inline-end: 8px;
393
446
  }
447
+ .ant-steps.ant-steps-vertical .ant-steps-item .ant-steps-item-container .ant-steps-item-tail {
448
+ inset-inline-start: 13px;
449
+ }
394
450
  .ant-steps.ant-steps-vertical .ant-steps-item-icon {
395
451
  display: flex;
396
452
  align-items: center;
@@ -399,6 +455,10 @@
399
455
  height: 28px;
400
456
  margin-top: 4px;
401
457
  }
458
+ .ant-steps.ant-steps-vertical.ant-steps-small .ant-steps-item .ant-steps-item-tail {
459
+ inset-inline-start: 13px;
460
+ margin: 6px 0;
461
+ }
402
462
  .ant-table-wrapper .ant-table.ant-table.ant-table-small .ant-table-title,
403
463
  .ant-table-wrapper .ant-table.ant-table.ant-table-middle .ant-table-title {
404
464
  display: flex;
@@ -48,20 +48,17 @@
48
48
  line-height: 24px;
49
49
  }
50
50
  .ant-modal-root .ant-modal .ant-modal-content .ant-modal-body {
51
- padding: 20px 20px 0;
52
- }
53
- .ant-modal-root .ant-modal .ant-modal-content .ant-modal-body:has(.scrollbar) {
54
- padding: 0;
51
+ padding: 20px !important;
55
52
  }
56
53
  .ant-modal-root .ant-modal .ant-modal-content .ant-modal-body > .scrollbar {
57
- padding: 20px 20px 0;
54
+ padding: 0;
58
55
  }
59
56
  .ant-modal-root .ant-modal .ant-modal-content .ant-modal-body .scrollbar__wrap {
60
57
  margin-bottom: 0 !important;
61
58
  }
62
59
  .ant-modal-root .ant-modal .ant-modal-content .ant-modal-footer {
63
60
  margin-top: 0;
64
- padding: 20px;
61
+ padding: 0 20px 20px;
65
62
  border-top: none;
66
63
  }
67
64
  .ant-modal-root .ant-modal .ant-modal-content .ant-modal-footer button {
@@ -8,7 +8,10 @@
8
8
  width: 28px;
9
9
  height: 28px;
10
10
  margin-top: 4px;
11
- line-height: 28px;
11
+ display: flex;
12
+ justify-content: center;
13
+ align-items: center;
14
+ flex-shrink: 0;
12
15
  }
13
16
  .ant-steps .ant-steps-item-finish .ant-steps-item-container .ant-steps-item-icon {
14
17
  background-color: #ffffff;
@@ -28,7 +31,7 @@
28
31
  color: #8896b0;
29
32
  font-weight: 400;
30
33
  font-size: 12px;
31
- line-height: 1em;
34
+ line-height: 1rem;
32
35
  }
33
36
  .ant-steps .ant-steps-item-title {
34
37
  height: 24px;
@@ -54,7 +57,7 @@
54
57
  color: #8896b0;
55
58
  font-weight: 400;
56
59
  font-size: 12px;
57
- line-height: 1em;
60
+ line-height: 1rem;
58
61
  }
59
62
  .ant-steps .ant-steps-item-wait .ant-steps-item-container .ant-steps-item-icon {
60
63
  background-color: #ffffff;
@@ -71,11 +74,21 @@
71
74
  color: #8896b0;
72
75
  font-weight: 400;
73
76
  font-size: 12px;
74
- line-height: 1em;
77
+ line-height: 1rem;
78
+ }
79
+ .ant-steps-item.ant-steps-item-finish.ant-steps-item-active .ant-steps-item-container .ant-steps-item-tail {
80
+ inset-inline-start: 13px;
81
+ margin: 4px 0;
82
+ }
83
+ .ant-steps-item.ant-steps-item-finish.ant-steps-item-active .ant-steps-item-container .ant-steps-item-icon {
84
+ background-color: #ffffff;
75
85
  }
76
86
  .ant-steps.ant-steps-vertical .ant-steps-item .ant-steps-item-icon {
77
87
  margin-inline-end: 8px;
78
88
  }
89
+ .ant-steps.ant-steps-vertical .ant-steps-item .ant-steps-item-container .ant-steps-item-tail {
90
+ inset-inline-start: 13px;
91
+ }
79
92
  .ant-steps.ant-steps-vertical .ant-steps-item-icon {
80
93
  display: flex;
81
94
  align-items: center;
@@ -84,3 +97,7 @@
84
97
  height: 28px;
85
98
  margin-top: 4px;
86
99
  }
100
+ .ant-steps.ant-steps-vertical.ant-steps-small .ant-steps-item .ant-steps-item-tail {
101
+ inset-inline-start: 13px;
102
+ margin: 6px 0;
103
+ }
@@ -0,0 +1,12 @@
1
+ .aplus-ap-table-pagination {
2
+ margin-top: 16px;
3
+ }
4
+ .aplus-ap-table-pagination__total {
5
+ font-size: 14px;
6
+ line-height: 22px;
7
+ color: #333333;
8
+ padding-block: 6px;
9
+ }
10
+ .aplus-ap-table-pagination__total-right {
11
+ padding-inline-start: 10px;
12
+ }
@@ -0,0 +1,14 @@
1
+ .aplus-ap-table-wrapper {
2
+ padding: 16px;
3
+ background-color: #fff;
4
+ }
5
+ .aplus-ap-table__search-wrapper {
6
+ padding: 16px;
7
+ padding-bottom: 0;
8
+ background-color: #fff;
9
+ margin-bottom: 16px;
10
+ }
11
+ .aplus-ap-table__form-wrapper {
12
+ padding: 16px;
13
+ background-color: #fff;
14
+ }
@@ -1,3 +1,6 @@
1
+ .aplus-pro-table-form .table-form-admin .ant-table-wrapper {
2
+ padding: 0;
3
+ }
1
4
  .aplus-pro-table-form .table-form-admin .ant-table .ant-table-tbody > tr > td,
2
5
  .aplus-pro-table-form .table-form-admin .ant-table .ant-table-body .ant-table-tbody > tr.ant-table-row > td {
3
6
  padding: 18px 16px 0px ;