amis 1.9.1-beta.12 → 1.9.1-beta.13

Sign up to get free protection for your applications and to get access to all the features.
Files changed (97) hide show
  1. package/README.md +1 -1
  2. package/lib/components/formula/Picker.js +1 -2
  3. package/lib/components/formula/Picker.js.map +2 -2
  4. package/lib/components/table/HeadCellFilter.js +4 -1
  5. package/lib/components/table/HeadCellFilter.js.map +2 -2
  6. package/lib/components/table/HeadCellSort.js +30 -24
  7. package/lib/components/table/HeadCellSort.js.map +2 -2
  8. package/lib/components/table/index.d.ts +6 -3
  9. package/lib/components/table/index.js +72 -86
  10. package/lib/components/table/index.js.map +2 -2
  11. package/lib/index.js +1 -1
  12. package/lib/renderers/Action.d.ts +21 -4
  13. package/lib/renderers/Action.js +42 -19
  14. package/lib/renderers/Action.js.map +2 -2
  15. package/lib/renderers/Breadcrumb.js +2 -2
  16. package/lib/renderers/Breadcrumb.js.map +2 -2
  17. package/lib/renderers/Form/Picker.d.ts +1 -1
  18. package/lib/renderers/Form/Picker.js +38 -23
  19. package/lib/renderers/Form/Picker.js.map +2 -2
  20. package/lib/renderers/Form/wrapControl.js +10 -10
  21. package/lib/renderers/Form/wrapControl.js.map +2 -2
  22. package/lib/renderers/Service.js +0 -1
  23. package/lib/renderers/Service.js.map +2 -2
  24. package/lib/renderers/Steps.d.ts +2 -2
  25. package/lib/renderers/Steps.js +1 -1
  26. package/lib/renderers/Steps.js.map +2 -2
  27. package/lib/renderers/Table-v2/HeadCellSearchDropdown.d.ts +1 -1
  28. package/lib/renderers/Table-v2/HeadCellSearchDropdown.js +38 -24
  29. package/lib/renderers/Table-v2/HeadCellSearchDropdown.js.map +2 -2
  30. package/lib/renderers/Table-v2/index.d.ts +10 -4
  31. package/lib/renderers/Table-v2/index.js +109 -58
  32. package/lib/renderers/Table-v2/index.js.map +2 -2
  33. package/lib/store/table-v2.d.ts +210 -4
  34. package/lib/store/table-v2.js +82 -5
  35. package/lib/store/table-v2.js.map +2 -2
  36. package/lib/themes/ang-ie11.css +14 -11
  37. package/lib/themes/ang.css +14 -6
  38. package/lib/themes/ang.css.map +1 -1
  39. package/lib/themes/antd-ie11.css +14 -11
  40. package/lib/themes/antd.css +14 -6
  41. package/lib/themes/antd.css.map +1 -1
  42. package/lib/themes/cxd-ie11.css +165 -162
  43. package/lib/themes/cxd.css +15 -7
  44. package/lib/themes/cxd.css.map +1 -1
  45. package/lib/themes/dark-ie11.css +14 -11
  46. package/lib/themes/dark.css +14 -6
  47. package/lib/themes/dark.css.map +1 -1
  48. package/lib/themes/default-ie11.css +165 -162
  49. package/lib/themes/default.css +15 -7
  50. package/lib/themes/default.css.map +1 -1
  51. package/lib/types.d.ts +1 -1
  52. package/lib/types.js.map +1 -1
  53. package/package.json +1 -1
  54. package/scss/components/_modal.scss +1 -1
  55. package/scss/components/form/_icon-picker.scss +10 -6
  56. package/scss/components/form/_switch.scss +1 -0
  57. package/scss/components/form/_text.scss +2 -0
  58. package/scss/themes/_cxd-variables.scss +1 -1
  59. package/sdk/ang-ie11.css +14 -11
  60. package/sdk/ang.css +14 -6
  61. package/sdk/antd-ie11.css +14 -11
  62. package/sdk/antd.css +14 -6
  63. package/sdk/barcode.js +51 -51
  64. package/sdk/charts.js +14 -14
  65. package/sdk/codemirror.js +7 -7
  66. package/sdk/color-picker.js +65 -65
  67. package/sdk/cropperjs.js +2 -2
  68. package/sdk/cxd-ie11.css +165 -162
  69. package/sdk/cxd.css +15 -7
  70. package/sdk/dark-ie11.css +14 -11
  71. package/sdk/dark.css +14 -6
  72. package/sdk/exceljs.js +1 -1
  73. package/sdk/markdown.js +69 -69
  74. package/sdk/papaparse.js +1 -1
  75. package/sdk/renderers/Form/CityDB.js +1 -1
  76. package/sdk/rest.js +16 -16
  77. package/sdk/rich-text.js +62 -62
  78. package/sdk/sdk-ie11.css +165 -162
  79. package/sdk/sdk.css +15 -7
  80. package/sdk/sdk.js +1336 -1336
  81. package/sdk/thirds/hls.js/hls.js +1 -1
  82. package/sdk/thirds/mpegts.js/mpegts.js +1 -1
  83. package/sdk/tinymce.js +57 -57
  84. package/src/components/formula/Picker.tsx +1 -3
  85. package/src/components/table/HeadCellFilter.tsx +4 -1
  86. package/src/components/table/HeadCellSort.tsx +1 -1
  87. package/src/components/table/index.tsx +66 -90
  88. package/src/renderers/Action.tsx +62 -18
  89. package/src/renderers/Breadcrumb.tsx +11 -12
  90. package/src/renderers/Form/Picker.tsx +11 -1
  91. package/src/renderers/Form/wrapControl.tsx +10 -10
  92. package/src/renderers/Service.tsx +0 -1
  93. package/src/renderers/Steps.tsx +5 -5
  94. package/src/renderers/Table-v2/HeadCellSearchDropdown.tsx +14 -9
  95. package/src/renderers/Table-v2/index.tsx +130 -58
  96. package/src/store/table-v2.ts +104 -7
  97. package/src/types.ts +2 -1
@@ -10786,7 +10786,7 @@ html {
10786
10786
  body {
10787
10787
  color: #151a26;
10788
10788
  background: #ffffff;
10789
- font-size: 12px;
10789
+ font-size: 14px;
10790
10790
  font-weight: 400;
10791
10791
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro SC",
10792
10792
  "SF Pro Text", "Helvetica Neue", Helvetica, "PingFang SC", "Segoe UI",
@@ -12186,10 +12186,10 @@ img.cxd-AsideNav-itemIcon {
12186
12186
  padding: calc(
12187
12187
  (
12188
12188
  2rem - 0.0625rem * 2 -
12189
- 1.4285714286 * 12px
12189
+ 1.4285714286 * 14px
12190
12190
  ) / 2
12191
12191
  ) 0.75rem;
12192
- font-size: 12px;
12192
+ font-size: 14px;
12193
12193
  line-height: 1.4285714286;
12194
12194
  border-radius: 0.25rem;
12195
12195
  height: 2rem;
@@ -12425,7 +12425,7 @@ img.cxd-AsideNav-itemIcon {
12425
12425
  margin-left: 0.25rem;
12426
12426
  }
12427
12427
  .cxd-Button--xs img.cxd-Button-icon {
12428
- height: 12px;
12428
+ height: 14px;
12429
12429
  vertical-align: middle;
12430
12430
  }
12431
12431
  .cxd-Button--xs.cxd-Button--iconOnly {
@@ -12462,7 +12462,7 @@ img.cxd-AsideNav-itemIcon {
12462
12462
  margin-left: 0.5rem;
12463
12463
  }
12464
12464
  .cxd-Button--sm img.cxd-Button-icon {
12465
- height: 12px;
12465
+ height: 14px;
12466
12466
  vertical-align: middle;
12467
12467
  }
12468
12468
  .cxd-Button--sm.cxd-Button--iconOnly {
@@ -12472,10 +12472,10 @@ img.cxd-AsideNav-itemIcon {
12472
12472
  padding: calc(
12473
12473
  (
12474
12474
  2rem - 0.0625rem * 2 -
12475
- 1.4285714286 * 12px
12475
+ 1.4285714286 * 14px
12476
12476
  ) / 2
12477
12477
  ) 0.75rem;
12478
- font-size: 12px;
12478
+ font-size: 14px;
12479
12479
  line-height: 1.4285714286;
12480
12480
  border-radius: 0.25rem;
12481
12481
  height: 2rem;
@@ -12499,7 +12499,7 @@ img.cxd-AsideNav-itemIcon {
12499
12499
  margin-left: 0.75rem;
12500
12500
  }
12501
12501
  .cxd-Button--md img.cxd-Button-icon {
12502
- height: 12px;
12502
+ height: 14px;
12503
12503
  vertical-align: middle;
12504
12504
  }
12505
12505
  .cxd-Button--md.cxd-Button--iconOnly {
@@ -12536,7 +12536,7 @@ img.cxd-AsideNav-itemIcon {
12536
12536
  margin-left: 1rem;
12537
12537
  }
12538
12538
  .cxd-Button--lg img.cxd-Button-icon {
12539
- height: 12px;
12539
+ height: 14px;
12540
12540
  vertical-align: middle;
12541
12541
  }
12542
12542
  .cxd-Button--lg.cxd-Button--iconOnly {
@@ -12584,7 +12584,7 @@ img.cxd-AsideNav-itemIcon {
12584
12584
  margin-left: 0.75rem;
12585
12585
  }
12586
12586
  .cxd-Button img.cxd-Button-icon {
12587
- height: 12px;
12587
+ height: 14px;
12588
12588
  vertical-align: middle;
12589
12589
  }
12590
12590
  .cxd-Button:hover:focus {
@@ -13078,7 +13078,7 @@ input[type=button].cxd-Button--block {
13078
13078
  border-bottom-right-radius: 0;
13079
13079
  }
13080
13080
  .cxd-Modal-footer .cxd-Button {
13081
- width: 4.5rem;
13081
+ min-width: 4.5rem;
13082
13082
  margin-left: 0.5rem;
13083
13083
  }
13084
13084
 
@@ -13582,7 +13582,7 @@ input[type=button].cxd-Button--block {
13582
13582
  .cxd-Tooltip-title {
13583
13583
  padding: 0.5rem 0.75rem 0;
13584
13584
  margin-bottom: 0;
13585
- font-size: 12px;
13585
+ font-size: 14px;
13586
13586
  color: #333;
13587
13587
  font-weight: 500;
13588
13588
  border-top-left-radius: calc( 0.428rem - 0.0625rem );
@@ -13747,7 +13747,7 @@ input[type=button].cxd-Button--block {
13747
13747
  word-break: normal;
13748
13748
  word-spacing: normal;
13749
13749
  word-wrap: normal;
13750
- font-size: 12px;
13750
+ font-size: 14px;
13751
13751
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
13752
13752
  border: 0.0625rem solid #e8e9eb;
13753
13753
  border-radius: 0.25rem;
@@ -13817,7 +13817,7 @@ input[type=button].cxd-Button--block {
13817
13817
  word-break: normal;
13818
13818
  word-spacing: normal;
13819
13819
  word-wrap: normal;
13820
- font-size: 12px;
13820
+ font-size: 14px;
13821
13821
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
13822
13822
  border: 0.0625rem solid #e8e9eb;
13823
13823
  border-radius: 0.25rem;
@@ -14138,7 +14138,7 @@ input[type=button].cxd-Button--block {
14138
14138
  }
14139
14139
  .cxd-Toast-content .cxd-Toast-title {
14140
14140
  color: #151a26;
14141
- font-size: 12px;
14141
+ font-size: 14px;
14142
14142
  font-weight: 500;
14143
14143
  line-height: 1.5rem;
14144
14144
  margin-bottom: 0.25rem;
@@ -14279,7 +14279,7 @@ input[type=button].cxd-Button--block {
14279
14279
  }
14280
14280
  .cxd-Alert-content .cxd-Alert-title {
14281
14281
  color: #151a26;
14282
- font-size: 12px;
14282
+ font-size: 14px;
14283
14283
  font-weight: 500;
14284
14284
  line-height: 1.5rem;
14285
14285
  margin-bottom: 0.25rem;
@@ -14367,7 +14367,7 @@ input[type=button].cxd-Button--block {
14367
14367
  padding-top: calc(
14368
14368
  (
14369
14369
  2rem - 1.4285714286 *
14370
- 12px
14370
+ 14px
14371
14371
  ) / 2
14372
14372
  );
14373
14373
  }
@@ -14412,7 +14412,7 @@ input[type=button].cxd-Button--block {
14412
14412
  margin-left: 0.5rem;
14413
14413
  }
14414
14414
  .cxd-ArrayInput-addBtn img.cxd-Button-icon {
14415
- height: 12px;
14415
+ height: 14px;
14416
14416
  vertical-align: middle;
14417
14417
  }
14418
14418
  .cxd-ArrayInput-addBtn:not(:disabled):not(.is-disabled):hover {
@@ -14470,7 +14470,7 @@ input[type=button].cxd-Button--block {
14470
14470
  padding: calc(
14471
14471
  (
14472
14472
  2rem - 1.4285714286 *
14473
- 12px
14473
+ 14px
14474
14474
  ) / 2
14475
14475
  ) 0.25rem;
14476
14476
  cursor: pointer;
@@ -15063,7 +15063,7 @@ input[type=button].cxd-Button--block {
15063
15063
  }
15064
15064
  .cxd-Tabs--chrome > .cxd-Tabs-linksWrapper > .cxd-Tabs-links > li > a {
15065
15065
  /* 最少展示一个字 */
15066
- min-width: 12px;
15066
+ min-width: 14px;
15067
15067
  }
15068
15068
  .cxd-Tabs--chrome > .cxd-Tabs-linksWrapper > .cxd-Tabs-links > li > a:first-child {
15069
15069
  background: none;
@@ -16449,7 +16449,7 @@ input[type=button].cxd-Button--block {
16449
16449
  }
16450
16450
  .cxd-DropDown-menuItem, .cxd-DropDown-menu > li {
16451
16451
  padding: calc(
16452
- (2.125rem - 12px * 1.5) /
16452
+ (2.125rem - 14px * 1.5) /
16453
16453
  2
16454
16454
  ) 0.5rem;
16455
16455
  white-space: nowrap;
@@ -16938,7 +16938,7 @@ input[type=button].cxd-Button--block {
16938
16938
  }
16939
16939
  .cxd-Collapse--title-bottom .cxd-Collapse-header {
16940
16940
  text-align: center;
16941
- font-size: 12px;
16941
+ font-size: 14px;
16942
16942
  border-top: none;
16943
16943
  border-bottom: none;
16944
16944
  }
@@ -17523,7 +17523,7 @@ input[type=button].cxd-Button--block {
17523
17523
  border-left-color: #fff;
17524
17524
  }
17525
17525
  .cxd-Wizard-steps {
17526
- font-size: 12px;
17526
+ font-size: 14px;
17527
17527
  padding: 0.625rem 0;
17528
17528
  background: #fff;
17529
17529
  border-bottom: 0 solid #e8e9eb;
@@ -17644,7 +17644,7 @@ input[type=button].cxd-Button--block {
17644
17644
  cursor: pointer;
17645
17645
  vertical-align: middle;
17646
17646
  user-select: none;
17647
- line-height: calc( 1.4285714286 * 12px - 0.125rem );
17647
+ line-height: calc( 1.4285714286 * 14px - 0.125rem );
17648
17648
  display: inline-block;
17649
17649
  font-size: 12px;
17650
17650
  color: #2468f2;
@@ -17966,7 +17966,7 @@ input[type=button].cxd-Button--block {
17966
17966
  2
17967
17967
  ) 0.625rem;
17968
17968
  border-bottom: 0.0625rem solid #fff;
17969
- font-size: 12px;
17969
+ font-size: 14px;
17970
17970
  color: #333;
17971
17971
  font-weight: 400;
17972
17972
  white-space: nowrap;
@@ -19185,7 +19185,7 @@ input[type=button].cxd-Button--block {
19185
19185
  20 / 12
19186
19186
  ) / 2
19187
19187
  ) 0.625rem;
19188
- font-size: 12px;
19188
+ font-size: 14px;
19189
19189
  color: #333;
19190
19190
  font-weight: 400;
19191
19191
  white-space: nowrap;
@@ -20360,7 +20360,7 @@ input[type=button].cxd-Button--block {
20360
20360
  }
20361
20361
  .cxd-ColumnToggler-menuItem, .cxd-ColumnToggler-menu > li {
20362
20362
  padding: calc(
20363
- (2.125rem - 12px * 1.5) /
20363
+ (2.125rem - 14px * 1.5) /
20364
20364
  2
20365
20365
  ) 0.5rem;
20366
20366
  white-space: nowrap;
@@ -20674,7 +20674,7 @@ input[type=button].cxd-Button--block {
20674
20674
  .cxd-ListItem-title {
20675
20675
  margin: 0;
20676
20676
  padding: 0;
20677
- font-size: 12px;
20677
+ font-size: 14px;
20678
20678
  color: #333;
20679
20679
  font-weight: 400;
20680
20680
  }
@@ -20924,7 +20924,7 @@ input[type=button].cxd-Button--block {
20924
20924
  text-overflow: ellipsis;
20925
20925
  }
20926
20926
  .cxd-Card-subTitle {
20927
- max-height: calc(12px * 1.5 * 2);
20927
+ max-height: calc(14px * 1.5 * 2);
20928
20928
  overflow: hidden;
20929
20929
  text-overflow: ellipsis;
20930
20930
  color: #b8babf;
@@ -22234,7 +22234,7 @@ input[type=button].cxd-Button--block {
22234
22234
  font-size: 12px;
22235
22235
  }
22236
22236
  .cxd-Image-title {
22237
- font-size: 12px;
22237
+ font-size: 14px;
22238
22238
  color: #333;
22239
22239
  }
22240
22240
  .cxd-Image-overlay {
@@ -22300,10 +22300,10 @@ input[type=button].cxd-Button--block {
22300
22300
  padding: calc(
22301
22301
  (
22302
22302
  2rem - 1.4285714286 *
22303
- 12px - 0.125rem
22303
+ 14px - 0.125rem
22304
22304
  ) / 2
22305
22305
  ) 0.625rem;
22306
- font-size: 12px;
22306
+ font-size: 14px;
22307
22307
  flex-wrap: wrap;
22308
22308
  justify-content: flex-start;
22309
22309
  }
@@ -22315,7 +22315,7 @@ input[type=button].cxd-Button--block {
22315
22315
  border: none;
22316
22316
  color: #151b26;
22317
22317
  width: 100%;
22318
- height: calc(1.4285714286 * 12px);
22318
+ height: calc(1.4285714286 * 14px);
22319
22319
  }
22320
22320
  .cxd-InputBox input::placeholder {
22321
22321
  color: #b8babf;
@@ -22427,10 +22427,10 @@ input[type=button].cxd-Button--block {
22427
22427
  padding: calc(
22428
22428
  (
22429
22429
  2rem - 1.4285714286 *
22430
- 12px - 0.125rem
22430
+ 14px - 0.125rem
22431
22431
  ) / 2
22432
22432
  ) 0.625rem;
22433
- font-size: 12px;
22433
+ font-size: 14px;
22434
22434
  flex-wrap: wrap;
22435
22435
  justify-content: flex-start;
22436
22436
  align-items: center;
@@ -22630,10 +22630,10 @@ input[type=button].cxd-Button--block {
22630
22630
  padding: calc(
22631
22631
  (
22632
22632
  2rem - 1.4285714286 *
22633
- 12px - 0.125rem
22633
+ 14px - 0.125rem
22634
22634
  ) / 2
22635
22635
  ) 0.625rem;
22636
- font-size: 12px;
22636
+ font-size: 14px;
22637
22637
  flex-wrap: wrap;
22638
22638
  justify-content: flex-start;
22639
22639
  flex-wrap: wrap;
@@ -22651,7 +22651,7 @@ input[type=button].cxd-Button--block {
22651
22651
  border: none;
22652
22652
  color: #151b26;
22653
22653
  width: 100%;
22654
- height: calc(1.4285714286 * 12px);
22654
+ height: calc(1.4285714286 * 14px);
22655
22655
  }
22656
22656
  .cxd-ResultBox input::placeholder {
22657
22657
  color: #b8babf;
@@ -22782,7 +22782,7 @@ input[type=button].cxd-Button--block {
22782
22782
  .cxd-ResultBox-value {
22783
22783
  background: #f7f7f9;
22784
22784
  color: #000;
22785
- font-size: 12px;
22785
+ font-size: 14px;
22786
22786
  padding: 0 0.25rem;
22787
22787
  min-height: 1.5rem;
22788
22788
  flex-wrap: nowrap;
@@ -22906,7 +22906,7 @@ input[type=button].cxd-Button--block {
22906
22906
  display: inline-flex;
22907
22907
  flex-direction: row;
22908
22908
  line-height: 1.4285714286;
22909
- font-size: 12px;
22909
+ font-size: 14px;
22910
22910
  flex-wrap: nowrap;
22911
22911
  align-items: center;
22912
22912
  justify-content: flex-end;
@@ -22975,7 +22975,7 @@ input[type=button].cxd-Button--block {
22975
22975
  background: transparent;
22976
22976
  color: #151b26;
22977
22977
  width: 0;
22978
- height: calc(1.4285714286 * 12px);
22978
+ height: calc(1.4285714286 * 14px);
22979
22979
  }
22980
22980
  .cxd-SearchBox > input::placeholder {
22981
22981
  color: #b8babf;
@@ -23018,7 +23018,7 @@ input[type=button].cxd-Button--block {
23018
23018
  .cxd-ListMenu-groupLabel {
23019
23019
  font-size: 10px;
23020
23020
  color: #b8babf;
23021
- padding: calc( ( 1.875rem - 1.4285714286 * 12px - 0.5rem ) / 2 ) 0 0 calc(0.625rem - 0.25rem);
23021
+ padding: calc( ( 1.875rem - 1.4285714286 * 14px - 0.5rem ) / 2 ) 0 0 calc(0.625rem - 0.25rem);
23022
23022
  }
23023
23023
  .cxd-ListMenu-group:not(:first-child) > .cxd-ListMenu-groupLabel {
23024
23024
  border-top: 0.0625rem solid #dfe2e6;
@@ -23028,9 +23028,9 @@ input[type=button].cxd-Button--block {
23028
23028
  min-height: 1.875rem;
23029
23029
  color: #333;
23030
23030
  line-height: 1.4285714286;
23031
- font-size: 12px;
23031
+ font-size: 14px;
23032
23032
  cursor: pointer;
23033
- padding: calc( ( 1.875rem - 1.4285714286 * 12px ) / 2 ) 0.625rem;
23033
+ padding: calc( ( 1.875rem - 1.4285714286 * 14px ) / 2 ) 0.625rem;
23034
23034
  }
23035
23035
  .cxd-ListMenu-item.is-active {
23036
23036
  color: #2468f2;
@@ -23049,9 +23049,9 @@ input[type=button].cxd-Button--block {
23049
23049
  min-height: 1.875rem;
23050
23050
  color: #b8babf;
23051
23051
  line-height: 1.4285714286;
23052
- font-size: 12px;
23052
+ font-size: 14px;
23053
23053
  cursor: pointer;
23054
- padding: calc( ( 1.875rem - 1.4285714286 * 12px ) / 2 ) 0.625rem;
23054
+ padding: calc( ( 1.875rem - 1.4285714286 * 14px ) / 2 ) 0.625rem;
23055
23055
  }
23056
23056
 
23057
23057
  .cxd-PopOver > .cxd-ListMenu {
@@ -23183,7 +23183,7 @@ input[type=button].cxd-Button--block {
23183
23183
  }
23184
23184
 
23185
23185
  .cxd-Icon {
23186
- height: 12px;
23186
+ height: 14px;
23187
23187
  vertical-align: middle;
23188
23188
  }
23189
23189
 
@@ -23252,7 +23252,7 @@ input[type=button].cxd-Button--block {
23252
23252
  }
23253
23253
  .cxd-Steps .cxd-StepsItem-containerWrapper .cxd-StepsItem-body .cxd-StepsItem-subTitle {
23254
23254
  padding-left: 0.625rem;
23255
- font-size: 12px;
23255
+ font-size: 14px;
23256
23256
  color: #151a26;
23257
23257
  }
23258
23258
  .cxd-Steps .cxd-StepsItem-containerWrapper .cxd-StepsItem-body .cxd-StepsItem-description {
@@ -23705,7 +23705,7 @@ fieldset.cxd-Collapse--base {
23705
23705
  }
23706
23706
  fieldset.cxd-Collapse--base > legend {
23707
23707
  left: 1rem;
23708
- font-size: 12px;
23708
+ font-size: 14px;
23709
23709
  padding: 0 8px;
23710
23710
  margin: 0 0 0 -8px;
23711
23711
  }
@@ -23915,7 +23915,7 @@ fieldset.cxd-Collapse--lg:after {
23915
23915
  line-height: calc( 2rem - calc(
23916
23916
  (
23917
23917
  2rem - 1.4285714286 *
23918
- 12px - 0.125rem
23918
+ 14px - 0.125rem
23919
23919
  ) / 2
23920
23920
  ) * 2 - 0.0625rem * 2 );
23921
23921
  height: 2rem;
@@ -23923,7 +23923,7 @@ fieldset.cxd-Collapse--lg:after {
23923
23923
  padding: calc(
23924
23924
  (
23925
23925
  2rem - 1.4285714286 *
23926
- 12px - 0.125rem
23926
+ 14px - 0.125rem
23927
23927
  ) / 2
23928
23928
  ) 0.625rem;
23929
23929
  }
@@ -24035,10 +24035,10 @@ fieldset.cxd-Collapse--lg:after {
24035
24035
  padding: calc(
24036
24036
  (
24037
24037
  2rem - 1.4285714286 *
24038
- 12px - 0.125rem
24038
+ 14px - 0.125rem
24039
24039
  ) / 2
24040
24040
  ) 0.625rem;
24041
- font-size: 12px;
24041
+ font-size: 14px;
24042
24042
  flex-wrap: wrap;
24043
24043
  justify-content: flex-start;
24044
24044
  }
@@ -24050,7 +24050,7 @@ fieldset.cxd-Collapse--lg:after {
24050
24050
  border: none;
24051
24051
  color: #151b26;
24052
24052
  width: 100%;
24053
- height: calc(1.4285714286 * 12px);
24053
+ height: calc(1.4285714286 * 14px);
24054
24054
  }
24055
24055
  .cxd-TextControl-input input::placeholder {
24056
24056
  color: #b8babf;
@@ -24088,7 +24088,7 @@ fieldset.cxd-Collapse--lg:after {
24088
24088
  transition: all 0.2s;
24089
24089
  }
24090
24090
  .cxd-TextControl-spinner {
24091
- line-height: calc( 1.4285714286 * 12px );
24091
+ line-height: calc( 1.4285714286 * 14px );
24092
24092
  }
24093
24093
  .cxd-TextControl-clear {
24094
24094
  padding: 0.1875rem;
@@ -24129,7 +24129,7 @@ fieldset.cxd-Collapse--lg:after {
24129
24129
  top: calc(
24130
24130
  (
24131
24131
  2rem - 1.4285714286 *
24132
- 12px - 0.125rem
24132
+ 14px - 0.125rem
24133
24133
  ) / 2
24134
24134
  );
24135
24135
  margin-top: calc(2 * 0.0625rem);
@@ -24240,7 +24240,7 @@ fieldset.cxd-Collapse--lg:after {
24240
24240
  overflow: auto;
24241
24241
  }
24242
24242
  .cxd-TextControl-sugItem {
24243
- padding: calc( ( 2rem - 1.4285714286 * 12px - 0.125rem ) / 2 ) 0.75rem;
24243
+ padding: calc( ( 2rem - 1.4285714286 * 14px - 0.125rem ) / 2 ) 0.75rem;
24244
24244
  }
24245
24245
  .cxd-TextControl-sugItem svg {
24246
24246
  width: 1rem;
@@ -24260,7 +24260,7 @@ fieldset.cxd-Collapse--lg:after {
24260
24260
  }
24261
24261
  .cxd-TextControl-value {
24262
24262
  user-select: none;
24263
- line-height: calc( 1.4285714286 * 12px );
24263
+ line-height: calc( 1.4285714286 * 14px );
24264
24264
  vertical-align: middle;
24265
24265
  display: inline-block;
24266
24266
  }
@@ -24270,7 +24270,7 @@ fieldset.cxd-Collapse--lg:after {
24270
24270
  padding: calc(calc(
24271
24271
  (
24272
24272
  2rem - 1.4285714286 *
24273
- 12px - 0.125rem
24273
+ 14px - 0.125rem
24274
24274
  ) / 2
24275
24275
  ) - 0.125rem) calc(0.625rem - 0.1875rem);
24276
24276
  }
@@ -24289,7 +24289,7 @@ fieldset.cxd-Collapse--lg:after {
24289
24289
  }
24290
24290
  .cxd-TextControl-input--multiple .cxd-TextControl-value {
24291
24291
  white-space: nowrap;
24292
- line-height: calc( 1.4285714286 * 12px - 0.125rem );
24292
+ line-height: calc( 1.4285714286 * 14px - 0.125rem );
24293
24293
  font-size: 12px;
24294
24294
  background: #f7f7f9;
24295
24295
  border-radius: 0.125rem;
@@ -24323,6 +24323,8 @@ fieldset.cxd-Collapse--lg:after {
24323
24323
  }
24324
24324
  .cxd-TextControl-revealPassword {
24325
24325
  font-size: 0;
24326
+ display: inline-flex;
24327
+ align-items: center;
24326
24328
  }
24327
24329
  .cxd-TextControl-revealPassword .icon {
24328
24330
  width: 1rem;
@@ -24358,10 +24360,10 @@ input.cxd-TextControl-input-password {
24358
24360
  padding: calc(
24359
24361
  (
24360
24362
  2rem - 1.4285714286 *
24361
- 12px - 0.125rem
24363
+ 14px - 0.125rem
24362
24364
  ) / 2
24363
24365
  ) 0.625rem;
24364
- font-size: 12px;
24366
+ font-size: 14px;
24365
24367
  flex-wrap: wrap;
24366
24368
  justify-content: flex-start;
24367
24369
  }
@@ -24373,7 +24375,7 @@ input.cxd-TextControl-input-password {
24373
24375
  border: none;
24374
24376
  color: #151b26;
24375
24377
  width: 100%;
24376
- height: calc(1.4285714286 * 12px);
24378
+ height: calc(1.4285714286 * 14px);
24377
24379
  }
24378
24380
  .cxd-TextareaControl-input input::placeholder {
24379
24381
  color: #b8babf;
@@ -24411,7 +24413,7 @@ input.cxd-TextControl-input-password {
24411
24413
  transition: all 0.2s;
24412
24414
  }
24413
24415
  .cxd-TextareaControl-spinner {
24414
- line-height: calc( 1.4285714286 * 12px );
24416
+ line-height: calc( 1.4285714286 * 14px );
24415
24417
  }
24416
24418
  .cxd-TextareaControl-clear {
24417
24419
  padding: 0.1875rem;
@@ -24451,10 +24453,10 @@ input.cxd-TextControl-input-password {
24451
24453
  padding: calc(
24452
24454
  (
24453
24455
  2rem - 1.4285714286 *
24454
- 12px - 0.125rem
24456
+ 14px - 0.125rem
24455
24457
  ) / 2
24456
24458
  ) 0.625rem;
24457
- font-size: 12px;
24459
+ font-size: 14px;
24458
24460
  display: block;
24459
24461
  width: 100%;
24460
24462
  line-height: 1.4285714286;
@@ -24481,7 +24483,7 @@ input.cxd-TextControl-input-password {
24481
24483
  bottom: calc(
24482
24484
  (
24483
24485
  2rem - 1.4285714286 *
24484
- 12px - 0.125rem
24486
+ 14px - 0.125rem
24485
24487
  ) / 2
24486
24488
  );
24487
24489
  font-size: 12px;
@@ -24511,7 +24513,7 @@ input.cxd-TextControl-input-password {
24511
24513
  bottom: calc(
24512
24514
  (
24513
24515
  2rem - 1.4285714286 *
24514
- 12px - 0.125rem
24516
+ 14px - 0.125rem
24515
24517
  ) / 2
24516
24518
  );
24517
24519
  }
@@ -24885,7 +24887,7 @@ input.cxd-TextControl-input-password {
24885
24887
  margin-bottom: calc(
24886
24888
  (
24887
24889
  2rem - 1.4285714286 *
24888
- 12px
24890
+ 14px
24889
24891
  ) / 2
24890
24892
  );
24891
24893
  }
@@ -24934,8 +24936,8 @@ input.cxd-TextControl-input-password {
24934
24936
  .cxd-Selection > .cxd-Checkbox {
24935
24937
  display: block;
24936
24938
  line-height: 1.4285714286;
24937
- font-size: 12px;
24938
- padding: calc( ( 2rem - 1.4285714286 * 12px ) / 2 ) 0.5rem calc( ( 2rem - 1.4285714286 * 12px ) / 2 ) calc(0.5rem + 1rem);
24939
+ font-size: 14px;
24940
+ padding: calc( ( 2rem - 1.4285714286 * 14px ) / 2 ) 0.5rem calc( ( 2rem - 1.4285714286 * 14px ) / 2 ) calc(0.5rem + 1rem);
24939
24941
  }
24940
24942
  .cxd-Selection--inline > .cxd-Checkbox {
24941
24943
  display: inline-block;
@@ -24966,8 +24968,8 @@ input.cxd-TextControl-input-password {
24966
24968
  .cxd-GroupedSelection-item {
24967
24969
  display: flex;
24968
24970
  line-height: 1.4285714286;
24969
- font-size: 12px;
24970
- padding: calc( ( 2rem - 1.4285714286 * 12px ) / 2 ) 0.5rem;
24971
+ font-size: 14px;
24972
+ padding: calc( ( 2rem - 1.4285714286 * 14px ) / 2 ) 0.5rem;
24971
24973
  flex-direction: row;
24972
24974
  cursor: pointer;
24973
24975
  user-select: none;
@@ -25001,8 +25003,8 @@ input.cxd-TextControl-input-password {
25001
25003
  .cxd-GroupedSelection-placeholder {
25002
25004
  height: 2rem;
25003
25005
  line-height: 1.4285714286;
25004
- font-size: 12px;
25005
- padding: calc( ( 2rem - 1.4285714286 * 12px ) / 2 ) 0.5rem;
25006
+ font-size: 14px;
25007
+ padding: calc( ( 2rem - 1.4285714286 * 14px ) / 2 ) 0.5rem;
25006
25008
  color: #b8babf;
25007
25009
  height: 100%;
25008
25010
  display: flex;
@@ -25063,7 +25065,7 @@ input.cxd-TextControl-input-password {
25063
25065
  align-items: center;
25064
25066
  line-height: 1.5rem;
25065
25067
  position: relative;
25066
- font-size: 12px;
25068
+ font-size: 14px;
25067
25069
  padding: 0 0.5rem;
25068
25070
  flex-direction: row;
25069
25071
  cursor: pointer;
@@ -25094,8 +25096,8 @@ input.cxd-TextControl-input-password {
25094
25096
  .cxd-TreeSelection-placeholder {
25095
25097
  height: 2rem;
25096
25098
  line-height: 1.4285714286;
25097
- font-size: 12px;
25098
- padding: calc( ( 2rem - 1.4285714286 * 12px ) / 2 ) 0.5rem;
25099
+ font-size: 14px;
25100
+ padding: calc( ( 2rem - 1.4285714286 * 14px ) / 2 ) 0.5rem;
25099
25101
  color: #b8babf;
25100
25102
  }
25101
25103
 
@@ -25119,8 +25121,8 @@ input.cxd-TextControl-input-password {
25119
25121
  .cxd-ChainedSelection-item {
25120
25122
  display: flex;
25121
25123
  line-height: 1.4285714286;
25122
- font-size: 12px;
25123
- padding: calc( ( 2rem - 1.4285714286 * 12px ) / 2 ) 0.5rem;
25124
+ font-size: 14px;
25125
+ padding: calc( ( 2rem - 1.4285714286 * 14px ) / 2 ) 0.5rem;
25124
25126
  flex-direction: row;
25125
25127
  cursor: pointer;
25126
25128
  user-select: none;
@@ -25149,8 +25151,8 @@ input.cxd-TextControl-input-password {
25149
25151
  .cxd-ChainedSelection-placeholder {
25150
25152
  height: 2rem;
25151
25153
  line-height: 1.4285714286;
25152
- font-size: 12px;
25153
- padding: calc( ( 2rem - 1.4285714286 * 12px ) / 2 ) 0.5rem;
25154
+ font-size: 14px;
25155
+ padding: calc( ( 2rem - 1.4285714286 * 14px ) / 2 ) 0.5rem;
25154
25156
  color: #b8babf;
25155
25157
  }
25156
25158
 
@@ -25220,10 +25222,10 @@ input.cxd-TextControl-input-password {
25220
25222
  padding: calc(
25221
25223
  (
25222
25224
  2rem - 1.4285714286 *
25223
- 12px - 0.125rem
25225
+ 14px - 0.125rem
25224
25226
  ) / 2
25225
25227
  ) 0.625rem;
25226
- font-size: 12px;
25228
+ font-size: 14px;
25227
25229
  }
25228
25230
  .cxd-CityPicker-input::placeholder {
25229
25231
  color: #b8babf;
@@ -25255,10 +25257,10 @@ input.cxd-TextControl-input-password {
25255
25257
  padding: calc(
25256
25258
  (
25257
25259
  2rem - 1.4285714286 *
25258
- 12px - 0.125rem
25260
+ 14px - 0.125rem
25259
25261
  ) / 2
25260
25262
  ) 0.625rem;
25261
- font-size: 12px;
25263
+ font-size: 14px;
25262
25264
  display: inline-flex !important;
25263
25265
  }
25264
25266
  .cxd-CityArea-Input::placeholder {
@@ -25283,6 +25285,7 @@ input.cxd-TextControl-input-password {
25283
25285
  margin: 0;
25284
25286
  vertical-align: middle;
25285
25287
  text-align: left;
25288
+ transition: all 0.5s ease;
25286
25289
  }
25287
25290
  .cxd-Switch.is-disabled {
25288
25291
  cursor: not-allowed;
@@ -25361,7 +25364,7 @@ input.cxd-TextControl-input-password {
25361
25364
  margin: 0;
25362
25365
  padding: 0;
25363
25366
  line-height: 2rem;
25364
- font-size: 12px;
25367
+ font-size: 14px;
25365
25368
  height: 2rem;
25366
25369
  display: inline-block;
25367
25370
  vertical-align: middle;
@@ -25629,12 +25632,12 @@ input.cxd-TextControl-input-password {
25629
25632
  align-items: center;
25630
25633
  outline: none;
25631
25634
  position: relative;
25632
- font-size: 12px;
25635
+ font-size: 14px;
25633
25636
  border: 0.0625rem solid #e8e9eb;
25634
25637
  background: #fff;
25635
25638
  border-radius: 0.25rem;
25636
25639
  min-height: 2rem;
25637
- padding: calc( ( 2rem - 1.4285714286 * 12px - 0.0625rem * 2 ) / 2 ) 0 calc( ( 2rem - 1.4285714286 * 12px - 0.0625rem * 2 ) / 2 ) 0.625rem;
25640
+ padding: calc( ( 2rem - 1.4285714286 * 14px - 0.0625rem * 2 ) / 2 ) 0 calc( ( 2rem - 1.4285714286 * 14px - 0.0625rem * 2 ) / 2 ) 0.625rem;
25638
25641
  cursor: pointer;
25639
25642
  color: #000;
25640
25643
  }
@@ -25693,7 +25696,7 @@ input.cxd-TextControl-input-password {
25693
25696
  color: #999;
25694
25697
  }
25695
25698
  .cxd-Select-value {
25696
- line-height: calc( 1.4285714286 * 12px );
25699
+ line-height: calc( 1.4285714286 * 14px );
25697
25700
  white-space: nowrap;
25698
25701
  max-width: 100%;
25699
25702
  overflow: hidden;
@@ -25725,7 +25728,7 @@ input.cxd-TextControl-input-password {
25725
25728
  position: static;
25726
25729
  white-space: normal;
25727
25730
  user-select: none;
25728
- line-height: calc( 1.4285714286 * 12px - 0.125rem );
25731
+ line-height: calc( 1.4285714286 * 14px - 0.125rem );
25729
25732
  display: inline-block;
25730
25733
  vertical-align: middle;
25731
25734
  font-size: 12px;
@@ -25850,7 +25853,7 @@ input.cxd-TextControl-input-password {
25850
25853
  .cxd-Select-option {
25851
25854
  cursor: pointer;
25852
25855
  min-width: 7.5rem;
25853
- padding: calc( ( 1.5rem - 1.4285714286 * 12px ) / 2 ) 0.625rem;
25856
+ padding: calc( ( 1.5rem - 1.4285714286 * 14px ) / 2 ) 0.625rem;
25854
25857
  }
25855
25858
  .cxd-Select-option.is-active {
25856
25859
  color: #2468f2;
@@ -25880,7 +25883,7 @@ input.cxd-TextControl-input-password {
25880
25883
  line-height: 1.4285714286;
25881
25884
  font-size: 12px;
25882
25885
  user-select: none;
25883
- padding: calc( ( 1.5rem - 1.4285714286 * 12px ) / 2 ) 0.625rem;
25886
+ padding: calc( ( 1.5rem - 1.4285714286 * 14px ) / 2 ) 0.625rem;
25884
25887
  }
25885
25888
  .cxd-Select-option-hl {
25886
25889
  color: #2468f2;
@@ -25888,7 +25891,7 @@ input.cxd-TextControl-input-password {
25888
25891
  .cxd-Select-addBtn {
25889
25892
  display: block;
25890
25893
  cursor: pointer;
25891
- padding: calc( ( 1.5rem - 1.4285714286 * 12px ) / 2 ) 0.625rem;
25894
+ padding: calc( ( 1.5rem - 1.4285714286 * 14px ) / 2 ) 0.625rem;
25892
25895
  }
25893
25896
  .cxd-Select-addBtn:hover {
25894
25897
  text-decoration: none;
@@ -25903,7 +25906,7 @@ input.cxd-TextControl-input-password {
25903
25906
  color: #000;
25904
25907
  }
25905
25908
  .cxd-Select-spinner {
25906
- line-height: calc( 1.4285714286 * 12px );
25909
+ line-height: calc( 1.4285714286 * 14px );
25907
25910
  }
25908
25911
  .cxd-Select-clear {
25909
25912
  padding: 0.1875rem;
@@ -25980,8 +25983,8 @@ input.cxd-TextControl-input-password {
25980
25983
  .cxd-Selections-title {
25981
25984
  height: 2rem;
25982
25985
  background: #f7f7f9;
25983
- font-size: 12px;
25984
- padding: calc( ( 2rem - 1.4285714286 * 12px ) / 2 ) 0.5rem;
25986
+ font-size: 14px;
25987
+ padding: calc( ( 2rem - 1.4285714286 * 14px ) / 2 ) 0.5rem;
25985
25988
  }
25986
25989
  .cxd-Selections-placeholder {
25987
25990
  color: #b8babf;
@@ -25993,7 +25996,7 @@ input.cxd-TextControl-input-password {
25993
25996
  display: flex;
25994
25997
  flex-direction: column;
25995
25998
  justify-content: center;
25996
- font-size: 12px;
25999
+ font-size: 14px;
25997
26000
  }
25998
26001
  .cxd-Selections-items {
25999
26002
  flex-grow: 1;
@@ -26003,9 +26006,9 @@ input.cxd-TextControl-input-password {
26003
26006
  flex-direction: row;
26004
26007
  height: 2rem;
26005
26008
  line-height: 1.4285714286;
26006
- font-size: 12px;
26009
+ font-size: 14px;
26007
26010
  align-items: center;
26008
- padding: calc( ( 2rem - 1.4285714286 * 12px ) / 2 ) 0.5rem;
26011
+ padding: calc( ( 2rem - 1.4285714286 * 14px ) / 2 ) 0.5rem;
26009
26012
  }
26010
26013
  .cxd-Selections-item > label {
26011
26014
  flex-basis: 3.125rem;
@@ -26044,7 +26047,7 @@ input.cxd-TextControl-input-password {
26044
26047
  .cxd-ListControl-item {
26045
26048
  position: relative;
26046
26049
  user-select: none;
26047
- font-size: 12px;
26050
+ font-size: 14px;
26048
26051
  display: inline-block;
26049
26052
  vertical-align: middle;
26050
26053
  margin: calc(0.625rem / 2);
@@ -26251,14 +26254,14 @@ input.cxd-TextControl-input-password {
26251
26254
  transform: translateY(-50%);
26252
26255
  }
26253
26256
  .cxd-MapPicker-itemTitle {
26254
- font-size: 12px;
26257
+ font-size: 14px;
26255
26258
  }
26256
26259
  .cxd-MapPicker-itemDesc {
26257
26260
  font-size: 12px;
26258
26261
  }
26259
26262
  .cxd-MapPicker-sugItem {
26260
26263
  cursor: pointer;
26261
- padding: calc( ( 1.5rem - 1.4285714286 * 12px ) / 2 ) 0.625rem;
26264
+ padding: calc( ( 1.5rem - 1.4285714286 * 14px ) / 2 ) 0.625rem;
26262
26265
  }
26263
26266
  .cxd-MapPicker-sugItem:hover {
26264
26267
  color: #2468f2;
@@ -26279,11 +26282,11 @@ input.cxd-TextControl-input-password {
26279
26282
  flex-wrap: nowrap;
26280
26283
  white-space: nowrap;
26281
26284
  border: 0.0625rem solid #e8e9eb;
26282
- font-size: 12px;
26285
+ font-size: 14px;
26283
26286
  padding: calc(
26284
26287
  (
26285
26288
  2rem - 1.4285714286 *
26286
- 12px
26289
+ 14px
26287
26290
  ) / 2 - 0.0625rem
26288
26291
  ) 0.75rem;
26289
26292
  background: #fff;
@@ -26309,7 +26312,7 @@ input.cxd-TextControl-input-password {
26309
26312
  flex-grow: 1;
26310
26313
  padding: 0;
26311
26314
  margin: 0;
26312
- height: calc(12px * 1.4285714286);
26315
+ height: calc(14px * 1.4285714286);
26313
26316
  }
26314
26317
  .cxd-ColorPicker-input::placeholder {
26315
26318
  color: #999;
@@ -26790,7 +26793,7 @@ input.cxd-TextControl-input-password {
26790
26793
  .cxd-CalendarInput {
26791
26794
  outline: none;
26792
26795
  width: 3.5rem;
26793
- font-size: 12px;
26796
+ font-size: 14px;
26794
26797
  color: #2468f2;
26795
26798
  border: 1px solid #e8e9eb;
26796
26799
  border-radius: 0.25rem;
@@ -26799,7 +26802,7 @@ input.cxd-TextControl-input-password {
26799
26802
  padding: calc(
26800
26803
  (
26801
26804
  2.5rem - 1.5 *
26802
- 12px
26805
+ 14px
26803
26806
  ) / 2
26804
26807
  ) 0.625rem;
26805
26808
  box-shadow: none;
@@ -27514,7 +27517,7 @@ td.rdtQuarter.rdtDisabled:hover {
27514
27517
  padding: calc(
27515
27518
  (
27516
27519
  2rem - 0.0625rem * 2 -
27517
- 1.4285714286 * 12px
27520
+ 1.4285714286 * 14px
27518
27521
  ) / 2
27519
27522
  ) 0.75rem;
27520
27523
  cursor: pointer;
@@ -28311,8 +28314,8 @@ td.rdtQuarter.rdtDisabled:hover {
28311
28314
  border: 0.0625rem solid #e8e9eb;
28312
28315
  border-radius: 0.25rem;
28313
28316
  line-height: 1.4285714286;
28314
- padding: calc( ( calc(2rem * 0.85) - 1.4285714286 * 12px - 0.125rem ) / 2 ) 0.625rem;
28315
- font-size: 12px;
28317
+ padding: calc( ( calc(2rem * 0.85) - 1.4285714286 * 14px - 0.125rem ) / 2 ) 0.625rem;
28318
+ font-size: 14px;
28316
28319
  }
28317
28320
  .cxd-Tree-itemInput > input::placeholder {
28318
28321
  color: #b8babf;
@@ -28441,10 +28444,10 @@ td.rdtQuarter.rdtDisabled:hover {
28441
28444
  padding: calc(
28442
28445
  (
28443
28446
  2rem - 1.4285714286 *
28444
- 12px - 0.125rem
28447
+ 14px - 0.125rem
28445
28448
  ) / 2
28446
28449
  ) 0.625rem;
28447
- font-size: 12px;
28450
+ font-size: 14px;
28448
28451
  flex-wrap: wrap;
28449
28452
  justify-content: flex-start;
28450
28453
  }
@@ -28456,7 +28459,7 @@ td.rdtQuarter.rdtDisabled:hover {
28456
28459
  border: none;
28457
28460
  color: #151b26;
28458
28461
  width: 100%;
28459
- height: calc(1.4285714286 * 12px);
28462
+ height: calc(1.4285714286 * 14px);
28460
28463
  }
28461
28464
  .cxd-TreeSelect-input input::placeholder {
28462
28465
  color: #b8babf;
@@ -28494,7 +28497,7 @@ td.rdtQuarter.rdtDisabled:hover {
28494
28497
  transition: all 0.2s;
28495
28498
  }
28496
28499
  .cxd-TreeSelect-spinner {
28497
- line-height: calc( 1.4285714286 * 12px );
28500
+ line-height: calc( 1.4285714286 * 14px );
28498
28501
  }
28499
28502
  .cxd-TreeSelect-clear {
28500
28503
  padding: 0.1875rem;
@@ -28556,7 +28559,7 @@ td.rdtQuarter.rdtDisabled:hover {
28556
28559
  padding-top: calc(
28557
28560
  (
28558
28561
  2rem - 1.4285714286 *
28559
- 12px
28562
+ 14px
28560
28563
  ) / 2
28561
28564
  );
28562
28565
  }
@@ -28615,7 +28618,7 @@ td.rdtQuarter.rdtDisabled:hover {
28615
28618
  margin-left: 0.5rem;
28616
28619
  }
28617
28620
  .cxd-Combo-addBtn img.cxd-Button-icon {
28618
- height: 12px;
28621
+ height: 14px;
28619
28622
  vertical-align: middle;
28620
28623
  }
28621
28624
  .cxd-Combo-addBtn:not(:disabled):not(.is-disabled):hover {
@@ -28706,7 +28709,7 @@ td.rdtQuarter.rdtDisabled:hover {
28706
28709
  padding-top: calc(
28707
28710
  (
28708
28711
  2rem - 1.4285714286 *
28709
- 12px
28712
+ 14px
28710
28713
  ) / 2
28711
28714
  );
28712
28715
  }
@@ -28854,7 +28857,7 @@ td.rdtQuarter.rdtDisabled:hover {
28854
28857
  .cxd-SubForm-value {
28855
28858
  background: #f7f7f9;
28856
28859
  color: #000;
28857
- font-size: 12px;
28860
+ font-size: 14px;
28858
28861
  padding: 0 0.25rem;
28859
28862
  min-height: 1.5rem;
28860
28863
  flex-wrap: nowrap;
@@ -28965,10 +28968,10 @@ td.rdtQuarter.rdtDisabled:hover {
28965
28968
  padding: calc(
28966
28969
  (
28967
28970
  2rem - 1.4285714286 *
28968
- 12px - 0.125rem
28971
+ 14px - 0.125rem
28969
28972
  ) / 2
28970
28973
  ) 0.625rem;
28971
- font-size: 12px;
28974
+ font-size: 14px;
28972
28975
  flex-wrap: wrap;
28973
28976
  justify-content: flex-start;
28974
28977
  }
@@ -28980,7 +28983,7 @@ td.rdtQuarter.rdtDisabled:hover {
28980
28983
  border: none;
28981
28984
  color: #151b26;
28982
28985
  width: 100%;
28983
- height: calc(1.4285714286 * 12px);
28986
+ height: calc(1.4285714286 * 14px);
28984
28987
  }
28985
28988
  .cxd-Picker-input input::placeholder {
28986
28989
  color: #b8babf;
@@ -29018,7 +29021,7 @@ td.rdtQuarter.rdtDisabled:hover {
29018
29021
  transition: all 0.2s;
29019
29022
  }
29020
29023
  .cxd-Picker-spinner {
29021
- line-height: calc( 1.4285714286 * 12px );
29024
+ line-height: calc( 1.4285714286 * 14px );
29022
29025
  }
29023
29026
  .cxd-Picker-clear {
29024
29027
  padding: 0.1875rem;
@@ -29090,7 +29093,7 @@ td.rdtQuarter.rdtDisabled:hover {
29090
29093
  user-select: none;
29091
29094
  white-space: nowrap;
29092
29095
  vertical-align: middle;
29093
- line-height: calc( 1.4285714286 * 12px - 0.125rem );
29096
+ line-height: calc( 1.4285714286 * 14px - 0.125rem );
29094
29097
  display: inline-block;
29095
29098
  font-size: 12px;
29096
29099
  color: #2468f2;
@@ -29229,7 +29232,7 @@ td.rdtQuarter.rdtDisabled:hover {
29229
29232
  margin-left: 0.5rem;
29230
29233
  }
29231
29234
  .cxd-TagControl-sugItem img.cxd-Button-icon {
29232
- height: 12px;
29235
+ height: 14px;
29233
29236
  vertical-align: middle;
29234
29237
  }
29235
29238
  .cxd-TagControl-sugItem:not(:disabled):not(.is-disabled):hover {
@@ -29344,8 +29347,8 @@ td.rdtQuarter.rdtDisabled:hover {
29344
29347
  background: #f7f7f9;
29345
29348
  height: 1.875rem;
29346
29349
  line-height: 1.4285714286;
29347
- font-size: 12px;
29348
- padding: calc( ( 1.875rem - 1.4285714286 * 12px ) / 2 ) 0.5rem;
29350
+ font-size: 14px;
29351
+ padding: calc( ( 1.875rem - 1.4285714286 * 14px ) / 2 ) 0.5rem;
29349
29352
  flex-direction: row;
29350
29353
  border-radius: 0.25rem 0.25rem 0 0;
29351
29354
  }
@@ -29465,8 +29468,8 @@ td.rdtQuarter.rdtDisabled:hover {
29465
29468
  .cxd-TabsTransfer-placeholder {
29466
29469
  height: 2rem;
29467
29470
  line-height: 1.4285714286;
29468
- font-size: 12px;
29469
- padding: calc( ( 2rem - 1.4285714286 * 12px ) / 2 ) 0.5rem;
29471
+ font-size: 14px;
29472
+ padding: calc( ( 2rem - 1.4285714286 * 14px ) / 2 ) 0.5rem;
29470
29473
  color: #b8babf;
29471
29474
  }
29472
29475
  .cxd-TabsTransfer-tab {
@@ -29619,7 +29622,7 @@ td.rdtQuarter.rdtDisabled:hover {
29619
29622
  line-height: 1.4285714286;
29620
29623
  font-size: 12px;
29621
29624
  user-select: none;
29622
- padding: calc( ( 1.5rem - 1.4285714286 * 12px ) / 2 ) 0.625rem;
29625
+ padding: calc( ( 1.5rem - 1.4285714286 * 14px ) / 2 ) 0.625rem;
29623
29626
  }
29624
29627
  .cxd-NestedSelect-menu {
29625
29628
  width: 10rem;
@@ -29797,10 +29800,10 @@ td.rdtQuarter.rdtDisabled:hover {
29797
29800
  padding: calc(
29798
29801
  (
29799
29802
  2rem - 1.4285714286 *
29800
- 12px - 0.125rem
29803
+ 14px - 0.125rem
29801
29804
  ) / 2
29802
29805
  ) 0.625rem;
29803
- font-size: 12px;
29806
+ font-size: 14px;
29804
29807
  flex-wrap: wrap;
29805
29808
  justify-content: flex-start;
29806
29809
  }
@@ -29812,7 +29815,7 @@ td.rdtQuarter.rdtDisabled:hover {
29812
29815
  border: none;
29813
29816
  color: #151b26;
29814
29817
  width: 100%;
29815
- height: calc(1.4285714286 * 12px);
29818
+ height: calc(1.4285714286 * 14px);
29816
29819
  }
29817
29820
  .cxd-IconPickerControl-input input::placeholder {
29818
29821
  color: #b8babf;
@@ -29850,7 +29853,7 @@ td.rdtQuarter.rdtDisabled:hover {
29850
29853
  transition: all 0.2s;
29851
29854
  }
29852
29855
  .cxd-IconPickerControl-spinner {
29853
- line-height: calc( 1.4285714286 * 12px );
29856
+ line-height: calc( 1.4285714286 * 14px );
29854
29857
  }
29855
29858
  .cxd-IconPickerControl-clear {
29856
29859
  padding: 0.1875rem;
@@ -29886,23 +29889,19 @@ td.rdtQuarter.rdtDisabled:hover {
29886
29889
  .cxd-IconPickerControl-placeholder {
29887
29890
  color: #b8babf;
29888
29891
  user-select: none;
29889
- position: absolute;
29890
- left: 0.625rem;
29891
- top: calc(
29892
- (
29893
- 2rem - 1.4285714286 *
29894
- 12px - 0.125rem
29895
- ) / 2
29896
- );
29897
- margin-top: calc(2 * 0.0625rem);
29898
29892
  line-height: 1.4285714286;
29893
+ position: absolute;
29894
+ left: 2px;
29895
+ overflow: hidden;
29896
+ width: 100%;
29899
29897
  }
29900
29898
  .cxd-IconPickerControl-valueWrap {
29901
- display: flex;
29902
29899
  justify-content: space-between;
29903
29900
  flex-grow: 1;
29904
29901
  line-height: 1;
29905
29902
  white-space: nowrap;
29903
+ width: 100%;
29904
+ position: relative;
29906
29905
  }
29907
29906
  .cxd-IconPickerControl-valueWrap > input {
29908
29907
  display: inline-block;
@@ -29912,6 +29911,7 @@ td.rdtQuarter.rdtDisabled:hover {
29912
29911
  .cxd-IconPickerControl-input--withAC {
29913
29912
  position: relative;
29914
29913
  flex-wrap: wrap;
29914
+ width: 100%;
29915
29915
  }
29916
29916
  .cxd-IconPickerControl-input--withAC > input {
29917
29917
  width: auto;
@@ -29966,9 +29966,12 @@ td.rdtQuarter.rdtDisabled:hover {
29966
29966
  }
29967
29967
  .cxd-IconPickerControl-value {
29968
29968
  user-select: none;
29969
- line-height: calc( 1.4285714286 * 12px );
29969
+ line-height: calc( 1.4285714286 * 14px );
29970
29970
  vertical-align: middle;
29971
29971
  display: inline-block;
29972
+ overflow: hidden;
29973
+ width: 100%;
29974
+ text-overflow: ellipsis;
29972
29975
  }
29973
29976
  .cxd-IconPickerControl-value > i {
29974
29977
  display: inline-block;
@@ -29976,7 +29979,7 @@ td.rdtQuarter.rdtDisabled:hover {
29976
29979
  }
29977
29980
 
29978
29981
  .cxd-Form {
29979
- font-size: 12px;
29982
+ font-size: 14px;
29980
29983
  position: relative;
29981
29984
  }
29982
29985
  .cxd-Form--quickEdit > div:last-of-type {
@@ -29991,7 +29994,7 @@ td.rdtQuarter.rdtDisabled:hover {
29991
29994
  padding-top: calc(
29992
29995
  (
29993
29996
  2rem - 1.4285714286 *
29994
- 12px - 0.125rem
29997
+ 14px - 0.125rem
29995
29998
  ) / 2
29996
29999
  );
29997
30000
  }
@@ -30001,13 +30004,13 @@ td.rdtQuarter.rdtDisabled:hover {
30001
30004
  padding-top: calc(
30002
30005
  (
30003
30006
  2rem - 1.4285714286 *
30004
- 12px
30007
+ 14px
30005
30008
  ) / 2
30006
30009
  );
30007
30010
  padding-bottom: calc(
30008
30011
  (
30009
30012
  2rem - 1.4285714286 *
30010
- 12px
30013
+ 14px
30011
30014
  ) / 2
30012
30015
  );
30013
30016
  margin-bottom: 0;
@@ -30022,7 +30025,7 @@ td.rdtQuarter.rdtDisabled:hover {
30022
30025
  padding: calc(
30023
30026
  (
30024
30027
  2rem - 1.4285714286 *
30025
- 12px - 0.125rem
30028
+ 14px - 0.125rem
30026
30029
  ) / 2
30027
30030
  ) 0.625rem;
30028
30031
  }
@@ -30032,7 +30035,7 @@ td.rdtQuarter.rdtDisabled:hover {
30032
30035
  padding: calc(
30033
30036
  (
30034
30037
  2rem - 1.4285714286 *
30035
- 12px - 0.125rem
30038
+ 14px - 0.125rem
30036
30039
  ) / 2
30037
30040
  ) 0.625rem;
30038
30041
  }
@@ -30041,7 +30044,7 @@ td.rdtQuarter.rdtDisabled:hover {
30041
30044
  font-weight: 400;
30042
30045
  margin-bottom: 0.25rem;
30043
30046
  position: relative;
30044
- font-size: 12px;
30047
+ font-size: 14px;
30045
30048
  color: #5c5f66;
30046
30049
  }
30047
30050
  .cxd-Form-label > span {
@@ -30075,7 +30078,7 @@ td.rdtQuarter.rdtDisabled:hover {
30075
30078
  padding-top: calc(
30076
30079
  (
30077
30080
  2rem - 1.4285714286 *
30078
- 12px - 0.125rem
30081
+ 14px - 0.125rem
30079
30082
  ) / 2
30080
30083
  );
30081
30084
  vertical-align: top;
@@ -30101,7 +30104,7 @@ td.rdtQuarter.rdtDisabled:hover {
30101
30104
  padding-top: calc(
30102
30105
  (
30103
30106
  2rem - 1.4285714286 *
30104
- 12px
30107
+ 14px
30105
30108
  ) / 2
30106
30109
  );
30107
30110
  vertical-align: top;
@@ -30225,7 +30228,7 @@ td.rdtQuarter.rdtDisabled:hover {
30225
30228
  padding-top: calc(
30226
30229
  (
30227
30230
  2rem - 1.4285714286 *
30228
- 12px
30231
+ 14px
30229
30232
  ) / 2
30230
30233
  );
30231
30234
  margin-bottom: 0;
@@ -30328,7 +30331,7 @@ td.rdtQuarter.rdtDisabled:hover {
30328
30331
  padding-top: calc(
30329
30332
  (
30330
30333
  2rem - 1.4285714286 *
30331
- 12px
30334
+ 14px
30332
30335
  ) / 2
30333
30336
  );
30334
30337
  margin-bottom: 0;
@@ -30347,7 +30350,7 @@ td.rdtQuarter.rdtDisabled:hover {
30347
30350
  padding-top: calc(
30348
30351
  (
30349
30352
  2rem - 1.4285714286 *
30350
- 12px
30353
+ 14px
30351
30354
  ) / 2
30352
30355
  );
30353
30356
  }
@@ -30390,7 +30393,7 @@ td.rdtQuarter.rdtDisabled:hover {
30390
30393
  padding-top: calc(
30391
30394
  (
30392
30395
  2rem - 1.4285714286 *
30393
- 12px
30396
+ 14px
30394
30397
  ) / 2
30395
30398
  );
30396
30399
  padding-right: 0.625rem;
@@ -30498,7 +30501,7 @@ td.rdtQuarter.rdtDisabled:hover {
30498
30501
  font-size: 16px;
30499
30502
  }
30500
30503
  .cxd-Form .cxd-Form-item .cxd-Form-description {
30501
- font-size: 12px;
30504
+ font-size: 14px;
30502
30505
  }
30503
30506
  .cxd-Form .cxd-Form-item .cxd-TextControl-input {
30504
30507
  font-size: 16px;
@@ -30531,7 +30534,7 @@ td.rdtQuarter.rdtDisabled:hover {
30531
30534
  height: 2rem;
30532
30535
  }
30533
30536
  .cxd-Form .cxd-Form-item .cxd-Form-hint {
30534
- font-size: 12px;
30537
+ font-size: 14px;
30535
30538
  margin-left: 0;
30536
30539
  color: #b8babf;
30537
30540
  }
@@ -30543,7 +30546,7 @@ td.rdtQuarter.rdtDisabled:hover {
30543
30546
  }
30544
30547
  .cxd-Form .cxd-Form-item .cxd-Form-description,
30545
30548
  .cxd-Form .cxd-Form-item .cxd-Form-feedback {
30546
- font-size: 12px;
30549
+ font-size: 14px;
30547
30550
  }
30548
30551
  .cxd-Form .cxd-Form-item .cxd-InputGroup .cxd-Select,
30549
30552
  .cxd-Form .cxd-Form-item .cxd-InputGroup .cxd-InputGroup-btn .cxd-Button {
@@ -32882,7 +32885,7 @@ a.text-black:hover {
32882
32885
  }
32883
32886
 
32884
32887
  .text-base {
32885
- font-size: 12px !important;
32888
+ font-size: 14px !important;
32886
32889
  }
32887
32890
 
32888
32891
  .text-sm {