amis 1.4.2-beta.13 → 1.4.2-beta.15

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 (128) hide show
  1. package/lib/Schema.d.ts +4 -3
  2. package/lib/Schema.js.map +1 -1
  3. package/lib/components/AssociatedSelection.js +2 -2
  4. package/lib/components/AssociatedSelection.js.map +2 -2
  5. package/lib/components/Checkbox.d.ts +20 -20
  6. package/lib/components/Collapse.d.ts +51 -23
  7. package/lib/components/Collapse.js +69 -11
  8. package/lib/components/Collapse.js.map +2 -2
  9. package/lib/components/CollapseGroup.d.ts +88 -0
  10. package/lib/components/CollapseGroup.js +81 -0
  11. package/lib/components/CollapseGroup.js.map +13 -0
  12. package/lib/components/Editor.d.ts +84 -84
  13. package/lib/components/GridNav.d.ts +52 -0
  14. package/lib/components/GridNav.js +123 -0
  15. package/lib/components/GridNav.js.map +13 -0
  16. package/lib/components/ListGroup.d.ts +21 -21
  17. package/lib/components/Tabs.d.ts +20 -20
  18. package/lib/components/TabsTransfer.d.ts +84 -84
  19. package/lib/components/Toast.d.ts +86 -85
  20. package/lib/components/Toast.js +6 -3
  21. package/lib/components/Toast.js.map +2 -2
  22. package/lib/components/Transfer.d.ts +84 -84
  23. package/lib/components/TransferDropDown.d.ts +84 -84
  24. package/lib/components/Tree.d.ts +115 -84
  25. package/lib/components/Tree.js +183 -30
  26. package/lib/components/Tree.js.map +2 -2
  27. package/lib/envOverwrite.d.ts +1 -1
  28. package/lib/envOverwrite.js +24 -9
  29. package/lib/envOverwrite.js.map +2 -2
  30. package/lib/factory.d.ts +11 -1
  31. package/lib/factory.js +31 -4
  32. package/lib/factory.js.map +2 -2
  33. package/lib/icons/drag-bar.js +10 -3
  34. package/lib/index.d.ts +2 -0
  35. package/lib/index.js +3 -1
  36. package/lib/index.js.map +2 -2
  37. package/lib/renderers/Collapse.d.ts +25 -20
  38. package/lib/renderers/Collapse.js +10 -73
  39. package/lib/renderers/Collapse.js.map +2 -2
  40. package/lib/renderers/CollapseGroup.d.ts +42 -0
  41. package/lib/renderers/CollapseGroup.js +33 -0
  42. package/lib/renderers/CollapseGroup.js.map +13 -0
  43. package/lib/renderers/Form/InputCity.d.ts +84 -84
  44. package/lib/renderers/Form/Item.js +2 -1
  45. package/lib/renderers/Form/Item.js.map +2 -2
  46. package/lib/renderers/GridNav.d.ts +99 -0
  47. package/lib/renderers/GridNav.js +82 -0
  48. package/lib/renderers/GridNav.js.map +13 -0
  49. package/lib/store/formItem.js +44 -4
  50. package/lib/store/formItem.js.map +2 -2
  51. package/lib/themes/ang-ie11.css +194 -27
  52. package/lib/themes/ang.css +194 -27
  53. package/lib/themes/ang.css.map +1 -1
  54. package/lib/themes/antd-ie11.css +194 -27
  55. package/lib/themes/antd.css +194 -27
  56. package/lib/themes/antd.css.map +1 -1
  57. package/lib/themes/cxd-ie11.css +201 -34
  58. package/lib/themes/cxd.css +201 -34
  59. package/lib/themes/cxd.css.map +1 -1
  60. package/lib/themes/dark-ie11.css +194 -27
  61. package/lib/themes/dark.css +194 -27
  62. package/lib/themes/dark.css.map +1 -1
  63. package/lib/themes/default.css +201 -34
  64. package/lib/themes/default.css.map +1 -1
  65. package/lib/types.d.ts +1 -1
  66. package/lib/types.js.map +1 -1
  67. package/lib/utils/api.d.ts +1 -0
  68. package/lib/utils/api.js +77 -6
  69. package/lib/utils/api.js.map +2 -2
  70. package/lib/utils/helper.d.ts +6 -0
  71. package/lib/utils/helper.js +18 -1
  72. package/lib/utils/helper.js.map +2 -2
  73. package/package.json +1 -1
  74. package/schema.json +242 -34
  75. package/scss/components/_anchor-nav.scss +1 -0
  76. package/scss/components/_collapse-group.scss +11 -0
  77. package/scss/components/_collapse.scss +33 -22
  78. package/scss/components/_grid-nav.scss +128 -0
  79. package/scss/components/_nav.scss +1 -1
  80. package/scss/components/_spinner.scss +5 -4
  81. package/scss/components/_table.scss +6 -0
  82. package/scss/components/form/_combo.scss +4 -0
  83. package/scss/components/form/_tree.scss +42 -0
  84. package/scss/themes/_common.scss +2 -0
  85. package/scss/themes/_cxd-variables.scss +6 -7
  86. package/scss/themes/cxd.scss +1 -0
  87. package/sdk/ang-ie11.css +227 -28
  88. package/sdk/ang.css +227 -27
  89. package/sdk/antd-ie11.css +227 -28
  90. package/sdk/antd.css +227 -27
  91. package/sdk/charts.js +13 -13
  92. package/sdk/color-picker.js +65 -65
  93. package/sdk/cropperjs.js +2 -2
  94. package/sdk/cxd-ie11.css +233 -32
  95. package/sdk/cxd.css +234 -34
  96. package/sdk/dark-ie11.css +227 -28
  97. package/sdk/dark.css +227 -27
  98. package/sdk/exceljs.js +1 -1
  99. package/sdk/markdown.js +69 -69
  100. package/sdk/papaparse.js +1 -1
  101. package/sdk/renderers/Form/CityDB.js +1 -1
  102. package/sdk/rest.js +18 -18
  103. package/sdk/rich-text.js +62 -62
  104. package/sdk/sdk-ie11.css +233 -32
  105. package/sdk/sdk.css +234 -34
  106. package/sdk/sdk.js +1179 -1145
  107. package/sdk/thirds/hls.js/hls.js +1 -1
  108. package/sdk/thirds/mpegts.js/mpegts.js +1 -1
  109. package/sdk/tinymce.js +57 -57
  110. package/src/Schema.ts +5 -1
  111. package/src/components/AssociatedSelection.tsx +3 -1
  112. package/src/components/Collapse.tsx +144 -20
  113. package/src/components/CollapseGroup.tsx +130 -0
  114. package/src/components/GridNav.tsx +233 -0
  115. package/src/components/Toast.tsx +23 -16
  116. package/src/components/Tree.tsx +194 -8
  117. package/src/envOverwrite.ts +20 -7
  118. package/src/factory.tsx +52 -6
  119. package/src/icons/drag-bar.svg +12 -6
  120. package/src/index.tsx +2 -0
  121. package/src/renderers/Collapse.tsx +70 -117
  122. package/src/renderers/CollapseGroup.tsx +80 -0
  123. package/src/renderers/GridNav.tsx +204 -0
  124. package/src/store/formItem.ts +94 -2
  125. package/src/types.ts +1 -1
  126. package/src/utils/api.ts +93 -6
  127. package/src/utils/helper.ts +19 -0
  128. package/tsconfig-for-declaration.json +1 -1
package/sdk/sdk-ie11.css CHANGED
@@ -23897,8 +23897,8 @@ readers do not read off random characters that represent icons */
23897
23897
  cursor: move;
23898
23898
  position: absolute;
23899
23899
  left: 0;
23900
- top: 0.6875rem;
23901
23900
  display: none;
23901
+ line-height: 0;
23902
23902
  }
23903
23903
 
23904
23904
  .amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item .cxd-Nav-itemDrager > .icon,
@@ -24772,13 +24772,14 @@ readers do not read off random characters that represent icons */
24772
24772
  .amis-scope .cxd-Spinner--icon {
24773
24773
  background: transparent;
24774
24774
  animation: spin 2s linear infinite;
24775
- width: 1rem;
24776
- height: 1rem;
24775
+ width: 16px;
24776
+ height: 16px;
24777
24777
  }
24778
24778
 
24779
24779
  .amis-scope .cxd-Spinner--icon svg.icon {
24780
- width: 1rem;
24781
- height: 1rem;
24780
+ width: 16px;
24781
+ height: 16px;
24782
+ top: 0;
24782
24783
  }
24783
24784
 
24784
24785
  .amis-scope .cxd-Spinner--overlay {
@@ -25040,19 +25041,20 @@ readers do not read off random characters that represent icons */
25040
25041
  }
25041
25042
 
25042
25043
  .amis-scope .cxd-Collapse {
25043
- border: 0.0625rem solid #dadbdd;
25044
+ border: 0.0625rem solid #EBEDF5;
25044
25045
  padding: 0;
25045
- margin-bottom: 0.75rem;
25046
+ line-height: 1.25rem;
25046
25047
  }
25047
25048
 
25048
25049
  .amis-scope .cxd-Collapse-header {
25049
25050
  font-size: 14px;
25050
25051
  font-weight: 500;
25051
25052
  color: #333;
25052
- padding: 1rem;
25053
+ padding: 0.875rem;
25053
25054
  margin: 0;
25054
- border-bottom: 0.0625rem solid #dadbdd;
25055
- background: #f2f2f4;
25055
+ border-bottom: 0.0625rem solid #EBEDF5;
25056
+ cursor: pointer;
25057
+ background: #F6F7FA;
25056
25058
  }
25057
25059
 
25058
25060
  .amis-scope .cxd-Collapse-header-wrapper {
@@ -25065,15 +25067,14 @@ readers do not read off random characters that represent icons */
25065
25067
  }
25066
25068
 
25067
25069
  .amis-scope .cxd-Collapse-header:hover {
25068
- background: #e6e6e8;
25070
+ background: #F3F9FE;
25069
25071
  }
25070
25072
 
25071
25073
  .amis-scope .cxd-Collapse-arrow {
25072
25074
  display: inline-block;
25073
25075
  width: 1rem;
25074
25076
  text-align: center;
25075
- margin-right: 0.5rem;
25076
- cursor: pointer;
25077
+ margin-right: 0.25rem;
25077
25078
  }
25078
25079
 
25079
25080
  .amis-scope .cxd-Collapse-arrow:before {
@@ -25082,36 +25083,50 @@ readers do not read off random characters that represent icons */
25082
25083
  display: inline-block;
25083
25084
  width: 0.375rem;
25084
25085
  height: 0.375rem;
25085
- top: -0.25rem;
25086
+ top: -0.125rem;
25086
25087
  border-color: #151a26;
25087
25088
  border-style: solid;
25088
25089
  border-width: 0.0625rem 0.0625rem 0 0;
25089
- transform: rotate(135deg);
25090
+ transform: rotate(45deg);
25090
25091
  transform-origin: 50% 50%;
25091
25092
  }
25092
25093
 
25093
- .amis-scope .cxd-Collapse-TplField {
25094
+ .amis-scope .cxd-Collapse-icon-tranform {
25094
25095
  display: inline-block;
25096
+ width: 1rem;
25097
+ text-align: center;
25098
+ margin-right: 0.25rem;
25095
25099
  }
25096
25100
 
25097
- .amis-scope .cxd-Collapse.is-collapsed .cxd-Collapse-arrow:before {
25098
- transform: rotate(45deg);
25099
- transform-origin: 0% 50%;
25101
+ .amis-scope .cxd-Collapse .cxd-TplField {
25102
+ display: inline-block;
25100
25103
  }
25101
25104
 
25102
- .amis-scope .cxd-Collapse.is-collapsed .cxd-Collapse-header {
25103
- border-bottom: none;
25105
+ .amis-scope .cxd-Collapse.is-active .cxd-Collapse-arrow:before {
25106
+ transform: rotate(135deg);
25107
+ transform-origin: 50% 30%;
25104
25108
  }
25105
25109
 
25106
- .amis-scope .cxd-Collapse--collapsable .cxd-Collapse-header {
25107
- cursor: pointer;
25110
+ .amis-scope .cxd-Collapse.is-active .cxd-Collapse-icon-tranform {
25111
+ transform: rotate(90deg);
25112
+ }
25113
+
25114
+ .amis-scope .cxd-Collapse--disabled .cxd-Collapse-header {
25115
+ cursor: not-allowed;
25108
25116
  user-select: none;
25117
+ color: #b4b6ba;
25118
+ }
25119
+
25120
+ .amis-scope .cxd-Collapse--disabled .cxd-Collapse-header:hover {
25121
+ background-color: #F6F7FA;
25122
+ }
25123
+
25124
+ .amis-scope .cxd-Collapse--disabled .cxd-Collapse-arrow:before {
25125
+ border-color: #b4b6ba;
25109
25126
  }
25110
25127
 
25111
25128
  .amis-scope .cxd-Collapse--title-bottom .cxd-Collapse-header {
25112
25129
  text-align: center;
25113
- color: #2468f2;
25114
- border-left: none;
25115
25130
  font-size: 0.875rem;
25116
25131
  border-top: none;
25117
25132
  border-bottom: none;
@@ -25122,15 +25137,13 @@ readers do not read off random characters that represent icons */
25122
25137
  }
25123
25138
 
25124
25139
  .amis-scope .cxd-Collapse--title-bottom .cxd-Collapse-arrow:before {
25125
- top: 0.125rem;
25126
- transform: rotate(-45deg);
25127
- transform-origin: 0% 50%;
25140
+ top: -0.25rem;
25141
+ transform: rotate(135deg);
25128
25142
  }
25129
25143
 
25130
- .amis-scope .cxd-Collapse--title-bottom.is-collapsed .cxd-Collapse-arrow:before {
25131
- top: -0.375rem;
25132
- transform: rotate(135deg);
25133
- transform-origin: 0% 50%;
25144
+ .amis-scope .cxd-Collapse--title-bottom.is-active .cxd-Collapse-arrow:before {
25145
+ top: 0;
25146
+ transform: rotate(-45deg);
25134
25147
  }
25135
25148
 
25136
25149
  .amis-scope .cxd-Collapse-contentWrapper {
@@ -25150,6 +25163,10 @@ readers do not read off random characters that represent icons */
25150
25163
  font-weight: 400;
25151
25164
  }
25152
25165
 
25166
+ .amis-scope .cxd-CollapseGroup.icon-position-right .cxd-Collapse-header .cxd-Collapse-arrow {
25167
+ float: right;
25168
+ }
25169
+
25153
25170
  .amis-scope .cxd-ColorField {
25154
25171
  display: inline-block;
25155
25172
  }
@@ -27307,6 +27324,11 @@ readers do not read off random characters that represent icons */
27307
27324
  cursor: move;
27308
27325
  }
27309
27326
 
27327
+ .amis-scope .cxd-Table-table > thead > tr > th.cxd-Table-dragCell > svg,
27328
+ .amis-scope .cxd-Table-table > tbody > tr > td.cxd-Table-dragCell > svg {
27329
+ vertical-align: middle;
27330
+ }
27331
+
27310
27332
  .amis-scope .cxd-Table-table > tbody > tr > td.cxd-Table-expandCell {
27311
27333
  position: relative;
27312
27334
  }
@@ -27680,6 +27702,10 @@ readers do not read off random characters that represent icons */
27680
27702
  color: #2468f2;
27681
27703
  }
27682
27704
 
27705
+ .amis-scope .cxd-Table-dragBtn > svg {
27706
+ vertical-align: -2px;
27707
+ }
27708
+
27683
27709
  .amis-scope .cxd-Table-table > tbody > tr:hover .cxd-Table-dragBtn,
27684
27710
  .amis-scope .cxd-Table-table > tbody > tr.is-dragging .cxd-Table-dragBtn,
27685
27711
  .amis-scope .cxd-Table-table > tbody > tr.is-drop-allowed .cxd-Table-dragBtn {
@@ -30460,6 +30486,133 @@ readers do not read off random characters that represent icons */
30460
30486
  display: none;
30461
30487
  }
30462
30488
 
30489
+ .amis-scope .u-hairline::after {
30490
+ position: absolute;
30491
+ box-sizing: border-box;
30492
+ content: " ";
30493
+ pointer-events: none;
30494
+ top: -50%;
30495
+ right: -50%;
30496
+ bottom: -50%;
30497
+ left: -50%;
30498
+ border: 0 solid #dfe2e6;
30499
+ z-index: 1;
30500
+ transform: scale(0.5);
30501
+ }
30502
+
30503
+ .amis-scope .cxd-GridNav {
30504
+ display: flex;
30505
+ flex-wrap: wrap;
30506
+ }
30507
+
30508
+ .amis-scope .cxd-GridNav-top {
30509
+ position: relative;
30510
+ }
30511
+
30512
+ .amis-scope .cxd-GridNav-top::after {
30513
+ border-top-width: 0.0625rem;
30514
+ }
30515
+
30516
+ .amis-scope .cxd-GridNavItem {
30517
+ position: relative;
30518
+ box-sizing: border-box;
30519
+ }
30520
+
30521
+ .amis-scope .cxd-GridNavItem--square {
30522
+ height: 0;
30523
+ position: relative;
30524
+ }
30525
+
30526
+ .amis-scope .cxd-GridNavItem-icon {
30527
+ width: var(--rv-grid-item-icon-size);
30528
+ }
30529
+
30530
+ .amis-scope .cxd-GridNavItem-text {
30531
+ color: #151a26;
30532
+ font-size: 0.75rem;
30533
+ line-height: 1.5;
30534
+ word-break: break-all;
30535
+ flex-shrink: 0;
30536
+ }
30537
+
30538
+ .amis-scope .cxd-GridNavItem-icon + .cxd-GridNavItem-text {
30539
+ margin-top: 0.5rem;
30540
+ }
30541
+
30542
+ .amis-scope .cxd-GridNavItem-image {
30543
+ display: inline-block;
30544
+ }
30545
+
30546
+ .amis-scope .cxd-GridNavItem-image svg,
30547
+ .amis-scope .cxd-GridNavItem-image img {
30548
+ max-width: 100%;
30549
+ display: block;
30550
+ width: 60%;
30551
+ margin: 0 auto;
30552
+ }
30553
+
30554
+ .amis-scope .cxd-GridNavItem-content {
30555
+ display: flex;
30556
+ flex-direction: column;
30557
+ box-sizing: border-box;
30558
+ height: 100%;
30559
+ padding: 1rem 0.5rem;
30560
+ background-color: #fff;
30561
+ position: relative;
30562
+ }
30563
+
30564
+ .amis-scope .cxd-GridNavItem-content .cxd-Badge-text {
30565
+ z-index: 10;
30566
+ }
30567
+
30568
+ .amis-scope .cxd-GridNavItem-content--border::after {
30569
+ border-width: 0 0.0625rem 0.0625rem 0;
30570
+ }
30571
+
30572
+ .amis-scope .cxd-GridNavItem-content--square {
30573
+ position: absolute;
30574
+ top: 0;
30575
+ right: 0;
30576
+ left: 0;
30577
+ }
30578
+
30579
+ .amis-scope .cxd-GridNavItem-content--center {
30580
+ align-items: center;
30581
+ justify-content: center;
30582
+ }
30583
+
30584
+ .amis-scope .cxd-GridNavItem-content--horizontal {
30585
+ flex-direction: row;
30586
+ }
30587
+
30588
+ .amis-scope .cxd-GridNavItem-content--horizontal .cxd-GridNavItem-text {
30589
+ margin: 0 0 0 0.5rem;
30590
+ }
30591
+
30592
+ .amis-scope .cxd-GridNavItem-content--reverse {
30593
+ flex-direction: column-reverse;
30594
+ }
30595
+
30596
+ .amis-scope .cxd-GridNavItem-content--reverse .cxd-GridNavItem-text {
30597
+ margin: 0 0 0.5rem;
30598
+ }
30599
+
30600
+ .amis-scope .cxd-GridNavItem-content--horizontal .cxd-GridNavItem-content--reverse {
30601
+ flex-direction: row-reverse;
30602
+ }
30603
+
30604
+ .amis-scope .cxd-GridNavItem-content--horizontal .cxd-GridNavItem-content--reverse .cxd-GridNavItem-text {
30605
+ margin: 0 0.5rem 0 0;
30606
+ }
30607
+
30608
+ .amis-scope .cxd-GridNavItem-content--surround::after {
30609
+ border-width: 0.0625rem;
30610
+ }
30611
+
30612
+ .amis-scope .cxd-GridNavItem-content--clickable {
30613
+ cursor: pointer;
30614
+ }
30615
+
30463
30616
  .amis-scope fieldset.cxd-Collapse--lg,
30464
30617
  .amis-scope fieldset.cxd-Collapse--md,
30465
30618
  .amis-scope fieldset.cxd-Collapse--base,
@@ -34743,6 +34896,10 @@ readers do not read off random characters that represent icons */
34743
34896
  pointer-events: none;
34744
34897
  }
34745
34898
 
34899
+ .amis-scope .cxd-Tree.is-draggable {
34900
+ position: relative;
34901
+ }
34902
+
34746
34903
  .amis-scope .cxd-Tree--outline .cxd-Tree-sublist .cxd-Tree-item--isLeaf:before {
34747
34904
  position: absolute;
34748
34905
  top: -8px;
@@ -34783,6 +34940,10 @@ readers do not read off random characters that represent icons */
34783
34940
  left: -99999px;
34784
34941
  }
34785
34942
 
34943
+ .amis-scope .cxd-Tree.is-draggable .cxd-Tree-itemLabel:hover::after {
34944
+ display: none;
34945
+ }
34946
+
34786
34947
  .amis-scope .cxd-Tree-item-icons {
34787
34948
  visibility: hidden;
34788
34949
  transition: visibility 0s ease;
@@ -34896,6 +35057,11 @@ readers do not read off random characters that represent icons */
34896
35057
  width: calc(0.75rem + 0.25rem);
34897
35058
  }
34898
35059
 
35060
+ .amis-scope .cxd-Tree-itemDrager {
35061
+ cursor: move;
35062
+ color: #999;
35063
+ }
35064
+
34899
35065
  .amis-scope .cxd-Tree-spinner {
34900
35066
  margin-right: 0.25rem;
34901
35067
  }
@@ -34942,6 +35108,35 @@ readers do not read off random characters that represent icons */
34942
35108
  color: #b4b6ba;
34943
35109
  }
34944
35110
 
35111
+ .amis-scope .cxd-Tree-dropIndicator {
35112
+ position: absolute;
35113
+ height: 0.125rem;
35114
+ background-color: #2468f2;
35115
+ border-radius: 0.0625rem;
35116
+ z-index: 1;
35117
+ }
35118
+
35119
+ .amis-scope .cxd-Tree-dropIndicator::after {
35120
+ position: absolute;
35121
+ top: -0.1875rem;
35122
+ left: -0.375rem;
35123
+ width: 0.5rem;
35124
+ height: 0.5rem;
35125
+ background-color: transparent;
35126
+ border: 0.125rem solid #2468f2;
35127
+ border-radius: 50%;
35128
+ content: "";
35129
+ }
35130
+
35131
+ .amis-scope .cxd-Tree-dropIndicator--hover {
35132
+ border-radius: 0;
35133
+ background-color: rgba(0, 126, 255, 0.08);
35134
+ }
35135
+
35136
+ .amis-scope .cxd-Tree-dropIndicator--hover::after {
35137
+ display: none;
35138
+ }
35139
+
34945
35140
  .amis-scope .cxd-TreeSelectControl {
34946
35141
  position: relative;
34947
35142
  }
@@ -35292,6 +35487,8 @@ readers do not read off random characters that represent icons */
35292
35487
 
35293
35488
  .amis-scope .cxd-Combo--hor .cxd-Combo-itemDrager {
35294
35489
  padding: 0.25rem 0.375rem 0 0;
35490
+ display: flex;
35491
+ align-items: center;
35295
35492
  }
35296
35493
 
35297
35494
  .amis-scope .cxd-Combo--ver:not(.cxd-Combo--noBorder)::before,
@@ -35353,6 +35550,8 @@ readers do not read off random characters that represent icons */
35353
35550
  position: absolute;
35354
35551
  top: 0.25rem;
35355
35552
  left: -1.875rem;
35553
+ display: flex;
35554
+ align-items: center;
35356
35555
  }
35357
35556
 
35358
35557
  .amis-scope .cxd-Combo--ver:not(.cxd-Combo--noBorder).is-draggable > .cxd-Combo-items > .cxd-Combo-item {
@@ -37101,6 +37300,7 @@ readers do not read off random characters that represent icons */
37101
37300
  border: none;
37102
37301
  flex-grow: 1;
37103
37302
  overflow: auto;
37303
+ scroll-behavior: smooth;
37104
37304
  background: #fff;
37105
37305
  }
37106
37306
 
@@ -39978,6 +40178,7 @@ readers do not read off random characters that represent icons */
39978
40178
  .amis-scope .cxd-Steps .cxd-StepsItem-containerIcon .cxd-StepsItem-icon svg {
39979
40179
  width: 0.75rem;
39980
40180
  height: 0.75rem;
40181
+ top: 0;
39981
40182
  }
39982
40183
 
39983
40184
  .amis-scope .cxd-Steps .cxd-StepsItem-containerIconWrapper .cxd-StepsItem-body .cxd-StepsItem-title:after {