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.css
CHANGED
@@ -19582,6 +19582,7 @@ readers do not read off random characters that represent icons */
|
|
19582
19582
|
) / 2 - var(--ColorPicker-borderWidth)
|
19583
19583
|
);
|
19584
19584
|
--ColorPicker-placeholderColor: var(--Form-input-placeholderColor);
|
19585
|
+
--ColorPicker-boxShadow: var(--boxShadow);
|
19585
19586
|
--Combo--horizontal-dragger-top: var(--Form-label-paddingTop);
|
19586
19587
|
--Combo--horizontal-item-gap: var(--gap-xs);
|
19587
19588
|
--Combo--vertical-item-borderColor: var(--borderColor);
|
@@ -20341,7 +20342,7 @@ readers do not read off random characters that represent icons */
|
|
20341
20342
|
--Toast-icon-height: var(--Toast-icon-width);
|
20342
20343
|
--Toast-opacity: 0.8;
|
20343
20344
|
--Toast-paddingL: 2.5rem;
|
20344
|
-
--Toast-paddingX: var(--gap-
|
20345
|
+
--Toast-paddingX: var(--gap-md);
|
20345
20346
|
--Toast-paddingY: var(--gap-xs);
|
20346
20347
|
--Toast-title-display: block;
|
20347
20348
|
--Toast-width: 18.75rem;
|
@@ -22541,6 +22542,13 @@ readers do not read off random characters that represent icons */
|
|
22541
22542
|
background: var(--Button-onDisabled-bg);
|
22542
22543
|
}
|
22543
22544
|
|
22545
|
+
.amis-scope .antd-Button.is-disabled > svg,
|
22546
|
+
.amis-scope .antd-Button.is-disabled > svg path,
|
22547
|
+
.amis-scope .antd-Button:disabled > svg,
|
22548
|
+
.amis-scope .antd-Button:disabled > svg path {
|
22549
|
+
fill: currentColor;
|
22550
|
+
}
|
22551
|
+
|
22544
22552
|
.amis-scope .antd-Button:not(:disabled):not(.is-disabled) {
|
22545
22553
|
cursor: pointer;
|
22546
22554
|
}
|
@@ -24307,7 +24315,9 @@ readers do not read off random characters that represent icons */
|
|
24307
24315
|
|
24308
24316
|
.amis-scope .antd-Toast {
|
24309
24317
|
display: flex;
|
24310
|
-
|
24318
|
+
flex-flow: row nowrap;
|
24319
|
+
justify-content: space-between;
|
24320
|
+
align-items: flex-start;
|
24311
24321
|
max-width: var(--Toast-width);
|
24312
24322
|
pointer-events: auto;
|
24313
24323
|
margin-bottom: var(--gap-xs);
|
@@ -24318,7 +24328,6 @@ readers do not read off random characters that represent icons */
|
|
24318
24328
|
color: var(--Toast-color);
|
24319
24329
|
position: relative;
|
24320
24330
|
opacity: var(--Toast-opacity);
|
24321
|
-
cursor: pointer;
|
24322
24331
|
opacity: 0;
|
24323
24332
|
transform: translateZ(0);
|
24324
24333
|
}
|
@@ -24345,10 +24354,15 @@ readers do not read off random characters that represent icons */
|
|
24345
24354
|
}
|
24346
24355
|
|
24347
24356
|
.amis-scope .antd-Toast-close {
|
24348
|
-
color: var(--Toast-close-color);
|
24349
24357
|
display: inline-flex;
|
24350
|
-
|
24358
|
+
font-size: var(--fontSizeLg);
|
24359
|
+
line-height: var(--gap-xl);
|
24360
|
+
height: var(--gap-xl);
|
24361
|
+
color: var(--Toast-close-color);
|
24362
|
+
margin-left: var(--gap-sm);
|
24351
24363
|
opacity: 0.8;
|
24364
|
+
align-items: center;
|
24365
|
+
cursor: pointer;
|
24352
24366
|
}
|
24353
24367
|
|
24354
24368
|
.amis-scope .antd-Toast-close:hover {
|
@@ -24356,11 +24370,33 @@ readers do not read off random characters that represent icons */
|
|
24356
24370
|
opacity: 1;
|
24357
24371
|
}
|
24358
24372
|
|
24359
|
-
.amis-scope .antd-Toast-
|
24373
|
+
.amis-scope .antd-Toast-close > svg {
|
24374
|
+
top: 0;
|
24375
|
+
}
|
24376
|
+
|
24377
|
+
.amis-scope .antd-Toast-content {
|
24378
|
+
flex: 1;
|
24379
|
+
display: flex;
|
24380
|
+
flex-flow: column nowrap;
|
24381
|
+
justify-content: space-between;
|
24382
|
+
align-items: flex-start;
|
24383
|
+
}
|
24384
|
+
|
24385
|
+
.amis-scope .antd-Toast-content .antd-Toast-title {
|
24386
|
+
color: var(--text-color);
|
24387
|
+
font-size: var(--fontSizeBase);
|
24388
|
+
font-weight: 500;
|
24389
|
+
line-height: var(--gap-xl);
|
24390
|
+
margin-bottom: var(--gap-xs);
|
24391
|
+
}
|
24392
|
+
|
24393
|
+
.amis-scope .antd-Toast-content .antd-Toast-body {
|
24394
|
+
font-size: var(--fontSizeSm);
|
24360
24395
|
display: inline-block;
|
24361
24396
|
vertical-align: middle;
|
24362
24397
|
white-space: pre-wrap;
|
24363
24398
|
flex-grow: 1;
|
24399
|
+
line-height: var(--gap-xl);
|
24364
24400
|
}
|
24365
24401
|
|
24366
24402
|
.amis-scope .antd-Toast-icon {
|
@@ -24368,7 +24404,10 @@ readers do not read off random characters that represent icons */
|
|
24368
24404
|
text-rendering: auto;
|
24369
24405
|
-webkit-font-smoothing: antialiased;
|
24370
24406
|
vertical-align: middle;
|
24371
|
-
margin-right: var(--gap-
|
24407
|
+
margin-right: var(--gap-sm);
|
24408
|
+
height: var(--gap-xl);
|
24409
|
+
line-height: var(--gap-xl);
|
24410
|
+
align-items: center;
|
24372
24411
|
}
|
24373
24412
|
|
24374
24413
|
.amis-scope .antd-Toast-icon > svg {
|
@@ -24442,24 +24481,47 @@ readers do not read off random characters that represent icons */
|
|
24442
24481
|
border-radius: var(--Alert-borderRadius);
|
24443
24482
|
margin-bottom: var(--Alert-marginBottom);
|
24444
24483
|
position: relative;
|
24484
|
+
color: var(--Alert-fontColor);
|
24485
|
+
display: flex;
|
24486
|
+
flex-flow: row nowrap;
|
24487
|
+
justify-content: space-between;
|
24488
|
+
align-items: flex-start;
|
24489
|
+
}
|
24490
|
+
|
24491
|
+
.amis-scope .antd-Alert-icon {
|
24492
|
+
margin-right: 0.5rem;
|
24493
|
+
font-size: var(--fontSizeLg);
|
24494
|
+
}
|
24495
|
+
|
24496
|
+
.amis-scope .antd-Alert-content {
|
24497
|
+
flex: 1;
|
24498
|
+
}
|
24499
|
+
|
24500
|
+
.amis-scope .antd-Alert-content .antd-Alert-title {
|
24501
|
+
color: var(--text-color);
|
24502
|
+
font-size: var(--fontSizeBase);
|
24503
|
+
font-weight: 500;
|
24504
|
+
line-height: 1.5rem;
|
24505
|
+
margin-bottom: 0.25rem;
|
24506
|
+
}
|
24507
|
+
|
24508
|
+
.amis-scope .antd-Alert-content .antd-Alert-desc {
|
24509
|
+
line-height: 1.5rem;
|
24445
24510
|
}
|
24446
24511
|
|
24447
24512
|
.amis-scope .antd-Alert-close {
|
24448
|
-
position: absolute;
|
24449
24513
|
outline: none;
|
24450
24514
|
padding: 0;
|
24451
24515
|
cursor: pointer;
|
24452
24516
|
background: transparent;
|
24453
24517
|
border: 0;
|
24454
|
-
float: right;
|
24455
24518
|
line-height: 1;
|
24456
24519
|
color: #000;
|
24457
24520
|
text-shadow: 0 1px 0 #fff;
|
24458
24521
|
filter: alpha(opacity=20);
|
24459
24522
|
opacity: 0.2;
|
24460
|
-
|
24461
|
-
|
24462
|
-
transform: translateY(-50%);
|
24523
|
+
margin-left: 0.5rem;
|
24524
|
+
line-height: 1.5rem;
|
24463
24525
|
}
|
24464
24526
|
|
24465
24527
|
.amis-scope .antd-Alert-close:hover {
|
@@ -25256,8 +25318,8 @@ readers do not read off random characters that represent icons */
|
|
25256
25318
|
cursor: move;
|
25257
25319
|
position: absolute;
|
25258
25320
|
left: 0;
|
25259
|
-
top: 0.6875rem;
|
25260
25321
|
display: none;
|
25322
|
+
line-height: 0;
|
25261
25323
|
}
|
25262
25324
|
|
25263
25325
|
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Nav-item .antd-Nav-itemDrager > .icon,
|
@@ -25371,13 +25433,6 @@ readers do not read off random characters that represent icons */
|
|
25371
25433
|
pointer-events: none;
|
25372
25434
|
}
|
25373
25435
|
|
25374
|
-
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Nav-item.active,
|
25375
|
-
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Nav-item.is-active,
|
25376
|
-
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Badge.active,
|
25377
|
-
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Badge.is-active {
|
25378
|
-
background: var(--Nav-item-onActive-bg) !important;
|
25379
|
-
}
|
25380
|
-
|
25381
25436
|
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Nav-item.active > a,
|
25382
25437
|
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Nav-item.is-active > .antd-Nav-item-atcions,
|
25383
25438
|
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Nav-item.is-active > a,
|
@@ -25392,6 +25447,7 @@ readers do not read off random characters that represent icons */
|
|
25392
25447
|
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Badge.is-active > .antd-Badge > a {
|
25393
25448
|
color: var(--Nav-item-onActive-color);
|
25394
25449
|
position: relative;
|
25450
|
+
background: var(--Nav-item-onActive-bg);
|
25395
25451
|
}
|
25396
25452
|
|
25397
25453
|
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Nav-item.active > a::after,
|
@@ -25537,14 +25593,41 @@ readers do not read off random characters that represent icons */
|
|
25537
25593
|
padding: var(--gap-xs);
|
25538
25594
|
}
|
25539
25595
|
|
25596
|
+
.amis-scope .antd-Page-asideResizor {
|
25597
|
+
position: absolute;
|
25598
|
+
right: -0.375rem;
|
25599
|
+
top: 50%;
|
25600
|
+
cursor: ew-resize;
|
25601
|
+
writing-mode: vertical-lr;
|
25602
|
+
width: 0.75rem;
|
25603
|
+
height: 1.5rem;
|
25604
|
+
margin-top: -0.75rem;
|
25605
|
+
border: 0.0625rem solid #dee2e6;
|
25606
|
+
background-color: #fff;
|
25607
|
+
border-radius: 0.142rem;
|
25608
|
+
font-size: 12px;
|
25609
|
+
line-height: 0.625rem;
|
25610
|
+
text-align: center;
|
25611
|
+
user-select: none;
|
25612
|
+
color: #666;
|
25613
|
+
}
|
25614
|
+
|
25615
|
+
.amis-scope .antd-Page-asideResizor:hover {
|
25616
|
+
color: #000;
|
25617
|
+
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.12), 0 2px 4px 0 rgba(0, 0, 0, 0.08);
|
25618
|
+
}
|
25619
|
+
|
25620
|
+
.amis-scope .antd-Page-asideResizor:after {
|
25621
|
+
content: "···";
|
25622
|
+
}
|
25623
|
+
|
25540
25624
|
.amis-scope .antd-Page-toolbar > * + * {
|
25541
25625
|
margin-left: var(--gap-xs);
|
25542
25626
|
}
|
25543
25627
|
|
25544
25628
|
@media (min-width: 768px) {
|
25545
25629
|
.amis-scope .antd-Page-aside {
|
25546
|
-
|
25547
|
-
max-width: var(--Page-aside-maxWidth);
|
25630
|
+
width: var(--Page-aside-width);
|
25548
25631
|
border-right: var(--borderWidth) solid var(--borderColor);
|
25549
25632
|
}
|
25550
25633
|
|
@@ -25559,6 +25642,11 @@ readers do not read off random characters that represent icons */
|
|
25559
25642
|
border: inherit;
|
25560
25643
|
}
|
25561
25644
|
|
25645
|
+
.amis-scope .antd-Page-aside--withWidth {
|
25646
|
+
min-width: var(--Page-aside-width);
|
25647
|
+
max-width: var(--Page-aside-maxWidth);
|
25648
|
+
}
|
25649
|
+
|
25562
25650
|
.amis-scope .antd-Page--withSidebar {
|
25563
25651
|
display: flex;
|
25564
25652
|
flex-direction: row;
|
@@ -26131,13 +26219,14 @@ readers do not read off random characters that represent icons */
|
|
26131
26219
|
.amis-scope .antd-Spinner--icon {
|
26132
26220
|
background: transparent;
|
26133
26221
|
animation: spin 2s linear infinite;
|
26134
|
-
width:
|
26135
|
-
height:
|
26222
|
+
width: 16px;
|
26223
|
+
height: 16px;
|
26136
26224
|
}
|
26137
26225
|
|
26138
26226
|
.amis-scope .antd-Spinner--icon svg.icon {
|
26139
|
-
width:
|
26140
|
-
height:
|
26227
|
+
width: 16px;
|
26228
|
+
height: 16px;
|
26229
|
+
top: 0;
|
26141
26230
|
}
|
26142
26231
|
|
26143
26232
|
.amis-scope .antd-Spinner--overlay {
|
@@ -26398,7 +26487,7 @@ readers do not read off random characters that represent icons */
|
|
26398
26487
|
.amis-scope .antd-Collapse {
|
26399
26488
|
border: var(--Collapse-border);
|
26400
26489
|
padding: 0;
|
26401
|
-
|
26490
|
+
line-height: 1.25rem;
|
26402
26491
|
}
|
26403
26492
|
|
26404
26493
|
.amis-scope .antd-Collapse-header {
|
@@ -26407,7 +26496,7 @@ readers do not read off random characters that represent icons */
|
|
26407
26496
|
color: var(--text--loud-color);
|
26408
26497
|
padding: var(--Collapse-header-padding);
|
26409
26498
|
margin: 0;
|
26410
|
-
|
26499
|
+
cursor: pointer;
|
26411
26500
|
background: var(--Collapse-header-bg);
|
26412
26501
|
}
|
26413
26502
|
|
@@ -26428,8 +26517,7 @@ readers do not read off random characters that represent icons */
|
|
26428
26517
|
display: inline-block;
|
26429
26518
|
width: 1rem;
|
26430
26519
|
text-align: center;
|
26431
|
-
margin-right:
|
26432
|
-
cursor: pointer;
|
26520
|
+
margin-right: var(--gap-sm);
|
26433
26521
|
}
|
26434
26522
|
|
26435
26523
|
.amis-scope .antd-Collapse-arrow:before {
|
@@ -26438,36 +26526,50 @@ readers do not read off random characters that represent icons */
|
|
26438
26526
|
display: inline-block;
|
26439
26527
|
width: 0.375rem;
|
26440
26528
|
height: 0.375rem;
|
26441
|
-
top: -0.
|
26529
|
+
top: -0.125rem;
|
26442
26530
|
border-color: var(--text-color);
|
26443
26531
|
border-style: solid;
|
26444
26532
|
border-width: 0.0625rem 0.0625rem 0 0;
|
26445
|
-
transform: rotate(
|
26533
|
+
transform: rotate(45deg);
|
26446
26534
|
transform-origin: 50% 50%;
|
26447
26535
|
}
|
26448
26536
|
|
26449
|
-
.amis-scope .antd-Collapse-
|
26537
|
+
.amis-scope .antd-Collapse-icon-tranform {
|
26450
26538
|
display: inline-block;
|
26539
|
+
width: 1rem;
|
26540
|
+
text-align: center;
|
26541
|
+
margin-right: var(--gap-xs);
|
26451
26542
|
}
|
26452
26543
|
|
26453
|
-
.amis-scope .antd-Collapse
|
26454
|
-
|
26455
|
-
transform-origin: 0% 50%;
|
26544
|
+
.amis-scope .antd-Collapse .antd-TplField {
|
26545
|
+
display: inline-block;
|
26456
26546
|
}
|
26457
26547
|
|
26458
|
-
.amis-scope .antd-Collapse.is-
|
26459
|
-
|
26548
|
+
.amis-scope .antd-Collapse.is-active .antd-Collapse-arrow:before {
|
26549
|
+
transform: rotate(135deg);
|
26550
|
+
transform-origin: 50% 30%;
|
26460
26551
|
}
|
26461
26552
|
|
26462
|
-
.amis-scope .antd-Collapse
|
26463
|
-
|
26553
|
+
.amis-scope .antd-Collapse.is-active .antd-Collapse-icon-tranform {
|
26554
|
+
transform: rotate(90deg);
|
26555
|
+
}
|
26556
|
+
|
26557
|
+
.amis-scope .antd-Collapse--disabled .antd-Collapse-header {
|
26558
|
+
cursor: not-allowed;
|
26464
26559
|
user-select: none;
|
26560
|
+
color: var(--text--muted-color);
|
26561
|
+
}
|
26562
|
+
|
26563
|
+
.amis-scope .antd-Collapse--disabled .antd-Collapse-header:hover {
|
26564
|
+
background-color: var(--Collapse-header-bg-disabled-color);
|
26565
|
+
}
|
26566
|
+
|
26567
|
+
.amis-scope .antd-Collapse--disabled .antd-Collapse-arrow:before {
|
26568
|
+
border-color: var(--text--muted-color);
|
26465
26569
|
}
|
26466
26570
|
|
26467
26571
|
.amis-scope .antd-Collapse--title-bottom .antd-Collapse-header {
|
26468
26572
|
text-align: center;
|
26469
|
-
color: var(--link-color);
|
26470
|
-
border-left: none;
|
26471
26573
|
font-size: var(--fontSizeBase);
|
26472
26574
|
border-top: var(--Collapse-header-collapsed-borderTop);
|
26473
26575
|
border-bottom: var(--Collapse-header-collapsed-borderBottom);
|
@@ -26478,15 +26580,13 @@ readers do not read off random characters that represent icons */
|
|
26478
26580
|
}
|
26479
26581
|
|
26480
26582
|
.amis-scope .antd-Collapse--title-bottom .antd-Collapse-arrow:before {
|
26481
|
-
top: 0.
|
26482
|
-
transform: rotate(
|
26483
|
-
transform-origin: 0% 50%;
|
26583
|
+
top: -0.25rem;
|
26584
|
+
transform: rotate(135deg);
|
26484
26585
|
}
|
26485
26586
|
|
26486
|
-
.amis-scope .antd-Collapse--title-bottom.is-
|
26487
|
-
top:
|
26488
|
-
transform: rotate(
|
26489
|
-
transform-origin: 0% 50%;
|
26587
|
+
.amis-scope .antd-Collapse--title-bottom.is-active .antd-Collapse-arrow:before {
|
26588
|
+
top: 0;
|
26589
|
+
transform: rotate(-45deg);
|
26490
26590
|
}
|
26491
26591
|
|
26492
26592
|
.amis-scope .antd-Collapse-contentWrapper {
|
@@ -26506,6 +26606,14 @@ readers do not read off random characters that represent icons */
|
|
26506
26606
|
font-weight: var(--Collapse-content-fontWeight);
|
26507
26607
|
}
|
26508
26608
|
|
26609
|
+
.amis-scope .antd-CollapseGroup .antd-Collapse:not(:last-child) {
|
26610
|
+
border-bottom: none;
|
26611
|
+
}
|
26612
|
+
|
26613
|
+
.amis-scope .antd-CollapseGroup.icon-position-right .antd-Collapse-header .antd-Collapse-arrow {
|
26614
|
+
float: right;
|
26615
|
+
}
|
26616
|
+
|
26509
26617
|
.amis-scope .antd-ColorField {
|
26510
26618
|
display: inline-block;
|
26511
26619
|
}
|
@@ -28657,6 +28765,11 @@ readers do not read off random characters that represent icons */
|
|
28657
28765
|
cursor: move;
|
28658
28766
|
}
|
28659
28767
|
|
28768
|
+
.amis-scope .antd-Table-table > thead > tr > th.antd-Table-dragCell > svg,
|
28769
|
+
.amis-scope .antd-Table-table > tbody > tr > td.antd-Table-dragCell > svg {
|
28770
|
+
vertical-align: middle;
|
28771
|
+
}
|
28772
|
+
|
28660
28773
|
.amis-scope .antd-Table-table > tbody > tr > td.antd-Table-expandCell {
|
28661
28774
|
position: relative;
|
28662
28775
|
}
|
@@ -29024,6 +29137,10 @@ readers do not read off random characters that represent icons */
|
|
29024
29137
|
color: var(--icon-onHover-color);
|
29025
29138
|
}
|
29026
29139
|
|
29140
|
+
.amis-scope .antd-Table-dragBtn > svg {
|
29141
|
+
vertical-align: -2px;
|
29142
|
+
}
|
29143
|
+
|
29027
29144
|
.amis-scope .antd-Table-table > tbody > tr:hover .antd-Table-dragBtn,
|
29028
29145
|
.amis-scope .antd-Table-table > tbody > tr.is-dragging .antd-Table-dragBtn,
|
29029
29146
|
.amis-scope .antd-Table-table > tbody > tr.is-drop-allowed .antd-Table-dragBtn {
|
@@ -29862,7 +29979,7 @@ readers do not read off random characters that represent icons */
|
|
29862
29979
|
float: left;
|
29863
29980
|
margin-right: var(--gap-base);
|
29864
29981
|
font-size: var(--fontSizeXl);
|
29865
|
-
text-transform: uppercase
|
29982
|
+
text-transform: uppercase;
|
29866
29983
|
}
|
29867
29984
|
|
29868
29985
|
.amis-scope .antd-Card-meta {
|
@@ -31790,6 +31907,133 @@ readers do not read off random characters that represent icons */
|
|
31790
31907
|
display: none;
|
31791
31908
|
}
|
31792
31909
|
|
31910
|
+
.amis-scope .u-hairline::after {
|
31911
|
+
position: absolute;
|
31912
|
+
box-sizing: border-box;
|
31913
|
+
content: " ";
|
31914
|
+
pointer-events: none;
|
31915
|
+
top: -50%;
|
31916
|
+
right: -50%;
|
31917
|
+
bottom: -50%;
|
31918
|
+
left: -50%;
|
31919
|
+
border: 0 solid var(--borderColorLight);
|
31920
|
+
z-index: 1;
|
31921
|
+
transform: scale(0.5);
|
31922
|
+
}
|
31923
|
+
|
31924
|
+
.amis-scope .antd-GridNav {
|
31925
|
+
display: flex;
|
31926
|
+
flex-wrap: wrap;
|
31927
|
+
}
|
31928
|
+
|
31929
|
+
.amis-scope .antd-GridNav-top {
|
31930
|
+
position: relative;
|
31931
|
+
}
|
31932
|
+
|
31933
|
+
.amis-scope .antd-GridNav-top::after {
|
31934
|
+
border-top-width: 0.0625rem;
|
31935
|
+
}
|
31936
|
+
|
31937
|
+
.amis-scope .antd-GridNavItem {
|
31938
|
+
position: relative;
|
31939
|
+
box-sizing: border-box;
|
31940
|
+
}
|
31941
|
+
|
31942
|
+
.amis-scope .antd-GridNavItem--square {
|
31943
|
+
height: 0;
|
31944
|
+
position: relative;
|
31945
|
+
}
|
31946
|
+
|
31947
|
+
.amis-scope .antd-GridNavItem-icon {
|
31948
|
+
width: var(--rv-grid-item-icon-size);
|
31949
|
+
}
|
31950
|
+
|
31951
|
+
.amis-scope .antd-GridNavItem-text {
|
31952
|
+
color: var(--text-color);
|
31953
|
+
font-size: var(--fontSizeSm);
|
31954
|
+
line-height: 1.5;
|
31955
|
+
word-break: break-all;
|
31956
|
+
flex-shrink: 0;
|
31957
|
+
}
|
31958
|
+
|
31959
|
+
.amis-scope .antd-GridNavItem-icon + .antd-GridNavItem-text {
|
31960
|
+
margin-top: 0.5rem;
|
31961
|
+
}
|
31962
|
+
|
31963
|
+
.amis-scope .antd-GridNavItem-image {
|
31964
|
+
display: inline-block;
|
31965
|
+
}
|
31966
|
+
|
31967
|
+
.amis-scope .antd-GridNavItem-image svg,
|
31968
|
+
.amis-scope .antd-GridNavItem-image img {
|
31969
|
+
max-width: 100%;
|
31970
|
+
display: block;
|
31971
|
+
width: 60%;
|
31972
|
+
margin: 0 auto;
|
31973
|
+
}
|
31974
|
+
|
31975
|
+
.amis-scope .antd-GridNavItem-content {
|
31976
|
+
display: flex;
|
31977
|
+
flex-direction: column;
|
31978
|
+
box-sizing: border-box;
|
31979
|
+
height: 100%;
|
31980
|
+
padding: var(--gap-md) var(--gap-sm);
|
31981
|
+
background-color: var(--white);
|
31982
|
+
position: relative;
|
31983
|
+
}
|
31984
|
+
|
31985
|
+
.amis-scope .antd-GridNavItem-content .antd-Badge-text {
|
31986
|
+
z-index: 10;
|
31987
|
+
}
|
31988
|
+
|
31989
|
+
.amis-scope .antd-GridNavItem-content--border::after {
|
31990
|
+
border-width: 0 var(--borderWidth) var(--borderWidth) 0;
|
31991
|
+
}
|
31992
|
+
|
31993
|
+
.amis-scope .antd-GridNavItem-content--square {
|
31994
|
+
position: absolute;
|
31995
|
+
top: 0;
|
31996
|
+
right: 0;
|
31997
|
+
left: 0;
|
31998
|
+
}
|
31999
|
+
|
32000
|
+
.amis-scope .antd-GridNavItem-content--center {
|
32001
|
+
align-items: center;
|
32002
|
+
justify-content: center;
|
32003
|
+
}
|
32004
|
+
|
32005
|
+
.amis-scope .antd-GridNavItem-content--horizontal {
|
32006
|
+
flex-direction: row;
|
32007
|
+
}
|
32008
|
+
|
32009
|
+
.amis-scope .antd-GridNavItem-content--horizontal .antd-GridNavItem-text {
|
32010
|
+
margin: 0 0 0 var(--gap-sm);
|
32011
|
+
}
|
32012
|
+
|
32013
|
+
.amis-scope .antd-GridNavItem-content--reverse {
|
32014
|
+
flex-direction: column-reverse;
|
32015
|
+
}
|
32016
|
+
|
32017
|
+
.amis-scope .antd-GridNavItem-content--reverse .antd-GridNavItem-text {
|
32018
|
+
margin: 0 0 var(--gap-sm);
|
32019
|
+
}
|
32020
|
+
|
32021
|
+
.amis-scope .antd-GridNavItem-content--horizontal .antd-GridNavItem-content--reverse {
|
32022
|
+
flex-direction: row-reverse;
|
32023
|
+
}
|
32024
|
+
|
32025
|
+
.amis-scope .antd-GridNavItem-content--horizontal .antd-GridNavItem-content--reverse .antd-GridNavItem-text {
|
32026
|
+
margin: 0 var(--gap-sm) 0 0;
|
32027
|
+
}
|
32028
|
+
|
32029
|
+
.amis-scope .antd-GridNavItem-content--surround::after {
|
32030
|
+
border-width: var(--borderWidth);
|
32031
|
+
}
|
32032
|
+
|
32033
|
+
.amis-scope .antd-GridNavItem-content--clickable {
|
32034
|
+
cursor: pointer;
|
32035
|
+
}
|
32036
|
+
|
31793
32037
|
.amis-scope fieldset.antd-Collapse--lg,
|
31794
32038
|
.amis-scope fieldset.antd-Collapse--md,
|
31795
32039
|
.amis-scope fieldset.antd-Collapse--base,
|
@@ -31838,6 +32082,10 @@ readers do not read off random characters that represent icons */
|
|
31838
32082
|
position: relative;
|
31839
32083
|
}
|
31840
32084
|
|
32085
|
+
.amis-scope fieldset.antd-Collapse {
|
32086
|
+
margin-bottom: var(--Form-item-gap);
|
32087
|
+
}
|
32088
|
+
|
31841
32089
|
.amis-scope fieldset.antd-Collapse > legend {
|
31842
32090
|
font-weight: var(--fontWeightNormal);
|
31843
32091
|
padding: var(--gap-xs) 0;
|
@@ -34313,7 +34561,7 @@ readers do not read off random characters that represent icons */
|
|
34313
34561
|
.amis-scope .antd-ColorPicker-preview {
|
34314
34562
|
display: flex;
|
34315
34563
|
align-items: center;
|
34316
|
-
margin-
|
34564
|
+
margin-right: var(--gap-sm);
|
34317
34565
|
cursor: pointer;
|
34318
34566
|
}
|
34319
34567
|
|
@@ -34346,14 +34594,42 @@ readers do not read off random characters that represent icons */
|
|
34346
34594
|
fill: var(--Form-input-onHover-iconColor);
|
34347
34595
|
}
|
34348
34596
|
|
34597
|
+
.amis-scope .antd-ColorPicker-arrow {
|
34598
|
+
margin-right: var(--gap-xs);
|
34599
|
+
width: var(--gap-md);
|
34600
|
+
text-align: center;
|
34601
|
+
display: flex;
|
34602
|
+
align-items: center;
|
34603
|
+
justify-content: center;
|
34604
|
+
line-height: 1;
|
34605
|
+
}
|
34606
|
+
|
34607
|
+
.amis-scope .antd-ColorPicker-arrow > svg {
|
34608
|
+
transition: transform var(--animation-duration);
|
34609
|
+
display: inline-block;
|
34610
|
+
color: var(--Form-select-caret-iconColor);
|
34611
|
+
width: 10px;
|
34612
|
+
height: 10px;
|
34613
|
+
top: 0;
|
34614
|
+
}
|
34615
|
+
|
34616
|
+
.amis-scope .antd-ColorPicker.is-opened .antd-ColorPicker-arrow > svg {
|
34617
|
+
transform: rotate(180deg);
|
34618
|
+
}
|
34619
|
+
|
34620
|
+
.amis-scope .antd-ColorPicker-popover {
|
34621
|
+
border: none;
|
34622
|
+
box-shadow: none;
|
34623
|
+
}
|
34624
|
+
|
34349
34625
|
.amis-scope .antd-ColorControl:not(.is-inline) > .antd-ColorPicker {
|
34350
34626
|
display: flex;
|
34351
34627
|
}
|
34352
34628
|
|
34353
34629
|
.amis-scope .sketch-picker {
|
34354
|
-
box-shadow: none !important;
|
34355
|
-
border-radius: 0 !important;
|
34356
34630
|
border: none !important;
|
34631
|
+
border-radius: var(--borderRadius) !important;
|
34632
|
+
box-shadow: var(--ColorPicker-boxShadow) !important;
|
34357
34633
|
}
|
34358
34634
|
|
34359
34635
|
.amis-scope .antd-DatePicker {
|
@@ -35993,6 +36269,10 @@ readers do not read off random characters that represent icons */
|
|
35993
36269
|
pointer-events: none;
|
35994
36270
|
}
|
35995
36271
|
|
36272
|
+
.amis-scope .antd-Tree.is-draggable {
|
36273
|
+
position: relative;
|
36274
|
+
}
|
36275
|
+
|
35996
36276
|
.amis-scope .antd-Tree--outline .antd-Tree-sublist .antd-Tree-item--isLeaf:before {
|
35997
36277
|
position: absolute;
|
35998
36278
|
top: -8px;
|
@@ -36033,6 +36313,10 @@ readers do not read off random characters that represent icons */
|
|
36033
36313
|
left: -99999px;
|
36034
36314
|
}
|
36035
36315
|
|
36316
|
+
.amis-scope .antd-Tree.is-draggable .antd-Tree-itemLabel:hover::after {
|
36317
|
+
display: none;
|
36318
|
+
}
|
36319
|
+
|
36036
36320
|
.amis-scope .antd-Tree-item-icons {
|
36037
36321
|
visibility: hidden;
|
36038
36322
|
transition: visibility var(--animation-duration) ease;
|
@@ -36146,6 +36430,11 @@ readers do not read off random characters that represent icons */
|
|
36146
36430
|
width: calc(var(--Tree-itemArrowWidth) + var(--gap-xs));
|
36147
36431
|
}
|
36148
36432
|
|
36433
|
+
.amis-scope .antd-Tree-itemDrager {
|
36434
|
+
cursor: move;
|
36435
|
+
color: var(--icon-color);
|
36436
|
+
}
|
36437
|
+
|
36149
36438
|
.amis-scope .antd-Tree-spinner {
|
36150
36439
|
margin-right: var(--gap-xs);
|
36151
36440
|
}
|
@@ -36192,6 +36481,35 @@ readers do not read off random characters that represent icons */
|
|
36192
36481
|
color: var(--text--muted-color);
|
36193
36482
|
}
|
36194
36483
|
|
36484
|
+
.amis-scope .antd-Tree-dropIndicator {
|
36485
|
+
position: absolute;
|
36486
|
+
height: 0.125rem;
|
36487
|
+
background-color: var(--Tree-itemLabel--onChecked-color);
|
36488
|
+
border-radius: 0.0625rem;
|
36489
|
+
z-index: 1;
|
36490
|
+
}
|
36491
|
+
|
36492
|
+
.amis-scope .antd-Tree-dropIndicator::after {
|
36493
|
+
position: absolute;
|
36494
|
+
top: -0.1875rem;
|
36495
|
+
left: -0.375rem;
|
36496
|
+
width: 0.5rem;
|
36497
|
+
height: 0.5rem;
|
36498
|
+
background-color: transparent;
|
36499
|
+
border: 0.125rem solid var(--Tree-itemLabel--onChecked-color);
|
36500
|
+
border-radius: 50%;
|
36501
|
+
content: "";
|
36502
|
+
}
|
36503
|
+
|
36504
|
+
.amis-scope .antd-Tree-dropIndicator--hover {
|
36505
|
+
border-radius: 0;
|
36506
|
+
background-color: var(--Tree-item-onHover-bg);
|
36507
|
+
}
|
36508
|
+
|
36509
|
+
.amis-scope .antd-Tree-dropIndicator--hover::after {
|
36510
|
+
display: none;
|
36511
|
+
}
|
36512
|
+
|
36195
36513
|
.amis-scope .antd-TreeSelectControl {
|
36196
36514
|
position: relative;
|
36197
36515
|
}
|
@@ -36522,6 +36840,8 @@ readers do not read off random characters that represent icons */
|
|
36522
36840
|
|
36523
36841
|
.amis-scope .antd-Combo--hor .antd-Combo-itemDrager {
|
36524
36842
|
padding: var(--Combo--horizontal-dragger-top) 0.375rem 0 0;
|
36843
|
+
display: flex;
|
36844
|
+
align-items: center;
|
36525
36845
|
}
|
36526
36846
|
|
36527
36847
|
.amis-scope .antd-Combo--ver:not(.antd-Combo--noBorder)::before,
|
@@ -36583,6 +36903,8 @@ readers do not read off random characters that represent icons */
|
|
36583
36903
|
position: absolute;
|
36584
36904
|
top: var(--Combo--horizontal-dragger-top);
|
36585
36905
|
left: -1.875rem;
|
36906
|
+
display: flex;
|
36907
|
+
align-items: center;
|
36586
36908
|
}
|
36587
36909
|
|
36588
36910
|
.amis-scope .antd-Combo--ver:not(.antd-Combo--noBorder).is-draggable > .antd-Combo-items > .antd-Combo-item {
|
@@ -37285,6 +37607,7 @@ readers do not read off random characters that represent icons */
|
|
37285
37607
|
|
37286
37608
|
.amis-scope .antd-TabsTransfer-tab {
|
37287
37609
|
padding: 0;
|
37610
|
+
overflow: auto;
|
37288
37611
|
}
|
37289
37612
|
|
37290
37613
|
.amis-scope .antd-TabsTransfer-tabs {
|
@@ -38255,6 +38578,7 @@ readers do not read off random characters that represent icons */
|
|
38255
38578
|
border: none;
|
38256
38579
|
flex-grow: 1;
|
38257
38580
|
overflow: auto;
|
38581
|
+
scroll-behavior: smooth;
|
38258
38582
|
background: var(--Tabs-content-bg);
|
38259
38583
|
}
|
38260
38584
|
|