amis 1.4.2-beta.13 → 1.4.2-beta.18
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/Alert2.d.ts +26 -21
- package/lib/components/Alert2.js +11 -4
- package/lib/components/Alert2.js.map +2 -2
- package/lib/components/AssociatedSelection.js +2 -2
- package/lib/components/AssociatedSelection.js.map +2 -2
- package/lib/components/Button.js +1 -1
- package/lib/components/Button.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 +70 -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/ColorPicker.d.ts +5 -1
- package/lib/components/ColorPicker.js +17 -4
- package/lib/components/ColorPicker.js.map +2 -2
- 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/Overlay.js +5 -0
- package/lib/components/Overlay.js.map +2 -2
- package/lib/components/PopOver.d.ts +1 -0
- package/lib/components/PopOver.js +12 -1
- package/lib/components/PopOver.js.map +2 -2
- package/lib/components/Tabs.d.ts +20 -20
- package/lib/components/TabsTransfer.d.ts +84 -84
- package/lib/components/Toast.d.ts +90 -87
- package/lib/components/Toast.js +15 -5
- 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/components/condition-builder/Field.js +2 -3
- package/lib/components/condition-builder/Field.js.map +2 -2
- package/lib/components/icons.js +8 -0
- package/lib/components/icons.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/alert-danger.js +7 -0
- package/lib/icons/alert-info.js +7 -0
- package/lib/icons/alert-success.js +7 -0
- package/lib/icons/alert-warning.js +7 -0
- 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/Alert.d.ts +21 -1
- package/lib/renderers/Alert.js.map +2 -2
- package/lib/renderers/Card.d.ts +1 -0
- package/lib/renderers/Card.js +7 -2
- package/lib/renderers/Card.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/ConditionBuilder.js +2 -2
- package/lib/renderers/Form/ConditionBuilder.js.map +2 -2
- package/lib/renderers/Form/InputCity.d.ts +84 -84
- package/lib/renderers/Form/InputColor.d.ts +2 -1
- package/lib/renderers/Form/InputColor.js +1 -1
- package/lib/renderers/Form/InputColor.js.map +2 -2
- 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/renderers/Page.d.ts +18 -0
- package/lib/renderers/Page.js +53 -9
- package/lib/renderers/Page.js.map +2 -2
- package/lib/store/formItem.js +44 -4
- package/lib/store/formItem.js.map +2 -2
- package/lib/themes/ang-ie11.css +324 -49
- package/lib/themes/ang.css +324 -49
- package/lib/themes/ang.css.map +1 -1
- package/lib/themes/antd-ie11.css +324 -49
- package/lib/themes/antd.css +324 -49
- package/lib/themes/antd.css.map +1 -1
- package/lib/themes/cxd-ie11.css +331 -58
- package/lib/themes/cxd.css +331 -58
- package/lib/themes/cxd.css.map +1 -1
- package/lib/themes/dark-ie11.css +324 -49
- package/lib/themes/dark.css +324 -49
- package/lib/themes/dark.css.map +1 -1
- package/lib/themes/default.css +331 -58
- 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 +8 -0
- package/lib/utils/helper.js +33 -2
- package/lib/utils/helper.js.map +2 -2
- package/lib/utils/tpl-builtin.js +5 -0
- package/lib/utils/tpl-builtin.js.map +2 -2
- package/package.json +1 -1
- package/schema.json +365 -49
- package/scss/_properties.scss +2 -1
- package/scss/components/_alert.scss +28 -5
- package/scss/components/_anchor-nav.scss +1 -0
- package/scss/components/_button.scss +5 -0
- package/scss/components/_card.scss +1 -1
- package/scss/components/_collapse-group.scss +15 -0
- package/scss/components/_collapse.scss +33 -23
- package/scss/components/_grid-nav.scss +128 -0
- package/scss/components/_nav.scss +2 -7
- package/scss/components/_page.scss +35 -2
- package/scss/components/_spinner.scss +5 -4
- package/scss/components/_table.scss +6 -0
- package/scss/components/_toast.scss +41 -11
- package/scss/components/form/_color.scss +32 -3
- package/scss/components/form/_combo.scss +4 -0
- package/scss/components/form/_fieldset.scss +1 -0
- package/scss/components/form/_transfer.scss +1 -0
- package/scss/components/form/_tree.scss +42 -0
- package/scss/themes/_common.scss +2 -0
- package/scss/themes/_cxd-variables.scss +9 -4
- package/scss/themes/cxd.scss +1 -7
- package/sdk/ang-ie11.css +375 -53
- package/sdk/ang.css +377 -53
- package/sdk/antd-ie11.css +375 -53
- package/sdk/antd.css +377 -53
- package/sdk/charts.js +13 -13
- package/sdk/color-picker.js +69 -65
- package/sdk/cropperjs.js +2 -2
- package/sdk/cxd-ie11.css +379 -60
- package/sdk/cxd.css +384 -62
- package/sdk/dark-ie11.css +375 -53
- package/sdk/dark.css +377 -53
- 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 +16 -20
- package/sdk/rich-text.js +62 -62
- package/sdk/sdk-ie11.css +379 -60
- package/sdk/sdk.css +384 -62
- package/sdk/sdk.js +1215 -1173
- 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/Alert2.tsx +32 -4
- package/src/components/AssociatedSelection.tsx +3 -1
- package/src/components/Button.tsx +1 -0
- package/src/components/Collapse.tsx +139 -20
- package/src/components/CollapseGroup.tsx +130 -0
- package/src/components/ColorPicker.tsx +32 -10
- package/src/components/GridNav.tsx +233 -0
- package/src/components/Overlay.tsx +6 -0
- package/src/components/PopOver.tsx +15 -1
- package/src/components/Toast.tsx +48 -21
- package/src/components/Tree.tsx +194 -8
- package/src/components/condition-builder/Field.tsx +3 -1
- package/src/components/icons.tsx +8 -0
- package/src/envOverwrite.ts +20 -7
- package/src/factory.tsx +52 -6
- package/src/icons/alert-danger.svg +1 -0
- package/src/icons/alert-info.svg +1 -0
- package/src/icons/alert-success.svg +1 -0
- package/src/icons/alert-warning.svg +1 -0
- package/src/icons/drag-bar.svg +12 -6
- package/src/index.tsx +2 -0
- package/src/renderers/Alert.tsx +31 -1
- package/src/renderers/Card.tsx +13 -2
- package/src/renderers/Collapse.tsx +70 -117
- package/src/renderers/CollapseGroup.tsx +80 -0
- package/src/renderers/Form/ConditionBuilder.tsx +2 -2
- package/src/renderers/Form/InputColor.tsx +4 -2
- package/src/renderers/GridNav.tsx +204 -0
- package/src/renderers/Page.tsx +62 -1
- 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 +33 -0
- package/src/utils/tpl-builtin.ts +6 -0
- package/tsconfig-for-declaration.json +1 -1
package/sdk/antd-ie11.css
CHANGED
@@ -21148,6 +21148,13 @@ readers do not read off random characters that represent icons */
|
|
21148
21148
|
background: #f2f3f3;
|
21149
21149
|
}
|
21150
21150
|
|
21151
|
+
.amis-scope .antd-Button.is-disabled > svg,
|
21152
|
+
.amis-scope .antd-Button.is-disabled > svg path,
|
21153
|
+
.amis-scope .antd-Button:disabled > svg,
|
21154
|
+
.amis-scope .antd-Button:disabled > svg path {
|
21155
|
+
fill: currentColor;
|
21156
|
+
}
|
21157
|
+
|
21151
21158
|
.amis-scope .antd-Button:not(:disabled):not(.is-disabled) {
|
21152
21159
|
cursor: pointer;
|
21153
21160
|
}
|
@@ -22939,18 +22946,19 @@ readers do not read off random characters that represent icons */
|
|
22939
22946
|
|
22940
22947
|
.amis-scope .antd-Toast {
|
22941
22948
|
display: flex;
|
22942
|
-
|
22949
|
+
flex-flow: row nowrap;
|
22950
|
+
justify-content: space-between;
|
22951
|
+
align-items: flex-start;
|
22943
22952
|
max-width: 18.75rem;
|
22944
22953
|
pointer-events: auto;
|
22945
22954
|
margin-bottom: 0.25rem;
|
22946
|
-
padding: 0.25rem
|
22955
|
+
padding: 0.25rem 1rem;
|
22947
22956
|
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
|
22948
22957
|
border-radius: 0.428rem;
|
22949
22958
|
border: 0 solid;
|
22950
22959
|
color: #fff;
|
22951
22960
|
position: relative;
|
22952
22961
|
opacity: 0.8;
|
22953
|
-
cursor: pointer;
|
22954
22962
|
opacity: 0;
|
22955
22963
|
transform: translateZ(0);
|
22956
22964
|
}
|
@@ -22977,10 +22985,15 @@ readers do not read off random characters that represent icons */
|
|
22977
22985
|
}
|
22978
22986
|
|
22979
22987
|
.amis-scope .antd-Toast-close {
|
22980
|
-
color: #fff;
|
22981
22988
|
display: inline-flex;
|
22982
|
-
|
22989
|
+
font-size: 1rem;
|
22990
|
+
line-height: 1.5rem;
|
22991
|
+
height: 1.5rem;
|
22992
|
+
color: #fff;
|
22993
|
+
margin-left: 0.5rem;
|
22983
22994
|
opacity: 0.8;
|
22995
|
+
align-items: center;
|
22996
|
+
cursor: pointer;
|
22984
22997
|
}
|
22985
22998
|
|
22986
22999
|
.amis-scope .antd-Toast-close:hover {
|
@@ -22988,11 +23001,33 @@ readers do not read off random characters that represent icons */
|
|
22988
23001
|
opacity: 1;
|
22989
23002
|
}
|
22990
23003
|
|
22991
|
-
.amis-scope .antd-Toast-
|
23004
|
+
.amis-scope .antd-Toast-close > svg {
|
23005
|
+
top: 0;
|
23006
|
+
}
|
23007
|
+
|
23008
|
+
.amis-scope .antd-Toast-content {
|
23009
|
+
flex: 1;
|
23010
|
+
display: flex;
|
23011
|
+
flex-flow: column nowrap;
|
23012
|
+
justify-content: space-between;
|
23013
|
+
align-items: flex-start;
|
23014
|
+
}
|
23015
|
+
|
23016
|
+
.amis-scope .antd-Toast-content .antd-Toast-title {
|
23017
|
+
color: rgba(0, 0, 0, 0.85);
|
23018
|
+
font-size: 0.875rem;
|
23019
|
+
font-weight: 500;
|
23020
|
+
line-height: 1.5rem;
|
23021
|
+
margin-bottom: 0.25rem;
|
23022
|
+
}
|
23023
|
+
|
23024
|
+
.amis-scope .antd-Toast-content .antd-Toast-body {
|
23025
|
+
font-size: 0.75rem;
|
22992
23026
|
display: inline-block;
|
22993
23027
|
vertical-align: middle;
|
22994
23028
|
white-space: pre-wrap;
|
22995
23029
|
flex-grow: 1;
|
23030
|
+
line-height: 1.5rem;
|
22996
23031
|
}
|
22997
23032
|
|
22998
23033
|
.amis-scope .antd-Toast-icon {
|
@@ -23000,7 +23035,10 @@ readers do not read off random characters that represent icons */
|
|
23000
23035
|
text-rendering: auto;
|
23001
23036
|
-webkit-font-smoothing: antialiased;
|
23002
23037
|
vertical-align: middle;
|
23003
|
-
margin-right: 0.
|
23038
|
+
margin-right: 0.5rem;
|
23039
|
+
height: 1.5rem;
|
23040
|
+
line-height: 1.5rem;
|
23041
|
+
align-items: center;
|
23004
23042
|
}
|
23005
23043
|
|
23006
23044
|
.amis-scope .antd-Toast-icon > svg {
|
@@ -23074,24 +23112,47 @@ readers do not read off random characters that represent icons */
|
|
23074
23112
|
border-radius: 0.285rem;
|
23075
23113
|
margin-bottom: 1rem;
|
23076
23114
|
position: relative;
|
23115
|
+
color: var(--Alert-fontColor);
|
23116
|
+
display: flex;
|
23117
|
+
flex-flow: row nowrap;
|
23118
|
+
justify-content: space-between;
|
23119
|
+
align-items: flex-start;
|
23120
|
+
}
|
23121
|
+
|
23122
|
+
.amis-scope .antd-Alert-icon {
|
23123
|
+
margin-right: 0.5rem;
|
23124
|
+
font-size: 1rem;
|
23125
|
+
}
|
23126
|
+
|
23127
|
+
.amis-scope .antd-Alert-content {
|
23128
|
+
flex: 1;
|
23129
|
+
}
|
23130
|
+
|
23131
|
+
.amis-scope .antd-Alert-content .antd-Alert-title {
|
23132
|
+
color: rgba(0, 0, 0, 0.85);
|
23133
|
+
font-size: 0.875rem;
|
23134
|
+
font-weight: 500;
|
23135
|
+
line-height: 1.5rem;
|
23136
|
+
margin-bottom: 0.25rem;
|
23137
|
+
}
|
23138
|
+
|
23139
|
+
.amis-scope .antd-Alert-content .antd-Alert-desc {
|
23140
|
+
line-height: 1.5rem;
|
23077
23141
|
}
|
23078
23142
|
|
23079
23143
|
.amis-scope .antd-Alert-close {
|
23080
|
-
position: absolute;
|
23081
23144
|
outline: none;
|
23082
23145
|
padding: 0;
|
23083
23146
|
cursor: pointer;
|
23084
23147
|
background: transparent;
|
23085
23148
|
border: 0;
|
23086
|
-
float: right;
|
23087
23149
|
line-height: 1;
|
23088
23150
|
color: #000;
|
23089
23151
|
text-shadow: 0 1px 0 #fff;
|
23090
23152
|
filter: alpha(opacity=20);
|
23091
23153
|
opacity: 0.2;
|
23092
|
-
|
23093
|
-
|
23094
|
-
transform: translateY(-50%);
|
23154
|
+
margin-left: 0.5rem;
|
23155
|
+
line-height: 1.5rem;
|
23095
23156
|
}
|
23096
23157
|
|
23097
23158
|
.amis-scope .antd-Alert-close:hover {
|
@@ -23903,8 +23964,8 @@ readers do not read off random characters that represent icons */
|
|
23903
23964
|
cursor: move;
|
23904
23965
|
position: absolute;
|
23905
23966
|
left: 0;
|
23906
|
-
top: 0.6875rem;
|
23907
23967
|
display: none;
|
23968
|
+
line-height: 0;
|
23908
23969
|
}
|
23909
23970
|
|
23910
23971
|
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Nav-item .antd-Nav-itemDrager > .icon,
|
@@ -24018,13 +24079,6 @@ readers do not read off random characters that represent icons */
|
|
24018
24079
|
pointer-events: none;
|
24019
24080
|
}
|
24020
24081
|
|
24021
|
-
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Nav-item.active,
|
24022
|
-
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Nav-item.is-active,
|
24023
|
-
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Badge.active,
|
24024
|
-
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Badge.is-active {
|
24025
|
-
background: #1890ff !important;
|
24026
|
-
}
|
24027
|
-
|
24028
24082
|
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Nav-item.active > a,
|
24029
24083
|
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Nav-item.is-active > .antd-Nav-item-atcions,
|
24030
24084
|
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Nav-item.is-active > a,
|
@@ -24039,6 +24093,7 @@ readers do not read off random characters that represent icons */
|
|
24039
24093
|
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Badge.is-active > .antd-Badge > a {
|
24040
24094
|
color: #fff;
|
24041
24095
|
position: relative;
|
24096
|
+
background: #1890ff;
|
24042
24097
|
}
|
24043
24098
|
|
24044
24099
|
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Nav-item.active > a::after,
|
@@ -24184,14 +24239,41 @@ readers do not read off random characters that represent icons */
|
|
24184
24239
|
padding: 0.25rem;
|
24185
24240
|
}
|
24186
24241
|
|
24242
|
+
.amis-scope .antd-Page-asideResizor {
|
24243
|
+
position: absolute;
|
24244
|
+
right: -0.375rem;
|
24245
|
+
top: 50%;
|
24246
|
+
cursor: ew-resize;
|
24247
|
+
writing-mode: vertical-lr;
|
24248
|
+
width: 0.75rem;
|
24249
|
+
height: 1.5rem;
|
24250
|
+
margin-top: -0.75rem;
|
24251
|
+
border: 0.0625rem solid #dee2e6;
|
24252
|
+
background-color: #fff;
|
24253
|
+
border-radius: 0.142rem;
|
24254
|
+
font-size: 12px;
|
24255
|
+
line-height: 0.625rem;
|
24256
|
+
text-align: center;
|
24257
|
+
user-select: none;
|
24258
|
+
color: #666;
|
24259
|
+
}
|
24260
|
+
|
24261
|
+
.amis-scope .antd-Page-asideResizor:hover {
|
24262
|
+
color: #000;
|
24263
|
+
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.12), 0 2px 4px 0 rgba(0, 0, 0, 0.08);
|
24264
|
+
}
|
24265
|
+
|
24266
|
+
.amis-scope .antd-Page-asideResizor:after {
|
24267
|
+
content: "···";
|
24268
|
+
}
|
24269
|
+
|
24187
24270
|
.amis-scope .antd-Page-toolbar > * + * {
|
24188
24271
|
margin-left: 0.25rem;
|
24189
24272
|
}
|
24190
24273
|
|
24191
24274
|
@media (min-width: 768px) {
|
24192
24275
|
.amis-scope .antd-Page-aside {
|
24193
|
-
|
24194
|
-
max-width: 18.75rem;
|
24276
|
+
width: 12.5rem;
|
24195
24277
|
border-right: 0.0625rem solid #eceff8;
|
24196
24278
|
}
|
24197
24279
|
|
@@ -24206,6 +24288,11 @@ readers do not read off random characters that represent icons */
|
|
24206
24288
|
border: inherit;
|
24207
24289
|
}
|
24208
24290
|
|
24291
|
+
.amis-scope .antd-Page-aside--withWidth {
|
24292
|
+
min-width: 12.5rem;
|
24293
|
+
max-width: 18.75rem;
|
24294
|
+
}
|
24295
|
+
|
24209
24296
|
.amis-scope .antd-Page--withSidebar {
|
24210
24297
|
display: flex;
|
24211
24298
|
flex-direction: row;
|
@@ -24778,13 +24865,14 @@ readers do not read off random characters that represent icons */
|
|
24778
24865
|
.amis-scope .antd-Spinner--icon {
|
24779
24866
|
background: transparent;
|
24780
24867
|
animation: spin 2s linear infinite;
|
24781
|
-
width:
|
24782
|
-
height:
|
24868
|
+
width: 16px;
|
24869
|
+
height: 16px;
|
24783
24870
|
}
|
24784
24871
|
|
24785
24872
|
.amis-scope .antd-Spinner--icon svg.icon {
|
24786
|
-
width:
|
24787
|
-
height:
|
24873
|
+
width: 16px;
|
24874
|
+
height: 16px;
|
24875
|
+
top: 0;
|
24788
24876
|
}
|
24789
24877
|
|
24790
24878
|
.amis-scope .antd-Spinner--overlay {
|
@@ -25048,7 +25136,7 @@ readers do not read off random characters that represent icons */
|
|
25048
25136
|
.amis-scope .antd-Collapse {
|
25049
25137
|
border: none;
|
25050
25138
|
padding: 0;
|
25051
|
-
|
25139
|
+
line-height: 1.25rem;
|
25052
25140
|
}
|
25053
25141
|
|
25054
25142
|
.amis-scope .antd-Collapse-header {
|
@@ -25057,7 +25145,7 @@ readers do not read off random characters that represent icons */
|
|
25057
25145
|
color: #333;
|
25058
25146
|
padding: 1.125rem 0 0.25rem 0;
|
25059
25147
|
margin: 0;
|
25060
|
-
|
25148
|
+
cursor: pointer;
|
25061
25149
|
background: transparent;
|
25062
25150
|
}
|
25063
25151
|
|
@@ -25079,7 +25167,6 @@ readers do not read off random characters that represent icons */
|
|
25079
25167
|
width: 1rem;
|
25080
25168
|
text-align: center;
|
25081
25169
|
margin-right: 0.5rem;
|
25082
|
-
cursor: pointer;
|
25083
25170
|
}
|
25084
25171
|
|
25085
25172
|
.amis-scope .antd-Collapse-arrow:before {
|
@@ -25088,37 +25175,50 @@ readers do not read off random characters that represent icons */
|
|
25088
25175
|
display: inline-block;
|
25089
25176
|
width: 0.375rem;
|
25090
25177
|
height: 0.375rem;
|
25091
|
-
top: -0.
|
25178
|
+
top: -0.125rem;
|
25092
25179
|
border-color: rgba(0, 0, 0, 0.85);
|
25093
25180
|
border-style: solid;
|
25094
25181
|
border-width: 0.0625rem 0.0625rem 0 0;
|
25095
|
-
transform: rotate(
|
25182
|
+
transform: rotate(45deg);
|
25096
25183
|
transform-origin: 50% 50%;
|
25097
25184
|
}
|
25098
25185
|
|
25099
|
-
.amis-scope .antd-Collapse-
|
25186
|
+
.amis-scope .antd-Collapse-icon-tranform {
|
25100
25187
|
display: inline-block;
|
25188
|
+
width: 1rem;
|
25189
|
+
text-align: center;
|
25190
|
+
margin-right: 0.25rem;
|
25101
25191
|
}
|
25102
25192
|
|
25103
|
-
.amis-scope .antd-Collapse
|
25104
|
-
|
25105
|
-
transform-origin: 0% 50%;
|
25193
|
+
.amis-scope .antd-Collapse .antd-TplField {
|
25194
|
+
display: inline-block;
|
25106
25195
|
}
|
25107
25196
|
|
25108
|
-
.amis-scope .antd-Collapse.is-
|
25109
|
-
|
25110
|
-
|
25197
|
+
.amis-scope .antd-Collapse.is-active .antd-Collapse-arrow:before {
|
25198
|
+
transform: rotate(135deg);
|
25199
|
+
transform-origin: 50% 30%;
|
25111
25200
|
}
|
25112
25201
|
|
25113
|
-
.amis-scope .antd-Collapse
|
25114
|
-
|
25202
|
+
.amis-scope .antd-Collapse.is-active .antd-Collapse-icon-tranform {
|
25203
|
+
transform: rotate(90deg);
|
25204
|
+
}
|
25205
|
+
|
25206
|
+
.amis-scope .antd-Collapse--disabled .antd-Collapse-header {
|
25207
|
+
cursor: not-allowed;
|
25115
25208
|
user-select: none;
|
25209
|
+
color: #999;
|
25210
|
+
}
|
25211
|
+
|
25212
|
+
.amis-scope .antd-Collapse--disabled .antd-Collapse-header:hover {
|
25213
|
+
background-color: var(--Collapse-header-bg-disabled-color);
|
25214
|
+
}
|
25215
|
+
|
25216
|
+
.amis-scope .antd-Collapse--disabled .antd-Collapse-arrow:before {
|
25217
|
+
border-color: #999;
|
25116
25218
|
}
|
25117
25219
|
|
25118
25220
|
.amis-scope .antd-Collapse--title-bottom .antd-Collapse-header {
|
25119
25221
|
text-align: center;
|
25120
|
-
color: #1890ff;
|
25121
|
-
border-left: none;
|
25122
25222
|
font-size: 0.875rem;
|
25123
25223
|
border-top: none;
|
25124
25224
|
border-bottom: 0.0625rem solid
|
@@ -25130,15 +25230,13 @@ readers do not read off random characters that represent icons */
|
|
25130
25230
|
}
|
25131
25231
|
|
25132
25232
|
.amis-scope .antd-Collapse--title-bottom .antd-Collapse-arrow:before {
|
25133
|
-
top: 0.
|
25134
|
-
transform: rotate(
|
25135
|
-
transform-origin: 0% 50%;
|
25233
|
+
top: -0.25rem;
|
25234
|
+
transform: rotate(135deg);
|
25136
25235
|
}
|
25137
25236
|
|
25138
|
-
.amis-scope .antd-Collapse--title-bottom.is-
|
25139
|
-
top:
|
25140
|
-
transform: rotate(
|
25141
|
-
transform-origin: 0% 50%;
|
25237
|
+
.amis-scope .antd-Collapse--title-bottom.is-active .antd-Collapse-arrow:before {
|
25238
|
+
top: 0;
|
25239
|
+
transform: rotate(-45deg);
|
25142
25240
|
}
|
25143
25241
|
|
25144
25242
|
.amis-scope .antd-Collapse-contentWrapper {
|
@@ -25158,6 +25256,14 @@ readers do not read off random characters that represent icons */
|
|
25158
25256
|
font-weight: 400;
|
25159
25257
|
}
|
25160
25258
|
|
25259
|
+
.amis-scope .antd-CollapseGroup .antd-Collapse:not(:last-child) {
|
25260
|
+
border-bottom: none;
|
25261
|
+
}
|
25262
|
+
|
25263
|
+
.amis-scope .antd-CollapseGroup.icon-position-right .antd-Collapse-header .antd-Collapse-arrow {
|
25264
|
+
float: right;
|
25265
|
+
}
|
25266
|
+
|
25161
25267
|
.amis-scope .antd-ColorField {
|
25162
25268
|
display: inline-block;
|
25163
25269
|
}
|
@@ -27315,6 +27421,11 @@ readers do not read off random characters that represent icons */
|
|
27315
27421
|
cursor: move;
|
27316
27422
|
}
|
27317
27423
|
|
27424
|
+
.amis-scope .antd-Table-table > thead > tr > th.antd-Table-dragCell > svg,
|
27425
|
+
.amis-scope .antd-Table-table > tbody > tr > td.antd-Table-dragCell > svg {
|
27426
|
+
vertical-align: middle;
|
27427
|
+
}
|
27428
|
+
|
27318
27429
|
.amis-scope .antd-Table-table > tbody > tr > td.antd-Table-expandCell {
|
27319
27430
|
position: relative;
|
27320
27431
|
}
|
@@ -27688,6 +27799,10 @@ readers do not read off random characters that represent icons */
|
|
27688
27799
|
color: #1890ff;
|
27689
27800
|
}
|
27690
27801
|
|
27802
|
+
.amis-scope .antd-Table-dragBtn > svg {
|
27803
|
+
vertical-align: -2px;
|
27804
|
+
}
|
27805
|
+
|
27691
27806
|
.amis-scope .antd-Table-table > tbody > tr:hover .antd-Table-dragBtn,
|
27692
27807
|
.amis-scope .antd-Table-table > tbody > tr.is-dragging .antd-Table-dragBtn,
|
27693
27808
|
.amis-scope .antd-Table-table > tbody > tr.is-drop-allowed .antd-Table-dragBtn {
|
@@ -28529,7 +28644,7 @@ readers do not read off random characters that represent icons */
|
|
28529
28644
|
float: left;
|
28530
28645
|
margin-right: 0.75rem;
|
28531
28646
|
font-size: 1.25rem;
|
28532
|
-
text-transform: uppercase
|
28647
|
+
text-transform: uppercase;
|
28533
28648
|
}
|
28534
28649
|
|
28535
28650
|
.amis-scope .antd-Card-meta {
|
@@ -30468,6 +30583,133 @@ readers do not read off random characters that represent icons */
|
|
30468
30583
|
display: none;
|
30469
30584
|
}
|
30470
30585
|
|
30586
|
+
.amis-scope .u-hairline::after {
|
30587
|
+
position: absolute;
|
30588
|
+
box-sizing: border-box;
|
30589
|
+
content: " ";
|
30590
|
+
pointer-events: none;
|
30591
|
+
top: -50%;
|
30592
|
+
right: -50%;
|
30593
|
+
bottom: -50%;
|
30594
|
+
left: -50%;
|
30595
|
+
border: 0 solid #dfe2e6;
|
30596
|
+
z-index: 1;
|
30597
|
+
transform: scale(0.5);
|
30598
|
+
}
|
30599
|
+
|
30600
|
+
.amis-scope .antd-GridNav {
|
30601
|
+
display: flex;
|
30602
|
+
flex-wrap: wrap;
|
30603
|
+
}
|
30604
|
+
|
30605
|
+
.amis-scope .antd-GridNav-top {
|
30606
|
+
position: relative;
|
30607
|
+
}
|
30608
|
+
|
30609
|
+
.amis-scope .antd-GridNav-top::after {
|
30610
|
+
border-top-width: 0.0625rem;
|
30611
|
+
}
|
30612
|
+
|
30613
|
+
.amis-scope .antd-GridNavItem {
|
30614
|
+
position: relative;
|
30615
|
+
box-sizing: border-box;
|
30616
|
+
}
|
30617
|
+
|
30618
|
+
.amis-scope .antd-GridNavItem--square {
|
30619
|
+
height: 0;
|
30620
|
+
position: relative;
|
30621
|
+
}
|
30622
|
+
|
30623
|
+
.amis-scope .antd-GridNavItem-icon {
|
30624
|
+
width: var(--rv-grid-item-icon-size);
|
30625
|
+
}
|
30626
|
+
|
30627
|
+
.amis-scope .antd-GridNavItem-text {
|
30628
|
+
color: rgba(0, 0, 0, 0.85);
|
30629
|
+
font-size: 0.75rem;
|
30630
|
+
line-height: 1.5;
|
30631
|
+
word-break: break-all;
|
30632
|
+
flex-shrink: 0;
|
30633
|
+
}
|
30634
|
+
|
30635
|
+
.amis-scope .antd-GridNavItem-icon + .antd-GridNavItem-text {
|
30636
|
+
margin-top: 0.5rem;
|
30637
|
+
}
|
30638
|
+
|
30639
|
+
.amis-scope .antd-GridNavItem-image {
|
30640
|
+
display: inline-block;
|
30641
|
+
}
|
30642
|
+
|
30643
|
+
.amis-scope .antd-GridNavItem-image svg,
|
30644
|
+
.amis-scope .antd-GridNavItem-image img {
|
30645
|
+
max-width: 100%;
|
30646
|
+
display: block;
|
30647
|
+
width: 60%;
|
30648
|
+
margin: 0 auto;
|
30649
|
+
}
|
30650
|
+
|
30651
|
+
.amis-scope .antd-GridNavItem-content {
|
30652
|
+
display: flex;
|
30653
|
+
flex-direction: column;
|
30654
|
+
box-sizing: border-box;
|
30655
|
+
height: 100%;
|
30656
|
+
padding: 1rem 0.5rem;
|
30657
|
+
background-color: #fff;
|
30658
|
+
position: relative;
|
30659
|
+
}
|
30660
|
+
|
30661
|
+
.amis-scope .antd-GridNavItem-content .antd-Badge-text {
|
30662
|
+
z-index: 10;
|
30663
|
+
}
|
30664
|
+
|
30665
|
+
.amis-scope .antd-GridNavItem-content--border::after {
|
30666
|
+
border-width: 0 0.0625rem 0.0625rem 0;
|
30667
|
+
}
|
30668
|
+
|
30669
|
+
.amis-scope .antd-GridNavItem-content--square {
|
30670
|
+
position: absolute;
|
30671
|
+
top: 0;
|
30672
|
+
right: 0;
|
30673
|
+
left: 0;
|
30674
|
+
}
|
30675
|
+
|
30676
|
+
.amis-scope .antd-GridNavItem-content--center {
|
30677
|
+
align-items: center;
|
30678
|
+
justify-content: center;
|
30679
|
+
}
|
30680
|
+
|
30681
|
+
.amis-scope .antd-GridNavItem-content--horizontal {
|
30682
|
+
flex-direction: row;
|
30683
|
+
}
|
30684
|
+
|
30685
|
+
.amis-scope .antd-GridNavItem-content--horizontal .antd-GridNavItem-text {
|
30686
|
+
margin: 0 0 0 0.5rem;
|
30687
|
+
}
|
30688
|
+
|
30689
|
+
.amis-scope .antd-GridNavItem-content--reverse {
|
30690
|
+
flex-direction: column-reverse;
|
30691
|
+
}
|
30692
|
+
|
30693
|
+
.amis-scope .antd-GridNavItem-content--reverse .antd-GridNavItem-text {
|
30694
|
+
margin: 0 0 0.5rem;
|
30695
|
+
}
|
30696
|
+
|
30697
|
+
.amis-scope .antd-GridNavItem-content--horizontal .antd-GridNavItem-content--reverse {
|
30698
|
+
flex-direction: row-reverse;
|
30699
|
+
}
|
30700
|
+
|
30701
|
+
.amis-scope .antd-GridNavItem-content--horizontal .antd-GridNavItem-content--reverse .antd-GridNavItem-text {
|
30702
|
+
margin: 0 0.5rem 0 0;
|
30703
|
+
}
|
30704
|
+
|
30705
|
+
.amis-scope .antd-GridNavItem-content--surround::after {
|
30706
|
+
border-width: 0.0625rem;
|
30707
|
+
}
|
30708
|
+
|
30709
|
+
.amis-scope .antd-GridNavItem-content--clickable {
|
30710
|
+
cursor: pointer;
|
30711
|
+
}
|
30712
|
+
|
30471
30713
|
.amis-scope fieldset.antd-Collapse--lg,
|
30472
30714
|
.amis-scope fieldset.antd-Collapse--md,
|
30473
30715
|
.amis-scope fieldset.antd-Collapse--base,
|
@@ -30516,6 +30758,10 @@ readers do not read off random characters that represent icons */
|
|
30516
30758
|
position: relative;
|
30517
30759
|
}
|
30518
30760
|
|
30761
|
+
.amis-scope fieldset.antd-Collapse {
|
30762
|
+
margin-bottom: 0.75rem;
|
30763
|
+
}
|
30764
|
+
|
30519
30765
|
.amis-scope fieldset.antd-Collapse > legend {
|
30520
30766
|
font-weight: 400;
|
30521
30767
|
padding: 0.25rem 0;
|
@@ -33045,7 +33291,7 @@ readers do not read off random characters that represent icons */
|
|
33045
33291
|
.amis-scope .antd-ColorPicker-preview {
|
33046
33292
|
display: flex;
|
33047
33293
|
align-items: center;
|
33048
|
-
margin-
|
33294
|
+
margin-right: 0.5rem;
|
33049
33295
|
cursor: pointer;
|
33050
33296
|
}
|
33051
33297
|
|
@@ -33078,14 +33324,42 @@ readers do not read off random characters that represent icons */
|
|
33078
33324
|
fill: #1f2329;
|
33079
33325
|
}
|
33080
33326
|
|
33327
|
+
.amis-scope .antd-ColorPicker-arrow {
|
33328
|
+
margin-right: 0.25rem;
|
33329
|
+
width: 1rem;
|
33330
|
+
text-align: center;
|
33331
|
+
display: flex;
|
33332
|
+
align-items: center;
|
33333
|
+
justify-content: center;
|
33334
|
+
line-height: 1;
|
33335
|
+
}
|
33336
|
+
|
33337
|
+
.amis-scope .antd-ColorPicker-arrow > svg {
|
33338
|
+
transition: transform 0s;
|
33339
|
+
display: inline-block;
|
33340
|
+
color: #999;
|
33341
|
+
width: 10px;
|
33342
|
+
height: 10px;
|
33343
|
+
top: 0;
|
33344
|
+
}
|
33345
|
+
|
33346
|
+
.amis-scope .antd-ColorPicker.is-opened .antd-ColorPicker-arrow > svg {
|
33347
|
+
transform: rotate(180deg);
|
33348
|
+
}
|
33349
|
+
|
33350
|
+
.amis-scope .antd-ColorPicker-popover {
|
33351
|
+
border: none;
|
33352
|
+
box-shadow: none;
|
33353
|
+
}
|
33354
|
+
|
33081
33355
|
.amis-scope .antd-ColorControl:not(.is-inline) > .antd-ColorPicker {
|
33082
33356
|
display: flex;
|
33083
33357
|
}
|
33084
33358
|
|
33085
33359
|
.amis-scope .sketch-picker {
|
33086
|
-
box-shadow: none !important;
|
33087
|
-
border-radius: 0 !important;
|
33088
33360
|
border: none !important;
|
33361
|
+
border-radius: 2px !important;
|
33362
|
+
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
|
33089
33363
|
}
|
33090
33364
|
|
33091
33365
|
.amis-scope .antd-DatePicker {
|
@@ -34752,6 +35026,10 @@ readers do not read off random characters that represent icons */
|
|
34752
35026
|
pointer-events: none;
|
34753
35027
|
}
|
34754
35028
|
|
35029
|
+
.amis-scope .antd-Tree.is-draggable {
|
35030
|
+
position: relative;
|
35031
|
+
}
|
35032
|
+
|
34755
35033
|
.amis-scope .antd-Tree--outline .antd-Tree-sublist .antd-Tree-item--isLeaf:before {
|
34756
35034
|
position: absolute;
|
34757
35035
|
top: -8px;
|
@@ -34792,6 +35070,10 @@ readers do not read off random characters that represent icons */
|
|
34792
35070
|
left: -99999px;
|
34793
35071
|
}
|
34794
35072
|
|
35073
|
+
.amis-scope .antd-Tree.is-draggable .antd-Tree-itemLabel:hover::after {
|
35074
|
+
display: none;
|
35075
|
+
}
|
35076
|
+
|
34795
35077
|
.amis-scope .antd-Tree-item-icons {
|
34796
35078
|
visibility: hidden;
|
34797
35079
|
transition: visibility 0s ease;
|
@@ -34905,6 +35187,11 @@ readers do not read off random characters that represent icons */
|
|
34905
35187
|
width: calc(0.75rem + 0.25rem);
|
34906
35188
|
}
|
34907
35189
|
|
35190
|
+
.amis-scope .antd-Tree-itemDrager {
|
35191
|
+
cursor: move;
|
35192
|
+
color: inherit;
|
35193
|
+
}
|
35194
|
+
|
34908
35195
|
.amis-scope .antd-Tree-spinner {
|
34909
35196
|
margin-right: 0.25rem;
|
34910
35197
|
}
|
@@ -34951,6 +35238,35 @@ readers do not read off random characters that represent icons */
|
|
34951
35238
|
color: #999;
|
34952
35239
|
}
|
34953
35240
|
|
35241
|
+
.amis-scope .antd-Tree-dropIndicator {
|
35242
|
+
position: absolute;
|
35243
|
+
height: 0.125rem;
|
35244
|
+
background-color: #1890ff;
|
35245
|
+
border-radius: 0.0625rem;
|
35246
|
+
z-index: 1;
|
35247
|
+
}
|
35248
|
+
|
35249
|
+
.amis-scope .antd-Tree-dropIndicator::after {
|
35250
|
+
position: absolute;
|
35251
|
+
top: -0.1875rem;
|
35252
|
+
left: -0.375rem;
|
35253
|
+
width: 0.5rem;
|
35254
|
+
height: 0.5rem;
|
35255
|
+
background-color: transparent;
|
35256
|
+
border: 0.125rem solid #1890ff;
|
35257
|
+
border-radius: 50%;
|
35258
|
+
content: "";
|
35259
|
+
}
|
35260
|
+
|
35261
|
+
.amis-scope .antd-Tree-dropIndicator--hover {
|
35262
|
+
border-radius: 0;
|
35263
|
+
background-color: rgba(0, 126, 255, 0.08);
|
35264
|
+
}
|
35265
|
+
|
35266
|
+
.amis-scope .antd-Tree-dropIndicator--hover::after {
|
35267
|
+
display: none;
|
35268
|
+
}
|
35269
|
+
|
34954
35270
|
.amis-scope .antd-TreeSelectControl {
|
34955
35271
|
position: relative;
|
34956
35272
|
}
|
@@ -35306,6 +35622,8 @@ readers do not read off random characters that represent icons */
|
|
35306
35622
|
0.875rem
|
35307
35623
|
) / 2
|
35308
35624
|
) 0.375rem 0 0;
|
35625
|
+
display: flex;
|
35626
|
+
align-items: center;
|
35309
35627
|
}
|
35310
35628
|
|
35311
35629
|
.amis-scope .antd-Combo--ver:not(.antd-Combo--noBorder)::before,
|
@@ -35372,6 +35690,8 @@ readers do not read off random characters that represent icons */
|
|
35372
35690
|
) / 2
|
35373
35691
|
);
|
35374
35692
|
left: -1.875rem;
|
35693
|
+
display: flex;
|
35694
|
+
align-items: center;
|
35375
35695
|
}
|
35376
35696
|
|
35377
35697
|
.amis-scope .antd-Combo--ver:not(.antd-Combo--noBorder).is-draggable > .antd-Combo-items > .antd-Combo-item {
|
@@ -36085,6 +36405,7 @@ readers do not read off random characters that represent icons */
|
|
36085
36405
|
|
36086
36406
|
.amis-scope .antd-TabsTransfer-tab {
|
36087
36407
|
padding: 0;
|
36408
|
+
overflow: auto;
|
36088
36409
|
}
|
36089
36410
|
|
36090
36411
|
.amis-scope .antd-TabsTransfer-tabs {
|
@@ -37121,6 +37442,7 @@ readers do not read off random characters that represent icons */
|
|
37121
37442
|
border: none;
|
37122
37443
|
flex-grow: 1;
|
37123
37444
|
overflow: auto;
|
37445
|
+
scroll-behavior: smooth;
|
37124
37446
|
background: #fff;
|
37125
37447
|
}
|
37126
37448
|
|