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.
- package/lib/Schema.d.ts +4 -3
- package/lib/Schema.js.map +1 -1
- package/lib/components/AssociatedSelection.js +2 -2
- package/lib/components/AssociatedSelection.js.map +2 -2
- package/lib/components/Checkbox.d.ts +20 -20
- package/lib/components/Collapse.d.ts +51 -23
- package/lib/components/Collapse.js +69 -11
- package/lib/components/Collapse.js.map +2 -2
- package/lib/components/CollapseGroup.d.ts +88 -0
- package/lib/components/CollapseGroup.js +81 -0
- package/lib/components/CollapseGroup.js.map +13 -0
- package/lib/components/Editor.d.ts +84 -84
- package/lib/components/GridNav.d.ts +52 -0
- package/lib/components/GridNav.js +123 -0
- package/lib/components/GridNav.js.map +13 -0
- package/lib/components/ListGroup.d.ts +21 -21
- package/lib/components/Tabs.d.ts +20 -20
- package/lib/components/TabsTransfer.d.ts +84 -84
- package/lib/components/Toast.d.ts +86 -85
- package/lib/components/Toast.js +6 -3
- package/lib/components/Toast.js.map +2 -2
- package/lib/components/Transfer.d.ts +84 -84
- package/lib/components/TransferDropDown.d.ts +84 -84
- package/lib/components/Tree.d.ts +115 -84
- package/lib/components/Tree.js +183 -30
- package/lib/components/Tree.js.map +2 -2
- package/lib/envOverwrite.d.ts +1 -1
- package/lib/envOverwrite.js +24 -9
- package/lib/envOverwrite.js.map +2 -2
- package/lib/factory.d.ts +11 -1
- package/lib/factory.js +31 -4
- package/lib/factory.js.map +2 -2
- package/lib/icons/drag-bar.js +10 -3
- package/lib/index.d.ts +2 -0
- package/lib/index.js +3 -1
- package/lib/index.js.map +2 -2
- package/lib/renderers/Collapse.d.ts +25 -20
- package/lib/renderers/Collapse.js +10 -73
- package/lib/renderers/Collapse.js.map +2 -2
- package/lib/renderers/CollapseGroup.d.ts +42 -0
- package/lib/renderers/CollapseGroup.js +33 -0
- package/lib/renderers/CollapseGroup.js.map +13 -0
- package/lib/renderers/Form/InputCity.d.ts +84 -84
- package/lib/renderers/Form/Item.js +2 -1
- package/lib/renderers/Form/Item.js.map +2 -2
- package/lib/renderers/GridNav.d.ts +99 -0
- package/lib/renderers/GridNav.js +82 -0
- package/lib/renderers/GridNav.js.map +13 -0
- package/lib/store/formItem.js +44 -4
- package/lib/store/formItem.js.map +2 -2
- package/lib/themes/ang-ie11.css +194 -27
- package/lib/themes/ang.css +194 -27
- package/lib/themes/ang.css.map +1 -1
- package/lib/themes/antd-ie11.css +194 -27
- package/lib/themes/antd.css +194 -27
- package/lib/themes/antd.css.map +1 -1
- package/lib/themes/cxd-ie11.css +201 -34
- package/lib/themes/cxd.css +201 -34
- package/lib/themes/cxd.css.map +1 -1
- package/lib/themes/dark-ie11.css +194 -27
- package/lib/themes/dark.css +194 -27
- package/lib/themes/dark.css.map +1 -1
- package/lib/themes/default.css +201 -34
- package/lib/themes/default.css.map +1 -1
- package/lib/types.d.ts +1 -1
- package/lib/types.js.map +1 -1
- package/lib/utils/api.d.ts +1 -0
- package/lib/utils/api.js +77 -6
- package/lib/utils/api.js.map +2 -2
- package/lib/utils/helper.d.ts +6 -0
- package/lib/utils/helper.js +18 -1
- package/lib/utils/helper.js.map +2 -2
- package/package.json +1 -1
- package/schema.json +242 -34
- package/scss/components/_anchor-nav.scss +1 -0
- package/scss/components/_collapse-group.scss +11 -0
- package/scss/components/_collapse.scss +33 -22
- package/scss/components/_grid-nav.scss +128 -0
- package/scss/components/_nav.scss +1 -1
- package/scss/components/_spinner.scss +5 -4
- package/scss/components/_table.scss +6 -0
- package/scss/components/form/_combo.scss +4 -0
- package/scss/components/form/_tree.scss +42 -0
- package/scss/themes/_common.scss +2 -0
- package/scss/themes/_cxd-variables.scss +6 -7
- package/scss/themes/cxd.scss +1 -0
- package/sdk/ang-ie11.css +227 -28
- package/sdk/ang.css +227 -27
- package/sdk/antd-ie11.css +227 -28
- package/sdk/antd.css +227 -27
- package/sdk/charts.js +13 -13
- package/sdk/color-picker.js +65 -65
- package/sdk/cropperjs.js +2 -2
- package/sdk/cxd-ie11.css +233 -32
- package/sdk/cxd.css +234 -34
- package/sdk/dark-ie11.css +227 -28
- package/sdk/dark.css +227 -27
- package/sdk/exceljs.js +1 -1
- package/sdk/markdown.js +69 -69
- package/sdk/papaparse.js +1 -1
- package/sdk/renderers/Form/CityDB.js +1 -1
- package/sdk/rest.js +18 -18
- package/sdk/rich-text.js +62 -62
- package/sdk/sdk-ie11.css +233 -32
- package/sdk/sdk.css +234 -34
- package/sdk/sdk.js +1179 -1145
- package/sdk/thirds/hls.js/hls.js +1 -1
- package/sdk/thirds/mpegts.js/mpegts.js +1 -1
- package/sdk/tinymce.js +57 -57
- package/src/Schema.ts +5 -1
- package/src/components/AssociatedSelection.tsx +3 -1
- package/src/components/Collapse.tsx +144 -20
- package/src/components/CollapseGroup.tsx +130 -0
- package/src/components/GridNav.tsx +233 -0
- package/src/components/Toast.tsx +23 -16
- package/src/components/Tree.tsx +194 -8
- package/src/envOverwrite.ts +20 -7
- package/src/factory.tsx +52 -6
- package/src/icons/drag-bar.svg +12 -6
- package/src/index.tsx +2 -0
- package/src/renderers/Collapse.tsx +70 -117
- package/src/renderers/CollapseGroup.tsx +80 -0
- package/src/renderers/GridNav.tsx +204 -0
- package/src/store/formItem.ts +94 -2
- package/src/types.ts +1 -1
- package/src/utils/api.ts +93 -6
- package/src/utils/helper.ts +19 -0
- package/tsconfig-for-declaration.json +1 -1
package/sdk/antd-ie11.css
CHANGED
@@ -23903,8 +23903,8 @@ readers do not read off random characters that represent icons */
|
|
23903
23903
|
cursor: move;
|
23904
23904
|
position: absolute;
|
23905
23905
|
left: 0;
|
23906
|
-
top: 0.6875rem;
|
23907
23906
|
display: none;
|
23907
|
+
line-height: 0;
|
23908
23908
|
}
|
23909
23909
|
|
23910
23910
|
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Nav-item .antd-Nav-itemDrager > .icon,
|
@@ -24778,13 +24778,14 @@ readers do not read off random characters that represent icons */
|
|
24778
24778
|
.amis-scope .antd-Spinner--icon {
|
24779
24779
|
background: transparent;
|
24780
24780
|
animation: spin 2s linear infinite;
|
24781
|
-
width:
|
24782
|
-
height:
|
24781
|
+
width: 16px;
|
24782
|
+
height: 16px;
|
24783
24783
|
}
|
24784
24784
|
|
24785
24785
|
.amis-scope .antd-Spinner--icon svg.icon {
|
24786
|
-
width:
|
24787
|
-
height:
|
24786
|
+
width: 16px;
|
24787
|
+
height: 16px;
|
24788
|
+
top: 0;
|
24788
24789
|
}
|
24789
24790
|
|
24790
24791
|
.amis-scope .antd-Spinner--overlay {
|
@@ -25048,7 +25049,7 @@ readers do not read off random characters that represent icons */
|
|
25048
25049
|
.amis-scope .antd-Collapse {
|
25049
25050
|
border: none;
|
25050
25051
|
padding: 0;
|
25051
|
-
|
25052
|
+
line-height: 1.25rem;
|
25052
25053
|
}
|
25053
25054
|
|
25054
25055
|
.amis-scope .antd-Collapse-header {
|
@@ -25058,6 +25059,7 @@ readers do not read off random characters that represent icons */
|
|
25058
25059
|
padding: 1.125rem 0 0.25rem 0;
|
25059
25060
|
margin: 0;
|
25060
25061
|
border-bottom: 0.0625rem solid #dfe2e6;
|
25062
|
+
cursor: pointer;
|
25061
25063
|
background: transparent;
|
25062
25064
|
}
|
25063
25065
|
|
@@ -25078,8 +25080,7 @@ readers do not read off random characters that represent icons */
|
|
25078
25080
|
display: inline-block;
|
25079
25081
|
width: 1rem;
|
25080
25082
|
text-align: center;
|
25081
|
-
margin-right: 0.
|
25082
|
-
cursor: pointer;
|
25083
|
+
margin-right: 0.25rem;
|
25083
25084
|
}
|
25084
25085
|
|
25085
25086
|
.amis-scope .antd-Collapse-arrow:before {
|
@@ -25088,37 +25089,50 @@ readers do not read off random characters that represent icons */
|
|
25088
25089
|
display: inline-block;
|
25089
25090
|
width: 0.375rem;
|
25090
25091
|
height: 0.375rem;
|
25091
|
-
top: -0.
|
25092
|
+
top: -0.125rem;
|
25092
25093
|
border-color: rgba(0, 0, 0, 0.85);
|
25093
25094
|
border-style: solid;
|
25094
25095
|
border-width: 0.0625rem 0.0625rem 0 0;
|
25095
|
-
transform: rotate(
|
25096
|
+
transform: rotate(45deg);
|
25096
25097
|
transform-origin: 50% 50%;
|
25097
25098
|
}
|
25098
25099
|
|
25099
|
-
.amis-scope .antd-Collapse-
|
25100
|
+
.amis-scope .antd-Collapse-icon-tranform {
|
25100
25101
|
display: inline-block;
|
25102
|
+
width: 1rem;
|
25103
|
+
text-align: center;
|
25104
|
+
margin-right: 0.25rem;
|
25101
25105
|
}
|
25102
25106
|
|
25103
|
-
.amis-scope .antd-Collapse
|
25104
|
-
|
25105
|
-
transform-origin: 0% 50%;
|
25107
|
+
.amis-scope .antd-Collapse .antd-TplField {
|
25108
|
+
display: inline-block;
|
25106
25109
|
}
|
25107
25110
|
|
25108
|
-
.amis-scope .antd-Collapse.is-
|
25109
|
-
|
25110
|
-
|
25111
|
+
.amis-scope .antd-Collapse.is-active .antd-Collapse-arrow:before {
|
25112
|
+
transform: rotate(135deg);
|
25113
|
+
transform-origin: 50% 30%;
|
25111
25114
|
}
|
25112
25115
|
|
25113
|
-
.amis-scope .antd-Collapse
|
25114
|
-
|
25116
|
+
.amis-scope .antd-Collapse.is-active .antd-Collapse-icon-tranform {
|
25117
|
+
transform: rotate(90deg);
|
25118
|
+
}
|
25119
|
+
|
25120
|
+
.amis-scope .antd-Collapse--disabled .antd-Collapse-header {
|
25121
|
+
cursor: not-allowed;
|
25115
25122
|
user-select: none;
|
25123
|
+
color: #999;
|
25124
|
+
}
|
25125
|
+
|
25126
|
+
.amis-scope .antd-Collapse--disabled .antd-Collapse-header:hover {
|
25127
|
+
background-color: var(--Collapse-header-bg-disabled-color);
|
25128
|
+
}
|
25129
|
+
|
25130
|
+
.amis-scope .antd-Collapse--disabled .antd-Collapse-arrow:before {
|
25131
|
+
border-color: #999;
|
25116
25132
|
}
|
25117
25133
|
|
25118
25134
|
.amis-scope .antd-Collapse--title-bottom .antd-Collapse-header {
|
25119
25135
|
text-align: center;
|
25120
|
-
color: #1890ff;
|
25121
|
-
border-left: none;
|
25122
25136
|
font-size: 0.875rem;
|
25123
25137
|
border-top: none;
|
25124
25138
|
border-bottom: 0.0625rem solid
|
@@ -25130,15 +25144,13 @@ readers do not read off random characters that represent icons */
|
|
25130
25144
|
}
|
25131
25145
|
|
25132
25146
|
.amis-scope .antd-Collapse--title-bottom .antd-Collapse-arrow:before {
|
25133
|
-
top: 0.
|
25134
|
-
transform: rotate(
|
25135
|
-
transform-origin: 0% 50%;
|
25147
|
+
top: -0.25rem;
|
25148
|
+
transform: rotate(135deg);
|
25136
25149
|
}
|
25137
25150
|
|
25138
|
-
.amis-scope .antd-Collapse--title-bottom.is-
|
25139
|
-
top:
|
25140
|
-
transform: rotate(
|
25141
|
-
transform-origin: 0% 50%;
|
25151
|
+
.amis-scope .antd-Collapse--title-bottom.is-active .antd-Collapse-arrow:before {
|
25152
|
+
top: 0;
|
25153
|
+
transform: rotate(-45deg);
|
25142
25154
|
}
|
25143
25155
|
|
25144
25156
|
.amis-scope .antd-Collapse-contentWrapper {
|
@@ -25158,6 +25170,10 @@ readers do not read off random characters that represent icons */
|
|
25158
25170
|
font-weight: 400;
|
25159
25171
|
}
|
25160
25172
|
|
25173
|
+
.amis-scope .antd-CollapseGroup.icon-position-right .antd-Collapse-header .antd-Collapse-arrow {
|
25174
|
+
float: right;
|
25175
|
+
}
|
25176
|
+
|
25161
25177
|
.amis-scope .antd-ColorField {
|
25162
25178
|
display: inline-block;
|
25163
25179
|
}
|
@@ -27315,6 +27331,11 @@ readers do not read off random characters that represent icons */
|
|
27315
27331
|
cursor: move;
|
27316
27332
|
}
|
27317
27333
|
|
27334
|
+
.amis-scope .antd-Table-table > thead > tr > th.antd-Table-dragCell > svg,
|
27335
|
+
.amis-scope .antd-Table-table > tbody > tr > td.antd-Table-dragCell > svg {
|
27336
|
+
vertical-align: middle;
|
27337
|
+
}
|
27338
|
+
|
27318
27339
|
.amis-scope .antd-Table-table > tbody > tr > td.antd-Table-expandCell {
|
27319
27340
|
position: relative;
|
27320
27341
|
}
|
@@ -27688,6 +27709,10 @@ readers do not read off random characters that represent icons */
|
|
27688
27709
|
color: #1890ff;
|
27689
27710
|
}
|
27690
27711
|
|
27712
|
+
.amis-scope .antd-Table-dragBtn > svg {
|
27713
|
+
vertical-align: -2px;
|
27714
|
+
}
|
27715
|
+
|
27691
27716
|
.amis-scope .antd-Table-table > tbody > tr:hover .antd-Table-dragBtn,
|
27692
27717
|
.amis-scope .antd-Table-table > tbody > tr.is-dragging .antd-Table-dragBtn,
|
27693
27718
|
.amis-scope .antd-Table-table > tbody > tr.is-drop-allowed .antd-Table-dragBtn {
|
@@ -30468,6 +30493,133 @@ readers do not read off random characters that represent icons */
|
|
30468
30493
|
display: none;
|
30469
30494
|
}
|
30470
30495
|
|
30496
|
+
.amis-scope .u-hairline::after {
|
30497
|
+
position: absolute;
|
30498
|
+
box-sizing: border-box;
|
30499
|
+
content: " ";
|
30500
|
+
pointer-events: none;
|
30501
|
+
top: -50%;
|
30502
|
+
right: -50%;
|
30503
|
+
bottom: -50%;
|
30504
|
+
left: -50%;
|
30505
|
+
border: 0 solid #dfe2e6;
|
30506
|
+
z-index: 1;
|
30507
|
+
transform: scale(0.5);
|
30508
|
+
}
|
30509
|
+
|
30510
|
+
.amis-scope .antd-GridNav {
|
30511
|
+
display: flex;
|
30512
|
+
flex-wrap: wrap;
|
30513
|
+
}
|
30514
|
+
|
30515
|
+
.amis-scope .antd-GridNav-top {
|
30516
|
+
position: relative;
|
30517
|
+
}
|
30518
|
+
|
30519
|
+
.amis-scope .antd-GridNav-top::after {
|
30520
|
+
border-top-width: 0.0625rem;
|
30521
|
+
}
|
30522
|
+
|
30523
|
+
.amis-scope .antd-GridNavItem {
|
30524
|
+
position: relative;
|
30525
|
+
box-sizing: border-box;
|
30526
|
+
}
|
30527
|
+
|
30528
|
+
.amis-scope .antd-GridNavItem--square {
|
30529
|
+
height: 0;
|
30530
|
+
position: relative;
|
30531
|
+
}
|
30532
|
+
|
30533
|
+
.amis-scope .antd-GridNavItem-icon {
|
30534
|
+
width: var(--rv-grid-item-icon-size);
|
30535
|
+
}
|
30536
|
+
|
30537
|
+
.amis-scope .antd-GridNavItem-text {
|
30538
|
+
color: rgba(0, 0, 0, 0.85);
|
30539
|
+
font-size: 0.75rem;
|
30540
|
+
line-height: 1.5;
|
30541
|
+
word-break: break-all;
|
30542
|
+
flex-shrink: 0;
|
30543
|
+
}
|
30544
|
+
|
30545
|
+
.amis-scope .antd-GridNavItem-icon + .antd-GridNavItem-text {
|
30546
|
+
margin-top: 0.5rem;
|
30547
|
+
}
|
30548
|
+
|
30549
|
+
.amis-scope .antd-GridNavItem-image {
|
30550
|
+
display: inline-block;
|
30551
|
+
}
|
30552
|
+
|
30553
|
+
.amis-scope .antd-GridNavItem-image svg,
|
30554
|
+
.amis-scope .antd-GridNavItem-image img {
|
30555
|
+
max-width: 100%;
|
30556
|
+
display: block;
|
30557
|
+
width: 60%;
|
30558
|
+
margin: 0 auto;
|
30559
|
+
}
|
30560
|
+
|
30561
|
+
.amis-scope .antd-GridNavItem-content {
|
30562
|
+
display: flex;
|
30563
|
+
flex-direction: column;
|
30564
|
+
box-sizing: border-box;
|
30565
|
+
height: 100%;
|
30566
|
+
padding: 1rem 0.5rem;
|
30567
|
+
background-color: #fff;
|
30568
|
+
position: relative;
|
30569
|
+
}
|
30570
|
+
|
30571
|
+
.amis-scope .antd-GridNavItem-content .antd-Badge-text {
|
30572
|
+
z-index: 10;
|
30573
|
+
}
|
30574
|
+
|
30575
|
+
.amis-scope .antd-GridNavItem-content--border::after {
|
30576
|
+
border-width: 0 0.0625rem 0.0625rem 0;
|
30577
|
+
}
|
30578
|
+
|
30579
|
+
.amis-scope .antd-GridNavItem-content--square {
|
30580
|
+
position: absolute;
|
30581
|
+
top: 0;
|
30582
|
+
right: 0;
|
30583
|
+
left: 0;
|
30584
|
+
}
|
30585
|
+
|
30586
|
+
.amis-scope .antd-GridNavItem-content--center {
|
30587
|
+
align-items: center;
|
30588
|
+
justify-content: center;
|
30589
|
+
}
|
30590
|
+
|
30591
|
+
.amis-scope .antd-GridNavItem-content--horizontal {
|
30592
|
+
flex-direction: row;
|
30593
|
+
}
|
30594
|
+
|
30595
|
+
.amis-scope .antd-GridNavItem-content--horizontal .antd-GridNavItem-text {
|
30596
|
+
margin: 0 0 0 0.5rem;
|
30597
|
+
}
|
30598
|
+
|
30599
|
+
.amis-scope .antd-GridNavItem-content--reverse {
|
30600
|
+
flex-direction: column-reverse;
|
30601
|
+
}
|
30602
|
+
|
30603
|
+
.amis-scope .antd-GridNavItem-content--reverse .antd-GridNavItem-text {
|
30604
|
+
margin: 0 0 0.5rem;
|
30605
|
+
}
|
30606
|
+
|
30607
|
+
.amis-scope .antd-GridNavItem-content--horizontal .antd-GridNavItem-content--reverse {
|
30608
|
+
flex-direction: row-reverse;
|
30609
|
+
}
|
30610
|
+
|
30611
|
+
.amis-scope .antd-GridNavItem-content--horizontal .antd-GridNavItem-content--reverse .antd-GridNavItem-text {
|
30612
|
+
margin: 0 0.5rem 0 0;
|
30613
|
+
}
|
30614
|
+
|
30615
|
+
.amis-scope .antd-GridNavItem-content--surround::after {
|
30616
|
+
border-width: 0.0625rem;
|
30617
|
+
}
|
30618
|
+
|
30619
|
+
.amis-scope .antd-GridNavItem-content--clickable {
|
30620
|
+
cursor: pointer;
|
30621
|
+
}
|
30622
|
+
|
30471
30623
|
.amis-scope fieldset.antd-Collapse--lg,
|
30472
30624
|
.amis-scope fieldset.antd-Collapse--md,
|
30473
30625
|
.amis-scope fieldset.antd-Collapse--base,
|
@@ -34752,6 +34904,10 @@ readers do not read off random characters that represent icons */
|
|
34752
34904
|
pointer-events: none;
|
34753
34905
|
}
|
34754
34906
|
|
34907
|
+
.amis-scope .antd-Tree.is-draggable {
|
34908
|
+
position: relative;
|
34909
|
+
}
|
34910
|
+
|
34755
34911
|
.amis-scope .antd-Tree--outline .antd-Tree-sublist .antd-Tree-item--isLeaf:before {
|
34756
34912
|
position: absolute;
|
34757
34913
|
top: -8px;
|
@@ -34792,6 +34948,10 @@ readers do not read off random characters that represent icons */
|
|
34792
34948
|
left: -99999px;
|
34793
34949
|
}
|
34794
34950
|
|
34951
|
+
.amis-scope .antd-Tree.is-draggable .antd-Tree-itemLabel:hover::after {
|
34952
|
+
display: none;
|
34953
|
+
}
|
34954
|
+
|
34795
34955
|
.amis-scope .antd-Tree-item-icons {
|
34796
34956
|
visibility: hidden;
|
34797
34957
|
transition: visibility 0s ease;
|
@@ -34905,6 +35065,11 @@ readers do not read off random characters that represent icons */
|
|
34905
35065
|
width: calc(0.75rem + 0.25rem);
|
34906
35066
|
}
|
34907
35067
|
|
35068
|
+
.amis-scope .antd-Tree-itemDrager {
|
35069
|
+
cursor: move;
|
35070
|
+
color: inherit;
|
35071
|
+
}
|
35072
|
+
|
34908
35073
|
.amis-scope .antd-Tree-spinner {
|
34909
35074
|
margin-right: 0.25rem;
|
34910
35075
|
}
|
@@ -34951,6 +35116,35 @@ readers do not read off random characters that represent icons */
|
|
34951
35116
|
color: #999;
|
34952
35117
|
}
|
34953
35118
|
|
35119
|
+
.amis-scope .antd-Tree-dropIndicator {
|
35120
|
+
position: absolute;
|
35121
|
+
height: 0.125rem;
|
35122
|
+
background-color: #1890ff;
|
35123
|
+
border-radius: 0.0625rem;
|
35124
|
+
z-index: 1;
|
35125
|
+
}
|
35126
|
+
|
35127
|
+
.amis-scope .antd-Tree-dropIndicator::after {
|
35128
|
+
position: absolute;
|
35129
|
+
top: -0.1875rem;
|
35130
|
+
left: -0.375rem;
|
35131
|
+
width: 0.5rem;
|
35132
|
+
height: 0.5rem;
|
35133
|
+
background-color: transparent;
|
35134
|
+
border: 0.125rem solid #1890ff;
|
35135
|
+
border-radius: 50%;
|
35136
|
+
content: "";
|
35137
|
+
}
|
35138
|
+
|
35139
|
+
.amis-scope .antd-Tree-dropIndicator--hover {
|
35140
|
+
border-radius: 0;
|
35141
|
+
background-color: rgba(0, 126, 255, 0.08);
|
35142
|
+
}
|
35143
|
+
|
35144
|
+
.amis-scope .antd-Tree-dropIndicator--hover::after {
|
35145
|
+
display: none;
|
35146
|
+
}
|
35147
|
+
|
34954
35148
|
.amis-scope .antd-TreeSelectControl {
|
34955
35149
|
position: relative;
|
34956
35150
|
}
|
@@ -35306,6 +35500,8 @@ readers do not read off random characters that represent icons */
|
|
35306
35500
|
0.875rem
|
35307
35501
|
) / 2
|
35308
35502
|
) 0.375rem 0 0;
|
35503
|
+
display: flex;
|
35504
|
+
align-items: center;
|
35309
35505
|
}
|
35310
35506
|
|
35311
35507
|
.amis-scope .antd-Combo--ver:not(.antd-Combo--noBorder)::before,
|
@@ -35372,6 +35568,8 @@ readers do not read off random characters that represent icons */
|
|
35372
35568
|
) / 2
|
35373
35569
|
);
|
35374
35570
|
left: -1.875rem;
|
35571
|
+
display: flex;
|
35572
|
+
align-items: center;
|
35375
35573
|
}
|
35376
35574
|
|
35377
35575
|
.amis-scope .antd-Combo--ver:not(.antd-Combo--noBorder).is-draggable > .antd-Combo-items > .antd-Combo-item {
|
@@ -37121,6 +37319,7 @@ readers do not read off random characters that represent icons */
|
|
37121
37319
|
border: none;
|
37122
37320
|
flex-grow: 1;
|
37123
37321
|
overflow: auto;
|
37322
|
+
scroll-behavior: smooth;
|
37124
37323
|
background: #fff;
|
37125
37324
|
}
|
37126
37325
|
|