amis 1.8.0-beta.13 → 1.8.0-beta.17
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/WithStore.js +1 -1
- package/lib/WithStore.js.map +2 -2
- package/lib/components/DatePicker.js +3 -1
- package/lib/components/DatePicker.js.map +2 -2
- package/lib/components/Progress.js +3 -4
- package/lib/components/Progress.js.map +2 -2
- package/lib/components/TabsTransfer.d.ts +22 -3
- package/lib/components/TabsTransfer.js +149 -42
- package/lib/components/TabsTransfer.js.map +2 -2
- package/lib/components/Tree.js +3 -1
- package/lib/components/Tree.js.map +2 -2
- package/lib/components/formula/Editor.js +4 -4
- package/lib/components/formula/Editor.js.map +2 -2
- package/lib/components/formula/VariableList.d.ts +63 -4
- package/lib/components/formula/VariableList.js +23 -8
- package/lib/components/formula/VariableList.js.map +2 -2
- package/lib/helper.css +1 -1
- package/lib/helper.css.map +1 -1
- package/lib/index.js +1 -1
- package/lib/renderers/Date.js +6 -1
- package/lib/renderers/Date.js.map +2 -2
- package/lib/renderers/Form/NestedSelect.d.ts +1 -1
- package/lib/renderers/Form/NestedSelect.js +7 -2
- package/lib/renderers/Form/NestedSelect.js.map +2 -2
- package/lib/renderers/Form/TabsTransfer.d.ts +6 -1
- package/lib/renderers/Form/TabsTransfer.js +155 -6
- package/lib/renderers/Form/TabsTransfer.js.map +2 -2
- package/lib/renderers/Form/TabsTransferPicker.d.ts +2 -2
- package/lib/renderers/Form/TabsTransferPicker.js +4 -4
- package/lib/renderers/Form/TabsTransferPicker.js.map +2 -2
- package/lib/renderers/Form/TreeSelect.js.map +2 -2
- package/lib/renderers/Form/index.js +6 -2
- package/lib/renderers/Form/index.js.map +2 -2
- package/lib/renderers/Markdown.js +4 -3
- package/lib/renderers/Markdown.js.map +2 -2
- package/lib/renderers/Nav.d.ts +21 -20
- package/lib/renderers/Nav.js +8 -1
- package/lib/renderers/Nav.js.map +2 -2
- package/lib/renderers/Page.js +1 -1
- package/lib/renderers/Page.js.map +2 -2
- package/lib/renderers/Service.js +1 -1
- package/lib/renderers/Service.js.map +2 -2
- package/lib/renderers/Table/exportExcel.d.ts +6 -0
- package/lib/renderers/Table/exportExcel.js +288 -0
- package/lib/renderers/Table/exportExcel.js.map +13 -0
- package/lib/renderers/Table/index.d.ts +1 -1
- package/lib/renderers/Table/index.js +4 -251
- package/lib/renderers/Table/index.js.map +2 -2
- package/lib/themes/ang-ie11.css +112 -36
- package/lib/themes/ang.css +100 -21
- package/lib/themes/ang.css.map +1 -1
- package/lib/themes/antd-ie11.css +112 -36
- package/lib/themes/antd.css +100 -21
- package/lib/themes/antd.css.map +1 -1
- package/lib/themes/cxd-ie11.css +97 -21
- package/lib/themes/cxd.css +100 -21
- package/lib/themes/cxd.css.map +1 -1
- package/lib/themes/dark-ie11.css +112 -36
- package/lib/themes/dark.css +100 -21
- package/lib/themes/dark.css.map +1 -1
- package/lib/themes/default-ie11.css +97 -21
- package/lib/themes/default.css +100 -21
- package/lib/themes/default.css.map +1 -1
- package/lib/utils/api.js +35 -6
- package/lib/utils/api.js.map +2 -2
- package/package.json +1 -1
- package/schema.json +1 -1
- package/scss/_properties.scss +4 -0
- package/scss/components/_formula.scss +77 -12
- package/scss/components/_progress.scss +2 -7
- package/scss/components/form/_date.scss +1 -0
- package/scss/components/form/_transfer.scss +21 -0
- package/scss/helper/layout/_display.scss +1 -1
- package/sdk/ang-ie11.css +130 -36
- package/sdk/ang.css +118 -21
- package/sdk/antd-ie11.css +130 -36
- package/sdk/antd.css +118 -21
- package/sdk/barcode.js +51 -51
- package/sdk/charts.js +14 -14
- package/sdk/codemirror.js +7 -7
- package/sdk/color-picker.js +65 -65
- package/sdk/cropperjs.js +2 -2
- package/sdk/cxd-ie11.css +115 -21
- package/sdk/cxd.css +118 -21
- package/sdk/dark-ie11.css +130 -36
- package/sdk/dark.css +118 -21
- package/sdk/exceljs.js +1 -1
- package/sdk/helper.css +1 -1
- package/sdk/helper.css.map +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 +17 -17
- package/sdk/rich-text.js +62 -62
- package/sdk/sdk-ie11.css +115 -21
- package/sdk/sdk.css +118 -21
- package/sdk/sdk.js +1270 -1268
- 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/WithStore.tsx +1 -1
- package/src/components/DatePicker.tsx +2 -1
- package/src/components/Progress.tsx +6 -4
- package/src/components/TabsTransfer.tsx +253 -143
- package/src/components/Tree.tsx +3 -1
- package/src/components/formula/Editor.tsx +12 -5
- package/src/components/formula/VariableList.tsx +55 -21
- package/src/renderers/Date.tsx +14 -1
- package/src/renderers/Form/NestedSelect.tsx +11 -2
- package/src/renderers/Form/TabsTransfer.tsx +174 -11
- package/src/renderers/Form/TabsTransferPicker.tsx +5 -10
- package/src/renderers/Form/TreeSelect.tsx +15 -12
- package/src/renderers/Form/index.tsx +37 -16
- package/src/renderers/Markdown.tsx +4 -5
- package/src/renderers/Nav.tsx +7 -1
- package/src/renderers/Page.tsx +9 -2
- package/src/renderers/Service.tsx +8 -2
- package/src/renderers/Table/exportExcel.ts +289 -0
- package/src/renderers/Table/index.tsx +5 -252
- package/src/utils/api.ts +42 -10
package/sdk/dark-ie11.css
CHANGED
@@ -27502,7 +27502,7 @@ readers do not read off random characters that represent icons */
|
|
27502
27502
|
display: flex;
|
27503
27503
|
align-items: center;
|
27504
27504
|
justify-content: flex-start;
|
27505
|
-
border-bottom: 0.0625rem solid
|
27505
|
+
border-bottom: 0.0625rem solid #656565;
|
27506
27506
|
}
|
27507
27507
|
|
27508
27508
|
.amis-scope .dark-Tabs-linksContainer-wrapper {
|
@@ -27708,7 +27708,7 @@ readers do not read off random characters that represent icons */
|
|
27708
27708
|
background: #302d2a;
|
27709
27709
|
border-style: solid;
|
27710
27710
|
border-width: 0 0.0625rem 0.0625rem;
|
27711
|
-
border-color:
|
27711
|
+
border-color: #656565;
|
27712
27712
|
}
|
27713
27713
|
|
27714
27714
|
.amis-scope .dark-Tabs-pane {
|
@@ -27727,7 +27727,7 @@ readers do not read off random characters that represent icons */
|
|
27727
27727
|
}
|
27728
27728
|
|
27729
27729
|
.amis-scope .dark-Tabs--line > .dark-Tabs-linksContainer-wrapper {
|
27730
|
-
border-bottom: 0.0625rem solid
|
27730
|
+
border-bottom: 0.0625rem solid #656565;
|
27731
27731
|
}
|
27732
27732
|
|
27733
27733
|
.amis-scope .dark-Tabs--line > .dark-Tabs-linksContainer-wrapper--toolbar .dark-Tabs-link {
|
@@ -27891,7 +27891,7 @@ readers do not read off random characters that represent icons */
|
|
27891
27891
|
margin: 0;
|
27892
27892
|
align-items: center;
|
27893
27893
|
border-width: 0.0625rem;
|
27894
|
-
border-color:
|
27894
|
+
border-color: #656565;
|
27895
27895
|
text-align: center;
|
27896
27896
|
margin: 0;
|
27897
27897
|
padding: 0 0.625rem;
|
@@ -27935,7 +27935,7 @@ readers do not read off random characters that represent icons */
|
|
27935
27935
|
}
|
27936
27936
|
|
27937
27937
|
.amis-scope .dark-Tabs--radio > .dark-Tabs-content {
|
27938
|
-
border-top: 0.0625rem solid
|
27938
|
+
border-top: 0.0625rem solid #656565;
|
27939
27939
|
}
|
27940
27940
|
|
27941
27941
|
.amis-scope .dark-Tabs--tiled > .dark-Tabs-linksContainer-wrapper {
|
@@ -27956,7 +27956,7 @@ readers do not read off random characters that represent icons */
|
|
27956
27956
|
justify-content: center;
|
27957
27957
|
border-width: 0.0625rem;
|
27958
27958
|
border-style: solid;
|
27959
|
-
border-color:
|
27959
|
+
border-color: #656565;
|
27960
27960
|
}
|
27961
27961
|
|
27962
27962
|
.amis-scope .dark-Tabs--tiled > .dark-Tabs-linksContainer-wrapper > .dark-Tabs-linksContainer.dark-Tabs-linksContainer--overflow > .dark-Tabs-linksContainer-main > .dark-Tabs-links > .dark-Tabs-link:first-of-type {
|
@@ -27972,7 +27972,7 @@ readers do not read off random characters that represent icons */
|
|
27972
27972
|
margin-left: 0;
|
27973
27973
|
white-space: nowrap;
|
27974
27974
|
border-style: solid;
|
27975
|
-
border-color:
|
27975
|
+
border-color: #656565;
|
27976
27976
|
border-width: 0.0625rem;
|
27977
27977
|
border-left-width: 0;
|
27978
27978
|
}
|
@@ -27991,7 +27991,7 @@ readers do not read off random characters that represent icons */
|
|
27991
27991
|
text-align: center;
|
27992
27992
|
margin: 0 0 0 calc(0.0625rem * -1);
|
27993
27993
|
border-style: solid;
|
27994
|
-
border-color:
|
27994
|
+
border-color: #656565;
|
27995
27995
|
border-width: 0.0625rem;
|
27996
27996
|
padding: 0.5rem 0.75rem;
|
27997
27997
|
cursor: pointer;
|
@@ -28016,7 +28016,7 @@ readers do not read off random characters that represent icons */
|
|
28016
28016
|
.amis-scope .dark-Tabs--tiled > .dark-Tabs-linksContainer-wrapper > .dark-Tabs-linksContainer > .dark-Tabs-linksContainer-main > .dark-Tabs-links > li.is-active {
|
28017
28017
|
cursor: default;
|
28018
28018
|
color: #0983ff;
|
28019
|
-
border-color:
|
28019
|
+
border-color: #656565;
|
28020
28020
|
border-top-color: #0983ff;
|
28021
28021
|
border-bottom-color: transparent;
|
28022
28022
|
}
|
@@ -28024,7 +28024,7 @@ readers do not read off random characters that represent icons */
|
|
28024
28024
|
.amis-scope .dark-Tabs--vertical {
|
28025
28025
|
display: flex;
|
28026
28026
|
min-height: 12.5rem;
|
28027
|
-
border: 0.0625rem solid
|
28027
|
+
border: 0.0625rem solid #656565;
|
28028
28028
|
border-radius: 0;
|
28029
28029
|
}
|
28030
28030
|
|
@@ -28294,7 +28294,7 @@ readers do not read off random characters that represent icons */
|
|
28294
28294
|
width: 0.0625rem;
|
28295
28295
|
height: 0.9375rem;
|
28296
28296
|
transform: translateY(-50%);
|
28297
|
-
background-color:
|
28297
|
+
background-color: #656565;
|
28298
28298
|
}
|
28299
28299
|
|
28300
28300
|
.amis-scope .dark-Tabs--simple > .dark-Tabs-linksContainer-wrapper > .dark-Tabs-linksContainer > .dark-Tabs-linksContainer-main > .dark-Tabs-links > li > .dark-Tabs-link-close {
|
@@ -28336,7 +28336,7 @@ readers do not read off random characters that represent icons */
|
|
28336
28336
|
|
28337
28337
|
.amis-scope .dark-Tabs--strong > .dark-Tabs-linksContainer-wrapper {
|
28338
28338
|
align-items: stretch;
|
28339
|
-
border-bottom: 0.0625rem solid
|
28339
|
+
border-bottom: 0.0625rem solid #656565;
|
28340
28340
|
}
|
28341
28341
|
|
28342
28342
|
.amis-scope .dark-Tabs--strong > .dark-Tabs-linksContainer-wrapper .dark-Tabs-addable {
|
@@ -28347,7 +28347,7 @@ readers do not read off random characters that represent icons */
|
|
28347
28347
|
align-items: center;
|
28348
28348
|
justify-content: center;
|
28349
28349
|
font-size: 0;
|
28350
|
-
border: 0.0625rem solid
|
28350
|
+
border: 0.0625rem solid #656565;
|
28351
28351
|
border-top-left-radius: 0.142rem;
|
28352
28352
|
border-top-right-radius: 0.142rem;
|
28353
28353
|
flex: none;
|
@@ -28380,7 +28380,7 @@ readers do not read off random characters that represent icons */
|
|
28380
28380
|
margin-bottom: 0;
|
28381
28381
|
padding: 0;
|
28382
28382
|
justify-content: center;
|
28383
|
-
border: 0.0625rem solid
|
28383
|
+
border: 0.0625rem solid #656565;
|
28384
28384
|
border-top-right-radius: 0.142rem;
|
28385
28385
|
box-sizing: border-box;
|
28386
28386
|
}
|
@@ -28403,7 +28403,7 @@ readers do not read off random characters that represent icons */
|
|
28403
28403
|
background: #302d2a;
|
28404
28404
|
border-top-left-radius: 0.142rem;
|
28405
28405
|
border-top-right-radius: 0.142rem;
|
28406
|
-
border: 0.0625rem solid
|
28406
|
+
border: 0.0625rem solid #656565;
|
28407
28407
|
cursor: pointer;
|
28408
28408
|
}
|
28409
28409
|
|
@@ -34275,7 +34275,6 @@ readers do not read off random characters that represent icons */
|
|
34275
34275
|
.amis-scope .dark-Progress-line {
|
34276
34276
|
display: inline-block;
|
34277
34277
|
width: 100%;
|
34278
|
-
height: 10px;
|
34279
34278
|
}
|
34280
34279
|
|
34281
34280
|
.amis-scope .dark-Progress-line-inter {
|
@@ -34301,10 +34300,7 @@ readers do not read off random characters that represent icons */
|
|
34301
34300
|
.amis-scope .dark-Progress-line-bar {
|
34302
34301
|
float: left;
|
34303
34302
|
width: 0;
|
34304
|
-
height:
|
34305
|
-
font-size: 12px;
|
34306
|
-
line-height: 10px;
|
34307
|
-
text-align: center;
|
34303
|
+
height: 10px;
|
34308
34304
|
background: #0983ff;
|
34309
34305
|
transition: width 0s ease;
|
34310
34306
|
}
|
@@ -34337,8 +34333,7 @@ readers do not read off random characters that represent icons */
|
|
34337
34333
|
}
|
34338
34334
|
|
34339
34335
|
.amis-scope .dark-Progress-circle {
|
34340
|
-
width:
|
34341
|
-
height: 120px;
|
34336
|
+
width: 100%;
|
34342
34337
|
position: relative;
|
34343
34338
|
}
|
34344
34339
|
|
@@ -39702,6 +39697,10 @@ readers do not read off random characters that represent icons */
|
|
39702
39697
|
display: flex;
|
39703
39698
|
}
|
39704
39699
|
|
39700
|
+
.amis-scope .dark-DateControl {
|
39701
|
+
width: auto !important;
|
39702
|
+
}
|
39703
|
+
|
39705
39704
|
.amis-scope .dark-DateControl.is-date > .dark-DatePicker {
|
39706
39705
|
min-width: calc(calc(
|
39707
39706
|
1rem * 5 +var(--DatePicker-paddingX) * 2 + 0.875rem * 2
|
@@ -43006,6 +43005,25 @@ readers do not read off random characters that represent icons */
|
|
43006
43005
|
height: 40px;
|
43007
43006
|
}
|
43008
43007
|
|
43008
|
+
.amis-scope .dark-TabsTransfer-tabs .dark-Tabs-linksContainer {
|
43009
|
+
padding-left: 1.25rem;
|
43010
|
+
padding-top: 0.5rem;
|
43011
|
+
background-color: #f7f7f9;
|
43012
|
+
}
|
43013
|
+
|
43014
|
+
.amis-scope .dark-TabsTransfer-search {
|
43015
|
+
margin: 0.5rem 0.5rem;
|
43016
|
+
}
|
43017
|
+
|
43018
|
+
.amis-scope .dark-TabsTransfer-search .dark-InputBox {
|
43019
|
+
border: 1px solid #e8e9eb;
|
43020
|
+
}
|
43021
|
+
|
43022
|
+
.amis-scope .dark-TabsTransfer .dark-Transfer-result .dark-Transfer-title {
|
43023
|
+
height: 2.5rem;
|
43024
|
+
line-height: 2.5rem;
|
43025
|
+
}
|
43026
|
+
|
43009
43027
|
.amis-scope .dark-TabsTransfer-placeholder {
|
43010
43028
|
height: 1.875rem;
|
43011
43029
|
line-height: 1.4285714286;
|
@@ -44702,7 +44720,7 @@ readers do not read off random characters that represent icons */
|
|
44702
44720
|
box-sizing: border-box;
|
44703
44721
|
background: #fafafa;
|
44704
44722
|
border-radius: 0.142rem 0.142rem 0 0;
|
44705
|
-
border-bottom:
|
44723
|
+
border-bottom: none;
|
44706
44724
|
font-weight: 500;
|
44707
44725
|
}
|
44708
44726
|
|
@@ -44746,11 +44764,11 @@ readers do not read off random characters that represent icons */
|
|
44746
44764
|
|
44747
44765
|
.amis-scope .dark-FormulaEditor-panel {
|
44748
44766
|
display: flex;
|
44767
|
+
flex: 1;
|
44749
44768
|
flex-flow: column nowrap;
|
44750
44769
|
justify-content: space-between;
|
44751
44770
|
align-items: stretch;
|
44752
44771
|
height: 15.625rem;
|
44753
|
-
width: 13.75rem;
|
44754
44772
|
border-radius: 0.142rem;
|
44755
44773
|
border: 0.0625rem solid #656565;
|
44756
44774
|
}
|
@@ -44771,7 +44789,7 @@ readers do not read off random characters that represent icons */
|
|
44771
44789
|
box-sizing: border-box;
|
44772
44790
|
background: #fafafa;
|
44773
44791
|
border-radius: 0.142rem 0.142rem 0 0;
|
44774
|
-
border-bottom:
|
44792
|
+
border-bottom: none;
|
44775
44793
|
font-weight: 500;
|
44776
44794
|
}
|
44777
44795
|
|
@@ -44782,42 +44800,114 @@ readers do not read off random characters that represent icons */
|
|
44782
44800
|
max-height: 13.75rem;
|
44783
44801
|
}
|
44784
44802
|
|
44803
|
+
.amis-scope .dark-FormulaEditor-panel-body--tabs {
|
44804
|
+
max-height: 15.625rem;
|
44805
|
+
}
|
44806
|
+
|
44785
44807
|
.amis-scope .dark-FormulaEditor-VariableList-root {
|
44786
|
-
max-height:
|
44808
|
+
max-height: 100%;
|
44809
|
+
}
|
44810
|
+
|
44811
|
+
.amis-scope .dark-FormulaEditor-VariableList-body {
|
44812
|
+
display: flex;
|
44813
|
+
flex-flow: column nowrap;
|
44814
|
+
max-height: 100%;
|
44787
44815
|
}
|
44788
44816
|
|
44789
|
-
.amis-scope .dark-FormulaEditor-VariableList-
|
44817
|
+
.amis-scope .dark-FormulaEditor-VariableList-base {
|
44818
|
+
--Form-input-fontSize: var(--fontSizeSm);
|
44819
|
+
--gap-sm: 0.625rem;
|
44820
|
+
flex: 1;
|
44821
|
+
max-height: 100%;
|
44822
|
+
}
|
44823
|
+
|
44824
|
+
.amis-scope .dark-FormulaEditor-VariableList-base.is-scrollable {
|
44790
44825
|
overflow-x: hidden;
|
44791
44826
|
overflow-y: auto;
|
44792
44827
|
}
|
44793
44828
|
|
44794
|
-
.amis-scope .dark-FormulaEditor-VariableList-
|
44829
|
+
.amis-scope .dark-FormulaEditor-VariableList-base.is-scrollable::-webkit-scrollbar {
|
44795
44830
|
width: 6px;
|
44796
44831
|
height: 6px;
|
44797
44832
|
}
|
44798
44833
|
|
44799
|
-
.amis-scope .dark-FormulaEditor-VariableList-
|
44834
|
+
.amis-scope .dark-FormulaEditor-VariableList-base.is-scrollable::-webkit-scrollbar-thumb {
|
44800
44835
|
border-radius: 3px;
|
44801
44836
|
background: rgba(0, 0, 0, 0.3);
|
44802
44837
|
}
|
44803
44838
|
|
44804
|
-
.amis-scope .dark-FormulaEditor-VariableList-
|
44805
|
-
|
44806
|
-
|
44807
|
-
|
44839
|
+
.amis-scope .dark-FormulaEditor-VariableList-searchBox {
|
44840
|
+
display: flex;
|
44841
|
+
width: auto;
|
44842
|
+
flex-shrink: 0;
|
44843
|
+
padding: 0.5rem;
|
44844
|
+
}
|
44845
|
+
|
44846
|
+
.amis-scope .dark-FormulaEditor-VariableList-searchBox > div {
|
44847
|
+
flex: 1;
|
44848
|
+
font-size: 0.75rem;
|
44849
|
+
height: 1.5rem;
|
44808
44850
|
}
|
44809
44851
|
|
44810
44852
|
.amis-scope .dark-FormulaEditor-VariableList-tabs {
|
44811
44853
|
--Tabs-linkFontSize: var(--fontSizeSm);
|
44812
44854
|
--Tabs--card-linkPadding: 0.3125rem;
|
44813
|
-
max-height:
|
44855
|
+
max-height: 100%;
|
44814
44856
|
display: flex;
|
44815
44857
|
flex-flow: column nowrap;
|
44816
44858
|
justify-content: space-between;
|
44817
44859
|
}
|
44818
44860
|
|
44819
|
-
.amis-scope .dark-FormulaEditor-VariableList-tabs
|
44820
|
-
|
44861
|
+
.amis-scope .dark-FormulaEditor-VariableList-tabs .dark-Tabs-content {
|
44862
|
+
padding: 0;
|
44863
|
+
}
|
44864
|
+
|
44865
|
+
.amis-scope .dark-FormulaEditor-VariableList-tabs .dark-Tabs-content .dark-FormulaEditor-VariableList-sub .dark-FormulaEditor-VariableList-body {
|
44866
|
+
max-height: 13.75rem;
|
44867
|
+
overflow-y: hidden;
|
44868
|
+
}
|
44869
|
+
|
44870
|
+
.amis-scope .dark-FormulaEditor-VariableList-tabs .dark-Tabs-content .dark-FormulaEditor-VariableList-sub-FormulaEditor-VariableList-base {
|
44871
|
+
overflow-x: hidden;
|
44872
|
+
overflow-y: auto;
|
44873
|
+
}
|
44874
|
+
|
44875
|
+
.amis-scope .dark-FormulaEditor-VariableList-tabs .dark-Tabs-content .dark-FormulaEditor-VariableList-sub-FormulaEditor-VariableList-base::-webkit-scrollbar {
|
44876
|
+
width: 6px;
|
44877
|
+
height: 6px;
|
44878
|
+
}
|
44879
|
+
|
44880
|
+
.amis-scope .dark-FormulaEditor-VariableList-tabs .dark-Tabs-content .dark-FormulaEditor-VariableList-sub-FormulaEditor-VariableList-base::-webkit-scrollbar-thumb {
|
44881
|
+
border-radius: 3px;
|
44882
|
+
background: rgba(0, 0, 0, 0.3);
|
44883
|
+
}
|
44884
|
+
|
44885
|
+
.amis-scope .dark-FormulaEditor-VariableList-tabs .dark-Tabs-linksContainer-wrapper {
|
44886
|
+
width: 100%;
|
44887
|
+
height: 1.875rem;
|
44888
|
+
line-height: 1.875rem;
|
44889
|
+
padding: 0 0.625rem;
|
44890
|
+
box-sizing: border-box;
|
44891
|
+
background: #fafafa;
|
44892
|
+
border-radius: 0.142rem 0.142rem 0 0;
|
44893
|
+
border-bottom: none;
|
44894
|
+
font-weight: 500;
|
44895
|
+
max-height: 1.875rem;
|
44896
|
+
min-height: 1.875rem;
|
44897
|
+
}
|
44898
|
+
|
44899
|
+
.amis-scope .dark-FormulaEditor-VariableList-tabs .dark-Tabs-linksContainer-wrapper ul.dark-Tabs-links > li {
|
44900
|
+
height: 30px;
|
44901
|
+
line-height: 30px;
|
44902
|
+
}
|
44903
|
+
|
44904
|
+
.amis-scope .dark-FormulaEditor-VariableList-tabs .dark-Tabs-linksContainer-wrapper ul.dark-Tabs-links > li > a {
|
44905
|
+
margin: 0;
|
44906
|
+
padding: 0;
|
44907
|
+
}
|
44908
|
+
|
44909
|
+
.amis-scope .dark-FormulaEditor-VariableList-tabs .dark-Tabs-linksContainer--overflow > div {
|
44910
|
+
margin: 0;
|
44821
44911
|
}
|
44822
44912
|
|
44823
44913
|
.amis-scope .dark-FormulaEditor-VariableList-tabs > div {
|
@@ -44870,6 +44960,10 @@ readers do not read off random characters that represent icons */
|
|
44870
44960
|
flex: 1;
|
44871
44961
|
}
|
44872
44962
|
|
44963
|
+
.amis-scope .dark-FormulaEditor-FuncList .dark-FormulaEditor-panel {
|
44964
|
+
width: 11.75rem;
|
44965
|
+
}
|
44966
|
+
|
44873
44967
|
.amis-scope .dark-FormulaEditor-FuncList:not(:last-child) {
|
44874
44968
|
margin-right: 0.625rem;
|
44875
44969
|
}
|
package/sdk/dark.css
CHANGED
@@ -13311,6 +13311,7 @@ readers do not read off random characters that represent icons */
|
|
13311
13311
|
--Tabs--strong-add-size: 2rem;
|
13312
13312
|
--Tabs--strong-arrow-size: 1.5rem;
|
13313
13313
|
--Tabs-borderColor: var(--borderColor);
|
13314
|
+
--Tabs--simple-split-color: var(--Tabs-borderColor);
|
13314
13315
|
--Tabs-borderRadius: var(--borderRadius);
|
13315
13316
|
--Tabs-borderWidth: var(--borderWidth);
|
13316
13317
|
--Tabs-color: var(--text-color);
|
@@ -13441,6 +13442,8 @@ readers do not read off random characters that represent icons */
|
|
13441
13442
|
--Tooltip-title-paddingY: var(--gap-sm);
|
13442
13443
|
--Transfer-title-bg: #f6f8f8;
|
13443
13444
|
--Transfer-selection-maxHeight: 21.875rem;
|
13445
|
+
--TabsTransfer-title-bg: #f7f7f9;
|
13446
|
+
--TabsTransfer-border-color: #e8e9eb;
|
13444
13447
|
--Tree-indent: var(--gap-md);
|
13445
13448
|
--Tree-inputHeight: calc(var(--Form-input-height) * 0.85);
|
13446
13449
|
--Tree-item-onHover-bg: rgba(0, 126, 255, 0.08);
|
@@ -35748,7 +35751,6 @@ readers do not read off random characters that represent icons */
|
|
35748
35751
|
.amis-scope .dark-Progress-line {
|
35749
35752
|
display: inline-block;
|
35750
35753
|
width: 100%;
|
35751
|
-
height: 10px;
|
35752
35754
|
}
|
35753
35755
|
|
35754
35756
|
.amis-scope .dark-Progress-line-inter {
|
@@ -35774,10 +35776,7 @@ readers do not read off random characters that represent icons */
|
|
35774
35776
|
.amis-scope .dark-Progress-line-bar {
|
35775
35777
|
float: left;
|
35776
35778
|
width: 0;
|
35777
|
-
height:
|
35778
|
-
font-size: 12px;
|
35779
|
-
line-height: 10px;
|
35780
|
-
text-align: center;
|
35779
|
+
height: 10px;
|
35781
35780
|
background: var(--primary);
|
35782
35781
|
transition: width var(--animation-duration) ease;
|
35783
35782
|
}
|
@@ -35810,8 +35809,7 @@ readers do not read off random characters that represent icons */
|
|
35810
35809
|
}
|
35811
35810
|
|
35812
35811
|
.amis-scope .dark-Progress-circle {
|
35813
|
-
width:
|
35814
|
-
height: 120px;
|
35812
|
+
width: 100%;
|
35815
35813
|
position: relative;
|
35816
35814
|
}
|
35817
35815
|
|
@@ -41087,6 +41085,10 @@ readers do not read off random characters that represent icons */
|
|
41087
41085
|
display: flex;
|
41088
41086
|
}
|
41089
41087
|
|
41088
|
+
.amis-scope .dark-DateControl {
|
41089
|
+
width: auto !important;
|
41090
|
+
}
|
41091
|
+
|
41090
41092
|
.amis-scope .dark-DateControl.is-date > .dark-DatePicker {
|
41091
41093
|
min-width: calc(var(--DatePicker-minWidth) + var(--fontSizeLg) * 2);
|
41092
41094
|
}
|
@@ -44308,6 +44310,25 @@ readers do not read off random characters that represent icons */
|
|
44308
44310
|
height: 40px;
|
44309
44311
|
}
|
44310
44312
|
|
44313
|
+
.amis-scope .dark-TabsTransfer-tabs .dark-Tabs-linksContainer {
|
44314
|
+
padding-left: 1.25rem;
|
44315
|
+
padding-top: 0.5rem;
|
44316
|
+
background-color: var(--TabsTransfer-title-bg);
|
44317
|
+
}
|
44318
|
+
|
44319
|
+
.amis-scope .dark-TabsTransfer-search {
|
44320
|
+
margin: var(--gap-sm) var(--gap-sm);
|
44321
|
+
}
|
44322
|
+
|
44323
|
+
.amis-scope .dark-TabsTransfer-search .dark-InputBox {
|
44324
|
+
border: 1px solid var(--TabsTransfer-border-color);
|
44325
|
+
}
|
44326
|
+
|
44327
|
+
.amis-scope .dark-TabsTransfer .dark-Transfer-result .dark-Transfer-title {
|
44328
|
+
height: 2.5rem;
|
44329
|
+
line-height: 2.5rem;
|
44330
|
+
}
|
44331
|
+
|
44311
44332
|
.amis-scope .dark-TabsTransfer-placeholder {
|
44312
44333
|
height: var(--Form-input-height);
|
44313
44334
|
line-height: var(--Form-input-lineHeight);
|
@@ -45939,7 +45960,7 @@ readers do not read off random characters that represent icons */
|
|
45939
45960
|
box-sizing: border-box;
|
45940
45961
|
background: var(--InputFormula-header-bgColor);
|
45941
45962
|
border-radius: var(--borderRadius) var(--borderRadius) 0 0;
|
45942
|
-
border-bottom:
|
45963
|
+
border-bottom: none;
|
45943
45964
|
font-weight: 500;
|
45944
45965
|
}
|
45945
45966
|
|
@@ -45983,11 +46004,11 @@ readers do not read off random characters that represent icons */
|
|
45983
46004
|
|
45984
46005
|
.amis-scope .dark-FormulaEditor-panel {
|
45985
46006
|
display: flex;
|
46007
|
+
flex: 1;
|
45986
46008
|
flex-flow: column nowrap;
|
45987
46009
|
justify-content: space-between;
|
45988
46010
|
align-items: stretch;
|
45989
46011
|
height: 15.625rem;
|
45990
|
-
width: 13.75rem;
|
45991
46012
|
border-radius: var(--borderRadius);
|
45992
46013
|
border: var(--Form-input-borderWidth) solid var(--Form-input-borderColor);
|
45993
46014
|
}
|
@@ -46008,7 +46029,7 @@ readers do not read off random characters that represent icons */
|
|
46008
46029
|
box-sizing: border-box;
|
46009
46030
|
background: var(--InputFormula-header-bgColor);
|
46010
46031
|
border-radius: var(--borderRadius) var(--borderRadius) 0 0;
|
46011
|
-
border-bottom:
|
46032
|
+
border-bottom: none;
|
46012
46033
|
font-weight: 500;
|
46013
46034
|
}
|
46014
46035
|
|
@@ -46019,42 +46040,114 @@ readers do not read off random characters that represent icons */
|
|
46019
46040
|
max-height: 13.75rem;
|
46020
46041
|
}
|
46021
46042
|
|
46043
|
+
.amis-scope .dark-FormulaEditor-panel-body--tabs {
|
46044
|
+
max-height: 15.625rem;
|
46045
|
+
}
|
46046
|
+
|
46022
46047
|
.amis-scope .dark-FormulaEditor-VariableList-root {
|
46023
|
-
max-height:
|
46048
|
+
max-height: 100%;
|
46049
|
+
}
|
46050
|
+
|
46051
|
+
.amis-scope .dark-FormulaEditor-VariableList-body {
|
46052
|
+
display: flex;
|
46053
|
+
flex-flow: column nowrap;
|
46054
|
+
max-height: 100%;
|
46024
46055
|
}
|
46025
46056
|
|
46026
|
-
.amis-scope .dark-FormulaEditor-VariableList-
|
46057
|
+
.amis-scope .dark-FormulaEditor-VariableList-base {
|
46058
|
+
--Form-input-fontSize: var(--fontSizeSm);
|
46059
|
+
--gap-sm: 0.625rem;
|
46060
|
+
flex: 1;
|
46061
|
+
max-height: 100%;
|
46062
|
+
}
|
46063
|
+
|
46064
|
+
.amis-scope .dark-FormulaEditor-VariableList-base.is-scrollable {
|
46027
46065
|
overflow-x: hidden;
|
46028
46066
|
overflow-y: auto;
|
46029
46067
|
}
|
46030
46068
|
|
46031
|
-
.amis-scope .dark-FormulaEditor-VariableList-
|
46069
|
+
.amis-scope .dark-FormulaEditor-VariableList-base.is-scrollable::-webkit-scrollbar {
|
46032
46070
|
width: 6px;
|
46033
46071
|
height: 6px;
|
46034
46072
|
}
|
46035
46073
|
|
46036
|
-
.amis-scope .dark-FormulaEditor-VariableList-
|
46074
|
+
.amis-scope .dark-FormulaEditor-VariableList-base.is-scrollable::-webkit-scrollbar-thumb {
|
46037
46075
|
border-radius: 3px;
|
46038
46076
|
background: rgba(0, 0, 0, 0.3);
|
46039
46077
|
}
|
46040
46078
|
|
46041
|
-
.amis-scope .dark-FormulaEditor-VariableList-
|
46042
|
-
|
46043
|
-
|
46044
|
-
|
46079
|
+
.amis-scope .dark-FormulaEditor-VariableList-searchBox {
|
46080
|
+
display: flex;
|
46081
|
+
width: auto;
|
46082
|
+
flex-shrink: 0;
|
46083
|
+
padding: 0.5rem;
|
46084
|
+
}
|
46085
|
+
|
46086
|
+
.amis-scope .dark-FormulaEditor-VariableList-searchBox > div {
|
46087
|
+
flex: 1;
|
46088
|
+
font-size: var(--fontSizeSm);
|
46089
|
+
height: var(--gap-xl);
|
46045
46090
|
}
|
46046
46091
|
|
46047
46092
|
.amis-scope .dark-FormulaEditor-VariableList-tabs {
|
46048
46093
|
--Tabs-linkFontSize: var(--fontSizeSm);
|
46049
46094
|
--Tabs--card-linkPadding: 0.3125rem;
|
46050
|
-
max-height:
|
46095
|
+
max-height: 100%;
|
46051
46096
|
display: flex;
|
46052
46097
|
flex-flow: column nowrap;
|
46053
46098
|
justify-content: space-between;
|
46054
46099
|
}
|
46055
46100
|
|
46056
|
-
.amis-scope .dark-FormulaEditor-VariableList-tabs
|
46057
|
-
|
46101
|
+
.amis-scope .dark-FormulaEditor-VariableList-tabs .dark-Tabs-content {
|
46102
|
+
padding: 0;
|
46103
|
+
}
|
46104
|
+
|
46105
|
+
.amis-scope .dark-FormulaEditor-VariableList-tabs .dark-Tabs-content .dark-FormulaEditor-VariableList-sub .dark-FormulaEditor-VariableList-body {
|
46106
|
+
max-height: 13.75rem;
|
46107
|
+
overflow-y: hidden;
|
46108
|
+
}
|
46109
|
+
|
46110
|
+
.amis-scope .dark-FormulaEditor-VariableList-tabs .dark-Tabs-content .dark-FormulaEditor-VariableList-sub-FormulaEditor-VariableList-base {
|
46111
|
+
overflow-x: hidden;
|
46112
|
+
overflow-y: auto;
|
46113
|
+
}
|
46114
|
+
|
46115
|
+
.amis-scope .dark-FormulaEditor-VariableList-tabs .dark-Tabs-content .dark-FormulaEditor-VariableList-sub-FormulaEditor-VariableList-base::-webkit-scrollbar {
|
46116
|
+
width: 6px;
|
46117
|
+
height: 6px;
|
46118
|
+
}
|
46119
|
+
|
46120
|
+
.amis-scope .dark-FormulaEditor-VariableList-tabs .dark-Tabs-content .dark-FormulaEditor-VariableList-sub-FormulaEditor-VariableList-base::-webkit-scrollbar-thumb {
|
46121
|
+
border-radius: 3px;
|
46122
|
+
background: rgba(0, 0, 0, 0.3);
|
46123
|
+
}
|
46124
|
+
|
46125
|
+
.amis-scope .dark-FormulaEditor-VariableList-tabs .dark-Tabs-linksContainer-wrapper {
|
46126
|
+
width: 100%;
|
46127
|
+
height: 1.875rem;
|
46128
|
+
line-height: 1.875rem;
|
46129
|
+
padding: 0 0.625rem;
|
46130
|
+
box-sizing: border-box;
|
46131
|
+
background: var(--InputFormula-header-bgColor);
|
46132
|
+
border-radius: var(--borderRadius) var(--borderRadius) 0 0;
|
46133
|
+
border-bottom: none;
|
46134
|
+
font-weight: 500;
|
46135
|
+
max-height: 1.875rem;
|
46136
|
+
min-height: 1.875rem;
|
46137
|
+
}
|
46138
|
+
|
46139
|
+
.amis-scope .dark-FormulaEditor-VariableList-tabs .dark-Tabs-linksContainer-wrapper ul.dark-Tabs-links > li {
|
46140
|
+
height: 30px;
|
46141
|
+
line-height: 30px;
|
46142
|
+
}
|
46143
|
+
|
46144
|
+
.amis-scope .dark-FormulaEditor-VariableList-tabs .dark-Tabs-linksContainer-wrapper ul.dark-Tabs-links > li > a {
|
46145
|
+
margin: 0;
|
46146
|
+
padding: 0;
|
46147
|
+
}
|
46148
|
+
|
46149
|
+
.amis-scope .dark-FormulaEditor-VariableList-tabs .dark-Tabs-linksContainer--overflow > div {
|
46150
|
+
margin: 0;
|
46058
46151
|
}
|
46059
46152
|
|
46060
46153
|
.amis-scope .dark-FormulaEditor-VariableList-tabs > div {
|
@@ -46107,6 +46200,10 @@ readers do not read off random characters that represent icons */
|
|
46107
46200
|
flex: 1;
|
46108
46201
|
}
|
46109
46202
|
|
46203
|
+
.amis-scope .dark-FormulaEditor-FuncList .dark-FormulaEditor-panel {
|
46204
|
+
width: 11.75rem;
|
46205
|
+
}
|
46206
|
+
|
46110
46207
|
.amis-scope .dark-FormulaEditor-FuncList:not(:last-child) {
|
46111
46208
|
margin-right: 0.625rem;
|
46112
46209
|
}
|
package/sdk/exceljs.js
CHANGED
package/sdk/helper.css
CHANGED
@@ -19179,7 +19179,7 @@ title: Display
|
|
19179
19179
|
| grid | display: grid; |
|
19180
19180
|
| inline-grid | display: inline-grid; |
|
19181
19181
|
| contents | display: contents; |
|
19182
|
-
| hidden | display:
|
19182
|
+
| hidden | display: none; |
|
19183
19183
|
|
19184
19184
|
## 用法
|
19185
19185
|
css 相关的知识点就不介绍了,请参考:
|