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/cxd-ie11.css
CHANGED
@@ -19538,7 +19538,7 @@ readers do not read off random characters that represent icons */
|
|
19538
19538
|
|
19539
19539
|
.amis-scope a:hover {
|
19540
19540
|
color: #0d54e2;
|
19541
|
-
text-decoration:
|
19541
|
+
text-decoration: none;
|
19542
19542
|
}
|
19543
19543
|
|
19544
19544
|
.amis-scope label {
|
@@ -21147,6 +21147,13 @@ readers do not read off random characters that represent icons */
|
|
21147
21147
|
background: #e6e6e8;
|
21148
21148
|
}
|
21149
21149
|
|
21150
|
+
.amis-scope .cxd-Button.is-disabled > svg,
|
21151
|
+
.amis-scope .cxd-Button.is-disabled > svg path,
|
21152
|
+
.amis-scope .cxd-Button:disabled > svg,
|
21153
|
+
.amis-scope .cxd-Button:disabled > svg path {
|
21154
|
+
fill: currentColor;
|
21155
|
+
}
|
21156
|
+
|
21150
21157
|
.amis-scope .cxd-Button:not(:disabled):not(.is-disabled) {
|
21151
21158
|
cursor: pointer;
|
21152
21159
|
}
|
@@ -22933,7 +22940,9 @@ readers do not read off random characters that represent icons */
|
|
22933
22940
|
|
22934
22941
|
.amis-scope .cxd-Toast {
|
22935
22942
|
display: flex;
|
22936
|
-
|
22943
|
+
flex-flow: row nowrap;
|
22944
|
+
justify-content: space-between;
|
22945
|
+
align-items: flex-start;
|
22937
22946
|
max-width: 18.75rem;
|
22938
22947
|
pointer-events: auto;
|
22939
22948
|
margin-bottom: 0.25rem;
|
@@ -22944,7 +22953,6 @@ readers do not read off random characters that represent icons */
|
|
22944
22953
|
color: #fff;
|
22945
22954
|
position: relative;
|
22946
22955
|
opacity: 1;
|
22947
|
-
cursor: pointer;
|
22948
22956
|
opacity: 0;
|
22949
22957
|
transform: translateZ(0);
|
22950
22958
|
}
|
@@ -22971,10 +22979,15 @@ readers do not read off random characters that represent icons */
|
|
22971
22979
|
}
|
22972
22980
|
|
22973
22981
|
.amis-scope .cxd-Toast-close {
|
22974
|
-
color: #999;
|
22975
22982
|
display: inline-flex;
|
22976
|
-
|
22983
|
+
font-size: 1rem;
|
22984
|
+
line-height: 1.5rem;
|
22985
|
+
height: 1.5rem;
|
22986
|
+
color: #999;
|
22987
|
+
margin-left: 0.5rem;
|
22977
22988
|
opacity: 0.8;
|
22989
|
+
align-items: center;
|
22990
|
+
cursor: pointer;
|
22978
22991
|
}
|
22979
22992
|
|
22980
22993
|
.amis-scope .cxd-Toast-close:hover {
|
@@ -22982,11 +22995,33 @@ readers do not read off random characters that represent icons */
|
|
22982
22995
|
opacity: 1;
|
22983
22996
|
}
|
22984
22997
|
|
22985
|
-
.amis-scope .cxd-Toast-
|
22998
|
+
.amis-scope .cxd-Toast-close > svg {
|
22999
|
+
top: 0;
|
23000
|
+
}
|
23001
|
+
|
23002
|
+
.amis-scope .cxd-Toast-content {
|
23003
|
+
flex: 1;
|
23004
|
+
display: flex;
|
23005
|
+
flex-flow: column nowrap;
|
23006
|
+
justify-content: space-between;
|
23007
|
+
align-items: flex-start;
|
23008
|
+
}
|
23009
|
+
|
23010
|
+
.amis-scope .cxd-Toast-content .cxd-Toast-title {
|
23011
|
+
color: #151a26;
|
23012
|
+
font-size: 0.875rem;
|
23013
|
+
font-weight: 500;
|
23014
|
+
line-height: 1.5rem;
|
23015
|
+
margin-bottom: 0.25rem;
|
23016
|
+
}
|
23017
|
+
|
23018
|
+
.amis-scope .cxd-Toast-content .cxd-Toast-body {
|
23019
|
+
font-size: 0.75rem;
|
22986
23020
|
display: inline-block;
|
22987
23021
|
vertical-align: middle;
|
22988
23022
|
white-space: pre-wrap;
|
22989
23023
|
flex-grow: 1;
|
23024
|
+
line-height: 1.5rem;
|
22990
23025
|
}
|
22991
23026
|
|
22992
23027
|
.amis-scope .cxd-Toast-icon {
|
@@ -22994,7 +23029,10 @@ readers do not read off random characters that represent icons */
|
|
22994
23029
|
text-rendering: auto;
|
22995
23030
|
-webkit-font-smoothing: antialiased;
|
22996
23031
|
vertical-align: middle;
|
22997
|
-
margin-right: 0.
|
23032
|
+
margin-right: 0.5rem;
|
23033
|
+
height: 1.5rem;
|
23034
|
+
line-height: 1.5rem;
|
23035
|
+
align-items: center;
|
22998
23036
|
}
|
22999
23037
|
|
23000
23038
|
.amis-scope .cxd-Toast-icon > svg {
|
@@ -23068,24 +23106,47 @@ readers do not read off random characters that represent icons */
|
|
23068
23106
|
border-radius: 0.25rem;
|
23069
23107
|
margin-bottom: var(--Alert-md);
|
23070
23108
|
position: relative;
|
23109
|
+
color: #5e626a;
|
23110
|
+
display: flex;
|
23111
|
+
flex-flow: row nowrap;
|
23112
|
+
justify-content: space-between;
|
23113
|
+
align-items: flex-start;
|
23114
|
+
}
|
23115
|
+
|
23116
|
+
.amis-scope .cxd-Alert-icon {
|
23117
|
+
margin-right: 0.5rem;
|
23118
|
+
font-size: 1rem;
|
23119
|
+
}
|
23120
|
+
|
23121
|
+
.amis-scope .cxd-Alert-content {
|
23122
|
+
flex: 1;
|
23123
|
+
}
|
23124
|
+
|
23125
|
+
.amis-scope .cxd-Alert-content .cxd-Alert-title {
|
23126
|
+
color: #151a26;
|
23127
|
+
font-size: 0.875rem;
|
23128
|
+
font-weight: 500;
|
23129
|
+
line-height: 1.5rem;
|
23130
|
+
margin-bottom: 0.25rem;
|
23131
|
+
}
|
23132
|
+
|
23133
|
+
.amis-scope .cxd-Alert-content .cxd-Alert-desc {
|
23134
|
+
line-height: 1.5rem;
|
23071
23135
|
}
|
23072
23136
|
|
23073
23137
|
.amis-scope .cxd-Alert-close {
|
23074
|
-
position: absolute;
|
23075
23138
|
outline: none;
|
23076
23139
|
padding: 0;
|
23077
23140
|
cursor: pointer;
|
23078
23141
|
background: transparent;
|
23079
23142
|
border: 0;
|
23080
|
-
float: right;
|
23081
23143
|
line-height: 1;
|
23082
23144
|
color: #000;
|
23083
23145
|
text-shadow: 0 1px 0 #fff;
|
23084
23146
|
filter: alpha(opacity=20);
|
23085
23147
|
opacity: 0.2;
|
23086
|
-
|
23087
|
-
|
23088
|
-
transform: translateY(-50%);
|
23148
|
+
margin-left: 0.5rem;
|
23149
|
+
line-height: 1.5rem;
|
23089
23150
|
}
|
23090
23151
|
|
23091
23152
|
.amis-scope .cxd-Alert-close:hover {
|
@@ -23897,8 +23958,8 @@ readers do not read off random characters that represent icons */
|
|
23897
23958
|
cursor: move;
|
23898
23959
|
position: absolute;
|
23899
23960
|
left: 0;
|
23900
|
-
top: 0.6875rem;
|
23901
23961
|
display: none;
|
23962
|
+
line-height: 0;
|
23902
23963
|
}
|
23903
23964
|
|
23904
23965
|
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item .cxd-Nav-itemDrager > .icon,
|
@@ -24012,13 +24073,6 @@ readers do not read off random characters that represent icons */
|
|
24012
24073
|
pointer-events: none;
|
24013
24074
|
}
|
24014
24075
|
|
24015
|
-
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item.active,
|
24016
|
-
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item.is-active,
|
24017
|
-
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Badge.active,
|
24018
|
-
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Badge.is-active {
|
24019
|
-
background: #f6f7fb !important;
|
24020
|
-
}
|
24021
|
-
|
24022
24076
|
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item.active > a,
|
24023
24077
|
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item.is-active > .cxd-Nav-item-atcions,
|
24024
24078
|
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item.is-active > a,
|
@@ -24033,6 +24087,7 @@ readers do not read off random characters that represent icons */
|
|
24033
24087
|
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Badge.is-active > .cxd-Badge > a {
|
24034
24088
|
color: #2468f2;
|
24035
24089
|
position: relative;
|
24090
|
+
background: #f6f7fb;
|
24036
24091
|
}
|
24037
24092
|
|
24038
24093
|
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item.active > a::after,
|
@@ -24178,14 +24233,41 @@ readers do not read off random characters that represent icons */
|
|
24178
24233
|
padding: 0.25rem;
|
24179
24234
|
}
|
24180
24235
|
|
24236
|
+
.amis-scope .cxd-Page-asideResizor {
|
24237
|
+
position: absolute;
|
24238
|
+
right: -0.375rem;
|
24239
|
+
top: 50%;
|
24240
|
+
cursor: ew-resize;
|
24241
|
+
writing-mode: vertical-lr;
|
24242
|
+
width: 0.75rem;
|
24243
|
+
height: 1.5rem;
|
24244
|
+
margin-top: -0.75rem;
|
24245
|
+
border: 0.0625rem solid #dee2e6;
|
24246
|
+
background-color: #fff;
|
24247
|
+
border-radius: 0.142rem;
|
24248
|
+
font-size: 12px;
|
24249
|
+
line-height: 0.625rem;
|
24250
|
+
text-align: center;
|
24251
|
+
user-select: none;
|
24252
|
+
color: #666;
|
24253
|
+
}
|
24254
|
+
|
24255
|
+
.amis-scope .cxd-Page-asideResizor:hover {
|
24256
|
+
color: #000;
|
24257
|
+
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.12), 0 2px 4px 0 rgba(0, 0, 0, 0.08);
|
24258
|
+
}
|
24259
|
+
|
24260
|
+
.amis-scope .cxd-Page-asideResizor:after {
|
24261
|
+
content: "···";
|
24262
|
+
}
|
24263
|
+
|
24181
24264
|
.amis-scope .cxd-Page-toolbar > * + * {
|
24182
24265
|
margin-left: 0.25rem;
|
24183
24266
|
}
|
24184
24267
|
|
24185
24268
|
@media (min-width: 768px) {
|
24186
24269
|
.amis-scope .cxd-Page-aside {
|
24187
|
-
|
24188
|
-
max-width: 18.75rem;
|
24270
|
+
width: 10rem;
|
24189
24271
|
border-right: 0.0625rem solid #eceff8;
|
24190
24272
|
}
|
24191
24273
|
|
@@ -24200,6 +24282,11 @@ readers do not read off random characters that represent icons */
|
|
24200
24282
|
border: inherit;
|
24201
24283
|
}
|
24202
24284
|
|
24285
|
+
.amis-scope .cxd-Page-aside--withWidth {
|
24286
|
+
min-width: 10rem;
|
24287
|
+
max-width: 18.75rem;
|
24288
|
+
}
|
24289
|
+
|
24203
24290
|
.amis-scope .cxd-Page--withSidebar {
|
24204
24291
|
display: flex;
|
24205
24292
|
flex-direction: row;
|
@@ -24772,13 +24859,14 @@ readers do not read off random characters that represent icons */
|
|
24772
24859
|
.amis-scope .cxd-Spinner--icon {
|
24773
24860
|
background: transparent;
|
24774
24861
|
animation: spin 2s linear infinite;
|
24775
|
-
width:
|
24776
|
-
height:
|
24862
|
+
width: 16px;
|
24863
|
+
height: 16px;
|
24777
24864
|
}
|
24778
24865
|
|
24779
24866
|
.amis-scope .cxd-Spinner--icon svg.icon {
|
24780
|
-
width:
|
24781
|
-
height:
|
24867
|
+
width: 16px;
|
24868
|
+
height: 16px;
|
24869
|
+
top: 0;
|
24782
24870
|
}
|
24783
24871
|
|
24784
24872
|
.amis-scope .cxd-Spinner--overlay {
|
@@ -25042,16 +25130,16 @@ readers do not read off random characters that represent icons */
|
|
25042
25130
|
.amis-scope .cxd-Collapse {
|
25043
25131
|
border: 0.0625rem solid #dadbdd;
|
25044
25132
|
padding: 0;
|
25045
|
-
|
25133
|
+
line-height: 1.25rem;
|
25046
25134
|
}
|
25047
25135
|
|
25048
25136
|
.amis-scope .cxd-Collapse-header {
|
25049
25137
|
font-size: 14px;
|
25050
|
-
font-weight:
|
25138
|
+
font-weight: 400;
|
25051
25139
|
color: #333;
|
25052
25140
|
padding: 1rem;
|
25053
25141
|
margin: 0;
|
25054
|
-
|
25142
|
+
cursor: pointer;
|
25055
25143
|
background: #f2f2f4;
|
25056
25144
|
}
|
25057
25145
|
|
@@ -25073,7 +25161,6 @@ readers do not read off random characters that represent icons */
|
|
25073
25161
|
width: 1rem;
|
25074
25162
|
text-align: center;
|
25075
25163
|
margin-right: 0.5rem;
|
25076
|
-
cursor: pointer;
|
25077
25164
|
}
|
25078
25165
|
|
25079
25166
|
.amis-scope .cxd-Collapse-arrow:before {
|
@@ -25082,36 +25169,50 @@ readers do not read off random characters that represent icons */
|
|
25082
25169
|
display: inline-block;
|
25083
25170
|
width: 0.375rem;
|
25084
25171
|
height: 0.375rem;
|
25085
|
-
top: -0.
|
25172
|
+
top: -0.125rem;
|
25086
25173
|
border-color: #151a26;
|
25087
25174
|
border-style: solid;
|
25088
25175
|
border-width: 0.0625rem 0.0625rem 0 0;
|
25089
|
-
transform: rotate(
|
25176
|
+
transform: rotate(45deg);
|
25090
25177
|
transform-origin: 50% 50%;
|
25091
25178
|
}
|
25092
25179
|
|
25093
|
-
.amis-scope .cxd-Collapse-
|
25180
|
+
.amis-scope .cxd-Collapse-icon-tranform {
|
25181
|
+
display: inline-block;
|
25182
|
+
width: 1rem;
|
25183
|
+
text-align: center;
|
25184
|
+
margin-right: 0.25rem;
|
25185
|
+
}
|
25186
|
+
|
25187
|
+
.amis-scope .cxd-Collapse .cxd-TplField {
|
25094
25188
|
display: inline-block;
|
25095
25189
|
}
|
25096
25190
|
|
25097
|
-
.amis-scope .cxd-Collapse.is-
|
25098
|
-
transform: rotate(
|
25099
|
-
transform-origin:
|
25191
|
+
.amis-scope .cxd-Collapse.is-active .cxd-Collapse-arrow:before {
|
25192
|
+
transform: rotate(135deg);
|
25193
|
+
transform-origin: 50% 30%;
|
25100
25194
|
}
|
25101
25195
|
|
25102
|
-
.amis-scope .cxd-Collapse.is-
|
25103
|
-
|
25196
|
+
.amis-scope .cxd-Collapse.is-active .cxd-Collapse-icon-tranform {
|
25197
|
+
transform: rotate(90deg);
|
25104
25198
|
}
|
25105
25199
|
|
25106
|
-
.amis-scope .cxd-Collapse--
|
25107
|
-
cursor:
|
25200
|
+
.amis-scope .cxd-Collapse--disabled .cxd-Collapse-header {
|
25201
|
+
cursor: not-allowed;
|
25108
25202
|
user-select: none;
|
25203
|
+
color: #b4b6ba;
|
25204
|
+
}
|
25205
|
+
|
25206
|
+
.amis-scope .cxd-Collapse--disabled .cxd-Collapse-header:hover {
|
25207
|
+
background-color: #f2f2f4;
|
25208
|
+
}
|
25209
|
+
|
25210
|
+
.amis-scope .cxd-Collapse--disabled .cxd-Collapse-arrow:before {
|
25211
|
+
border-color: #b4b6ba;
|
25109
25212
|
}
|
25110
25213
|
|
25111
25214
|
.amis-scope .cxd-Collapse--title-bottom .cxd-Collapse-header {
|
25112
25215
|
text-align: center;
|
25113
|
-
color: #2468f2;
|
25114
|
-
border-left: none;
|
25115
25216
|
font-size: 0.875rem;
|
25116
25217
|
border-top: none;
|
25117
25218
|
border-bottom: none;
|
@@ -25122,15 +25223,13 @@ readers do not read off random characters that represent icons */
|
|
25122
25223
|
}
|
25123
25224
|
|
25124
25225
|
.amis-scope .cxd-Collapse--title-bottom .cxd-Collapse-arrow:before {
|
25125
|
-
top: 0.
|
25126
|
-
transform: rotate(
|
25127
|
-
transform-origin: 0% 50%;
|
25226
|
+
top: -0.25rem;
|
25227
|
+
transform: rotate(135deg);
|
25128
25228
|
}
|
25129
25229
|
|
25130
|
-
.amis-scope .cxd-Collapse--title-bottom.is-
|
25131
|
-
top:
|
25132
|
-
transform: rotate(
|
25133
|
-
transform-origin: 0% 50%;
|
25230
|
+
.amis-scope .cxd-Collapse--title-bottom.is-active .cxd-Collapse-arrow:before {
|
25231
|
+
top: 0;
|
25232
|
+
transform: rotate(-45deg);
|
25134
25233
|
}
|
25135
25234
|
|
25136
25235
|
.amis-scope .cxd-Collapse-contentWrapper {
|
@@ -25150,6 +25249,14 @@ readers do not read off random characters that represent icons */
|
|
25150
25249
|
font-weight: 400;
|
25151
25250
|
}
|
25152
25251
|
|
25252
|
+
.amis-scope .cxd-CollapseGroup .cxd-Collapse:not(:last-child) {
|
25253
|
+
border-bottom: none;
|
25254
|
+
}
|
25255
|
+
|
25256
|
+
.amis-scope .cxd-CollapseGroup.icon-position-right .cxd-Collapse-header .cxd-Collapse-arrow {
|
25257
|
+
float: right;
|
25258
|
+
}
|
25259
|
+
|
25153
25260
|
.amis-scope .cxd-ColorField {
|
25154
25261
|
display: inline-block;
|
25155
25262
|
}
|
@@ -27307,6 +27414,11 @@ readers do not read off random characters that represent icons */
|
|
27307
27414
|
cursor: move;
|
27308
27415
|
}
|
27309
27416
|
|
27417
|
+
.amis-scope .cxd-Table-table > thead > tr > th.cxd-Table-dragCell > svg,
|
27418
|
+
.amis-scope .cxd-Table-table > tbody > tr > td.cxd-Table-dragCell > svg {
|
27419
|
+
vertical-align: middle;
|
27420
|
+
}
|
27421
|
+
|
27310
27422
|
.amis-scope .cxd-Table-table > tbody > tr > td.cxd-Table-expandCell {
|
27311
27423
|
position: relative;
|
27312
27424
|
}
|
@@ -27588,7 +27700,7 @@ readers do not read off random characters that represent icons */
|
|
27588
27700
|
|
27589
27701
|
.amis-scope .cxd-Table-itemActions a:hover {
|
27590
27702
|
color: #0d54e2;
|
27591
|
-
text-decoration:
|
27703
|
+
text-decoration: none;
|
27592
27704
|
}
|
27593
27705
|
|
27594
27706
|
.amis-scope .cxd-Table-itemActions a.is-disabled {
|
@@ -27680,6 +27792,10 @@ readers do not read off random characters that represent icons */
|
|
27680
27792
|
color: #2468f2;
|
27681
27793
|
}
|
27682
27794
|
|
27795
|
+
.amis-scope .cxd-Table-dragBtn > svg {
|
27796
|
+
vertical-align: -2px;
|
27797
|
+
}
|
27798
|
+
|
27683
27799
|
.amis-scope .cxd-Table-table > tbody > tr:hover .cxd-Table-dragBtn,
|
27684
27800
|
.amis-scope .cxd-Table-table > tbody > tr.is-dragging .cxd-Table-dragBtn,
|
27685
27801
|
.amis-scope .cxd-Table-table > tbody > tr.is-drop-allowed .cxd-Table-dragBtn {
|
@@ -28521,7 +28637,7 @@ readers do not read off random characters that represent icons */
|
|
28521
28637
|
float: left;
|
28522
28638
|
margin-right: 0.75rem;
|
28523
28639
|
font-size: 1.25rem;
|
28524
|
-
text-transform: uppercase
|
28640
|
+
text-transform: uppercase;
|
28525
28641
|
}
|
28526
28642
|
|
28527
28643
|
.amis-scope .cxd-Card-meta {
|
@@ -30460,6 +30576,133 @@ readers do not read off random characters that represent icons */
|
|
30460
30576
|
display: none;
|
30461
30577
|
}
|
30462
30578
|
|
30579
|
+
.amis-scope .u-hairline::after {
|
30580
|
+
position: absolute;
|
30581
|
+
box-sizing: border-box;
|
30582
|
+
content: " ";
|
30583
|
+
pointer-events: none;
|
30584
|
+
top: -50%;
|
30585
|
+
right: -50%;
|
30586
|
+
bottom: -50%;
|
30587
|
+
left: -50%;
|
30588
|
+
border: 0 solid #dfe2e6;
|
30589
|
+
z-index: 1;
|
30590
|
+
transform: scale(0.5);
|
30591
|
+
}
|
30592
|
+
|
30593
|
+
.amis-scope .cxd-GridNav {
|
30594
|
+
display: flex;
|
30595
|
+
flex-wrap: wrap;
|
30596
|
+
}
|
30597
|
+
|
30598
|
+
.amis-scope .cxd-GridNav-top {
|
30599
|
+
position: relative;
|
30600
|
+
}
|
30601
|
+
|
30602
|
+
.amis-scope .cxd-GridNav-top::after {
|
30603
|
+
border-top-width: 0.0625rem;
|
30604
|
+
}
|
30605
|
+
|
30606
|
+
.amis-scope .cxd-GridNavItem {
|
30607
|
+
position: relative;
|
30608
|
+
box-sizing: border-box;
|
30609
|
+
}
|
30610
|
+
|
30611
|
+
.amis-scope .cxd-GridNavItem--square {
|
30612
|
+
height: 0;
|
30613
|
+
position: relative;
|
30614
|
+
}
|
30615
|
+
|
30616
|
+
.amis-scope .cxd-GridNavItem-icon {
|
30617
|
+
width: var(--rv-grid-item-icon-size);
|
30618
|
+
}
|
30619
|
+
|
30620
|
+
.amis-scope .cxd-GridNavItem-text {
|
30621
|
+
color: #151a26;
|
30622
|
+
font-size: 0.75rem;
|
30623
|
+
line-height: 1.5;
|
30624
|
+
word-break: break-all;
|
30625
|
+
flex-shrink: 0;
|
30626
|
+
}
|
30627
|
+
|
30628
|
+
.amis-scope .cxd-GridNavItem-icon + .cxd-GridNavItem-text {
|
30629
|
+
margin-top: 0.5rem;
|
30630
|
+
}
|
30631
|
+
|
30632
|
+
.amis-scope .cxd-GridNavItem-image {
|
30633
|
+
display: inline-block;
|
30634
|
+
}
|
30635
|
+
|
30636
|
+
.amis-scope .cxd-GridNavItem-image svg,
|
30637
|
+
.amis-scope .cxd-GridNavItem-image img {
|
30638
|
+
max-width: 100%;
|
30639
|
+
display: block;
|
30640
|
+
width: 60%;
|
30641
|
+
margin: 0 auto;
|
30642
|
+
}
|
30643
|
+
|
30644
|
+
.amis-scope .cxd-GridNavItem-content {
|
30645
|
+
display: flex;
|
30646
|
+
flex-direction: column;
|
30647
|
+
box-sizing: border-box;
|
30648
|
+
height: 100%;
|
30649
|
+
padding: 1rem 0.5rem;
|
30650
|
+
background-color: #fff;
|
30651
|
+
position: relative;
|
30652
|
+
}
|
30653
|
+
|
30654
|
+
.amis-scope .cxd-GridNavItem-content .cxd-Badge-text {
|
30655
|
+
z-index: 10;
|
30656
|
+
}
|
30657
|
+
|
30658
|
+
.amis-scope .cxd-GridNavItem-content--border::after {
|
30659
|
+
border-width: 0 0.0625rem 0.0625rem 0;
|
30660
|
+
}
|
30661
|
+
|
30662
|
+
.amis-scope .cxd-GridNavItem-content--square {
|
30663
|
+
position: absolute;
|
30664
|
+
top: 0;
|
30665
|
+
right: 0;
|
30666
|
+
left: 0;
|
30667
|
+
}
|
30668
|
+
|
30669
|
+
.amis-scope .cxd-GridNavItem-content--center {
|
30670
|
+
align-items: center;
|
30671
|
+
justify-content: center;
|
30672
|
+
}
|
30673
|
+
|
30674
|
+
.amis-scope .cxd-GridNavItem-content--horizontal {
|
30675
|
+
flex-direction: row;
|
30676
|
+
}
|
30677
|
+
|
30678
|
+
.amis-scope .cxd-GridNavItem-content--horizontal .cxd-GridNavItem-text {
|
30679
|
+
margin: 0 0 0 0.5rem;
|
30680
|
+
}
|
30681
|
+
|
30682
|
+
.amis-scope .cxd-GridNavItem-content--reverse {
|
30683
|
+
flex-direction: column-reverse;
|
30684
|
+
}
|
30685
|
+
|
30686
|
+
.amis-scope .cxd-GridNavItem-content--reverse .cxd-GridNavItem-text {
|
30687
|
+
margin: 0 0 0.5rem;
|
30688
|
+
}
|
30689
|
+
|
30690
|
+
.amis-scope .cxd-GridNavItem-content--horizontal .cxd-GridNavItem-content--reverse {
|
30691
|
+
flex-direction: row-reverse;
|
30692
|
+
}
|
30693
|
+
|
30694
|
+
.amis-scope .cxd-GridNavItem-content--horizontal .cxd-GridNavItem-content--reverse .cxd-GridNavItem-text {
|
30695
|
+
margin: 0 0.5rem 0 0;
|
30696
|
+
}
|
30697
|
+
|
30698
|
+
.amis-scope .cxd-GridNavItem-content--surround::after {
|
30699
|
+
border-width: 0.0625rem;
|
30700
|
+
}
|
30701
|
+
|
30702
|
+
.amis-scope .cxd-GridNavItem-content--clickable {
|
30703
|
+
cursor: pointer;
|
30704
|
+
}
|
30705
|
+
|
30463
30706
|
.amis-scope fieldset.cxd-Collapse--lg,
|
30464
30707
|
.amis-scope fieldset.cxd-Collapse--md,
|
30465
30708
|
.amis-scope fieldset.cxd-Collapse--base,
|
@@ -30508,6 +30751,10 @@ readers do not read off random characters that represent icons */
|
|
30508
30751
|
position: relative;
|
30509
30752
|
}
|
30510
30753
|
|
30754
|
+
.amis-scope fieldset.cxd-Collapse {
|
30755
|
+
margin-bottom: 0.75rem;
|
30756
|
+
}
|
30757
|
+
|
30511
30758
|
.amis-scope fieldset.cxd-Collapse > legend {
|
30512
30759
|
font-weight: 400;
|
30513
30760
|
padding: 0.25rem 0;
|
@@ -33036,7 +33283,7 @@ readers do not read off random characters that represent icons */
|
|
33036
33283
|
.amis-scope .cxd-ColorPicker-preview {
|
33037
33284
|
display: flex;
|
33038
33285
|
align-items: center;
|
33039
|
-
margin-
|
33286
|
+
margin-right: 0.5rem;
|
33040
33287
|
cursor: pointer;
|
33041
33288
|
}
|
33042
33289
|
|
@@ -33069,14 +33316,42 @@ readers do not read off random characters that represent icons */
|
|
33069
33316
|
fill: #1f2329;
|
33070
33317
|
}
|
33071
33318
|
|
33319
|
+
.amis-scope .cxd-ColorPicker-arrow {
|
33320
|
+
margin-right: 0.25rem;
|
33321
|
+
width: 1rem;
|
33322
|
+
text-align: center;
|
33323
|
+
display: flex;
|
33324
|
+
align-items: center;
|
33325
|
+
justify-content: center;
|
33326
|
+
line-height: 1;
|
33327
|
+
}
|
33328
|
+
|
33329
|
+
.amis-scope .cxd-ColorPicker-arrow > svg {
|
33330
|
+
transition: transform 0s;
|
33331
|
+
display: inline-block;
|
33332
|
+
color: #83868c;
|
33333
|
+
width: 10px;
|
33334
|
+
height: 10px;
|
33335
|
+
top: 0;
|
33336
|
+
}
|
33337
|
+
|
33338
|
+
.amis-scope .cxd-ColorPicker.is-opened .cxd-ColorPicker-arrow > svg {
|
33339
|
+
transform: rotate(180deg);
|
33340
|
+
}
|
33341
|
+
|
33342
|
+
.amis-scope .cxd-ColorPicker-popover {
|
33343
|
+
border: none;
|
33344
|
+
box-shadow: none;
|
33345
|
+
}
|
33346
|
+
|
33072
33347
|
.amis-scope .cxd-ColorControl:not(.is-inline) > .cxd-ColorPicker {
|
33073
33348
|
display: flex;
|
33074
33349
|
}
|
33075
33350
|
|
33076
33351
|
.amis-scope .sketch-picker {
|
33077
|
-
box-shadow: none !important;
|
33078
|
-
border-radius: 0 !important;
|
33079
33352
|
border: none !important;
|
33353
|
+
border-radius: 0.25rem !important;
|
33354
|
+
box-shadow: 0px 4px 6px 0px rgba(8, 14, 26, 0.06), 0px 1px 10px 0px rgba(8, 14, 26, 0.05), 0px 2px 4px -1px rgba(8, 14, 26, 0.04) !important;
|
33080
33355
|
}
|
33081
33356
|
|
33082
33357
|
.amis-scope .cxd-DatePicker {
|
@@ -34743,6 +35018,10 @@ readers do not read off random characters that represent icons */
|
|
34743
35018
|
pointer-events: none;
|
34744
35019
|
}
|
34745
35020
|
|
35021
|
+
.amis-scope .cxd-Tree.is-draggable {
|
35022
|
+
position: relative;
|
35023
|
+
}
|
35024
|
+
|
34746
35025
|
.amis-scope .cxd-Tree--outline .cxd-Tree-sublist .cxd-Tree-item--isLeaf:before {
|
34747
35026
|
position: absolute;
|
34748
35027
|
top: -8px;
|
@@ -34783,6 +35062,10 @@ readers do not read off random characters that represent icons */
|
|
34783
35062
|
left: -99999px;
|
34784
35063
|
}
|
34785
35064
|
|
35065
|
+
.amis-scope .cxd-Tree.is-draggable .cxd-Tree-itemLabel:hover::after {
|
35066
|
+
display: none;
|
35067
|
+
}
|
35068
|
+
|
34786
35069
|
.amis-scope .cxd-Tree-item-icons {
|
34787
35070
|
visibility: hidden;
|
34788
35071
|
transition: visibility 0s ease;
|
@@ -34896,6 +35179,11 @@ readers do not read off random characters that represent icons */
|
|
34896
35179
|
width: calc(0.75rem + 0.25rem);
|
34897
35180
|
}
|
34898
35181
|
|
35182
|
+
.amis-scope .cxd-Tree-itemDrager {
|
35183
|
+
cursor: move;
|
35184
|
+
color: #999;
|
35185
|
+
}
|
35186
|
+
|
34899
35187
|
.amis-scope .cxd-Tree-spinner {
|
34900
35188
|
margin-right: 0.25rem;
|
34901
35189
|
}
|
@@ -34942,6 +35230,35 @@ readers do not read off random characters that represent icons */
|
|
34942
35230
|
color: #b4b6ba;
|
34943
35231
|
}
|
34944
35232
|
|
35233
|
+
.amis-scope .cxd-Tree-dropIndicator {
|
35234
|
+
position: absolute;
|
35235
|
+
height: 0.125rem;
|
35236
|
+
background-color: #2468f2;
|
35237
|
+
border-radius: 0.0625rem;
|
35238
|
+
z-index: 1;
|
35239
|
+
}
|
35240
|
+
|
35241
|
+
.amis-scope .cxd-Tree-dropIndicator::after {
|
35242
|
+
position: absolute;
|
35243
|
+
top: -0.1875rem;
|
35244
|
+
left: -0.375rem;
|
35245
|
+
width: 0.5rem;
|
35246
|
+
height: 0.5rem;
|
35247
|
+
background-color: transparent;
|
35248
|
+
border: 0.125rem solid #2468f2;
|
35249
|
+
border-radius: 50%;
|
35250
|
+
content: "";
|
35251
|
+
}
|
35252
|
+
|
35253
|
+
.amis-scope .cxd-Tree-dropIndicator--hover {
|
35254
|
+
border-radius: 0;
|
35255
|
+
background-color: rgba(0, 126, 255, 0.08);
|
35256
|
+
}
|
35257
|
+
|
35258
|
+
.amis-scope .cxd-Tree-dropIndicator--hover::after {
|
35259
|
+
display: none;
|
35260
|
+
}
|
35261
|
+
|
34945
35262
|
.amis-scope .cxd-TreeSelectControl {
|
34946
35263
|
position: relative;
|
34947
35264
|
}
|
@@ -35292,6 +35609,8 @@ readers do not read off random characters that represent icons */
|
|
35292
35609
|
|
35293
35610
|
.amis-scope .cxd-Combo--hor .cxd-Combo-itemDrager {
|
35294
35611
|
padding: 0.25rem 0.375rem 0 0;
|
35612
|
+
display: flex;
|
35613
|
+
align-items: center;
|
35295
35614
|
}
|
35296
35615
|
|
35297
35616
|
.amis-scope .cxd-Combo--ver:not(.cxd-Combo--noBorder)::before,
|
@@ -35353,6 +35672,8 @@ readers do not read off random characters that represent icons */
|
|
35353
35672
|
position: absolute;
|
35354
35673
|
top: 0.25rem;
|
35355
35674
|
left: -1.875rem;
|
35675
|
+
display: flex;
|
35676
|
+
align-items: center;
|
35356
35677
|
}
|
35357
35678
|
|
35358
35679
|
.amis-scope .cxd-Combo--ver:not(.cxd-Combo--noBorder).is-draggable > .cxd-Combo-items > .cxd-Combo-item {
|
@@ -35527,7 +35848,7 @@ readers do not read off random characters that represent icons */
|
|
35527
35848
|
|
35528
35849
|
.amis-scope .cxd-SubForm-addBtn:hover:focus {
|
35529
35850
|
color: #209bfd;
|
35530
|
-
text-decoration:
|
35851
|
+
text-decoration: none;
|
35531
35852
|
box-shadow: none;
|
35532
35853
|
}
|
35533
35854
|
|
@@ -36066,6 +36387,7 @@ readers do not read off random characters that represent icons */
|
|
36066
36387
|
|
36067
36388
|
.amis-scope .cxd-TabsTransfer-tab {
|
36068
36389
|
padding: 0;
|
36390
|
+
overflow: auto;
|
36069
36391
|
}
|
36070
36392
|
|
36071
36393
|
.amis-scope .cxd-TabsTransfer-tabs {
|
@@ -37101,6 +37423,7 @@ readers do not read off random characters that represent icons */
|
|
37101
37423
|
border: none;
|
37102
37424
|
flex-grow: 1;
|
37103
37425
|
overflow: auto;
|
37426
|
+
scroll-behavior: smooth;
|
37104
37427
|
background: #fff;
|
37105
37428
|
}
|
37106
37429
|
|
@@ -39863,11 +40186,6 @@ readers do not read off random characters that represent icons */
|
|
39863
40186
|
color: #2d323c;
|
39864
40187
|
}
|
39865
40188
|
|
39866
|
-
.amis-scope .cxd-ColorPicker .cxd-PopOver {
|
39867
|
-
border: none;
|
39868
|
-
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
|
39869
|
-
}
|
39870
|
-
|
39871
40189
|
.amis-scope .cxd-IconPickerControl .cxd-IconPickerControl-input--withAC .cxd-IconPickerControl-sugsPanel {
|
39872
40190
|
border: none;
|
39873
40191
|
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
|
@@ -39978,6 +40296,7 @@ readers do not read off random characters that represent icons */
|
|
39978
40296
|
.amis-scope .cxd-Steps .cxd-StepsItem-containerIcon .cxd-StepsItem-icon svg {
|
39979
40297
|
width: 0.75rem;
|
39980
40298
|
height: 0.75rem;
|
40299
|
+
top: 0;
|
39981
40300
|
}
|
39982
40301
|
|
39983
40302
|
.amis-scope .cxd-Steps .cxd-StepsItem-containerIconWrapper .cxd-StepsItem-body .cxd-StepsItem-title:after {
|