amis 1.5.6-beta.4 → 1.5.6-beta.5

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.
Files changed (159) hide show
  1. package/lib/Schema.d.ts +1 -1
  2. package/lib/Schema.js.map +1 -1
  3. package/lib/components/AsideNav.d.ts +1 -1
  4. package/lib/components/AsideNav.js.map +1 -1
  5. package/lib/components/CodeMirror.d.ts +26 -0
  6. package/lib/components/CodeMirror.js +104 -0
  7. package/lib/components/CodeMirror.js.map +13 -0
  8. package/lib/components/Collapse.d.ts +22 -21
  9. package/lib/components/Collapse.js.map +2 -2
  10. package/lib/components/ColorPicker.d.ts +85 -84
  11. package/lib/components/ColorPicker.js +15 -3
  12. package/lib/components/ColorPicker.js.map +2 -2
  13. package/lib/components/DatePicker.js +7 -3
  14. package/lib/components/DatePicker.js.map +2 -2
  15. package/lib/components/DateRangePicker.d.ts +85 -84
  16. package/lib/components/DateRangePicker.js +5 -3
  17. package/lib/components/DateRangePicker.js.map +2 -2
  18. package/lib/components/MonthRangePicker.d.ts +85 -84
  19. package/lib/components/MonthRangePicker.js +5 -3
  20. package/lib/components/MonthRangePicker.js.map +2 -2
  21. package/lib/components/PickerContainer.d.ts +2 -1
  22. package/lib/components/PickerContainer.js +3 -3
  23. package/lib/components/PickerContainer.js.map +2 -2
  24. package/lib/components/PopUp.d.ts +93 -0
  25. package/lib/components/PopUp.js +58 -0
  26. package/lib/components/PopUp.js.map +13 -0
  27. package/lib/components/Steps.d.ts +1 -0
  28. package/lib/components/Steps.js +5 -3
  29. package/lib/components/Steps.js.map +2 -2
  30. package/lib/components/TabsTransferPicker.js +1 -1
  31. package/lib/components/TabsTransferPicker.js.map +2 -2
  32. package/lib/components/TransferPicker.d.ts +0 -1
  33. package/lib/components/TransferPicker.js +2 -15
  34. package/lib/components/TransferPicker.js.map +2 -2
  35. package/lib/components/formula/Editor.d.ts +560 -0
  36. package/lib/components/formula/Editor.js +186 -0
  37. package/lib/components/formula/Editor.js.map +13 -0
  38. package/lib/components/formula/FuncList.d.ts +67 -0
  39. package/lib/components/formula/FuncList.js +35 -0
  40. package/lib/components/formula/FuncList.js.map +13 -0
  41. package/lib/components/formula/Picker.d.ts +493 -0
  42. package/lib/components/formula/Picker.js +48 -0
  43. package/lib/components/formula/Picker.js.map +13 -0
  44. package/lib/components/formula/VariableList.d.ts +9 -0
  45. package/lib/components/formula/VariableList.js +15 -0
  46. package/lib/components/formula/VariableList.js.map +13 -0
  47. package/lib/components/formula/plugin.d.ts +18 -0
  48. package/lib/components/formula/plugin.js +136 -0
  49. package/lib/components/formula/plugin.js.map +13 -0
  50. package/lib/helper.css +57 -57
  51. package/lib/helper.css.map +1 -1
  52. package/lib/index.d.ts +1 -0
  53. package/lib/index.js +2 -1
  54. package/lib/index.js.map +2 -2
  55. package/lib/renderers/Form/InputColor.d.ts +84 -84
  56. package/lib/renderers/Form/InputColor.js +2 -2
  57. package/lib/renderers/Form/InputColor.js.map +2 -2
  58. package/lib/renderers/Form/InputDate.js +2 -2
  59. package/lib/renderers/Form/InputDate.js.map +2 -2
  60. package/lib/renderers/Form/InputDateRange.js +2 -2
  61. package/lib/renderers/Form/InputDateRange.js.map +2 -2
  62. package/lib/renderers/Form/InputFormula.d.ts +35 -0
  63. package/lib/renderers/Form/InputFormula.js +25 -0
  64. package/lib/renderers/Form/InputFormula.js.map +13 -0
  65. package/lib/renderers/Form/InputMonthRange.js +2 -2
  66. package/lib/renderers/Form/InputMonthRange.js.map +2 -2
  67. package/lib/renderers/Form/InputQuarterRange.js +2 -2
  68. package/lib/renderers/Form/InputQuarterRange.js.map +2 -2
  69. package/lib/renderers/Form/InputYearRange.js +2 -2
  70. package/lib/renderers/Form/InputYearRange.js.map +2 -2
  71. package/lib/renderers/Form/TreeSelect.d.ts +1 -0
  72. package/lib/renderers/Form/TreeSelect.js +11 -8
  73. package/lib/renderers/Form/TreeSelect.js.map +2 -2
  74. package/lib/renderers/Steps.js +2 -2
  75. package/lib/renderers/Steps.js.map +2 -2
  76. package/lib/themes/ang-ie11.css +261 -0
  77. package/lib/themes/ang.css +261 -0
  78. package/lib/themes/ang.css.map +1 -1
  79. package/lib/themes/antd-ie11.css +261 -0
  80. package/lib/themes/antd.css +261 -0
  81. package/lib/themes/antd.css.map +1 -1
  82. package/lib/themes/cxd-ie11.css +261 -0
  83. package/lib/themes/cxd.css +261 -0
  84. package/lib/themes/cxd.css.map +1 -1
  85. package/lib/themes/dark-ie11.css +261 -0
  86. package/lib/themes/dark.css +261 -0
  87. package/lib/themes/dark.css.map +1 -1
  88. package/lib/themes/default.css +261 -0
  89. package/lib/themes/default.css.map +1 -1
  90. package/lib/utils/api.js +2 -2
  91. package/lib/utils/api.js.map +2 -2
  92. package/package.json +4 -2
  93. package/scss/_variables.scss +1 -1
  94. package/scss/components/_formula.scss +122 -0
  95. package/scss/components/_popup.scss +123 -0
  96. package/scss/components/_steps.scss +60 -0
  97. package/scss/components/form/_color.scss +4 -0
  98. package/scss/components/form/_date-range.scss +4 -0
  99. package/scss/components/form/_date.scss +3 -0
  100. package/scss/components/form/_tree-select.scss +4 -0
  101. package/scss/helper/background/_background-color.scss +1 -1
  102. package/scss/helper/border/_border-color.scss +1 -1
  103. package/scss/helper/typography/_text-color.scss +1 -1
  104. package/scss/themes/_common.scss +2 -0
  105. package/sdk/ang-ie11.css +875 -0
  106. package/sdk/ang.css +875 -0
  107. package/sdk/antd-ie11.css +875 -0
  108. package/sdk/antd.css +875 -0
  109. package/sdk/charts.js +15 -15
  110. package/sdk/codemirror.js +14 -0
  111. package/sdk/color-picker.js +65 -65
  112. package/sdk/cropperjs.js +2 -2
  113. package/sdk/cxd-ie11.css +875 -0
  114. package/sdk/cxd.css +875 -0
  115. package/sdk/dark-ie11.css +875 -0
  116. package/sdk/dark.css +875 -0
  117. package/sdk/exceljs.js +1 -1
  118. package/sdk/helper.css +57 -57
  119. package/sdk/helper.css.map +1 -1
  120. package/sdk/markdown.js +69 -69
  121. package/sdk/papaparse.js +1 -1
  122. package/sdk/renderers/Form/CityDB.js +1 -1
  123. package/sdk/rest.js +18 -18
  124. package/sdk/rich-text.js +62 -62
  125. package/sdk/sdk-ie11.css +875 -0
  126. package/sdk/sdk.css +875 -0
  127. package/sdk/sdk.js +1219 -1201
  128. package/sdk/thirds/hls.js/hls.js +1 -1
  129. package/sdk/thirds/mpegts.js/mpegts.js +1 -1
  130. package/sdk/tinymce.js +57 -57
  131. package/src/Schema.ts +1 -0
  132. package/src/components/AsideNav.tsx +1 -1
  133. package/src/components/CodeMirror.tsx +99 -0
  134. package/src/components/Collapse.tsx +2 -1
  135. package/src/components/ColorPicker.tsx +45 -3
  136. package/src/components/DatePicker.tsx +33 -3
  137. package/src/components/DateRangePicker.tsx +17 -3
  138. package/src/components/MonthRangePicker.tsx +18 -4
  139. package/src/components/PickerContainer.tsx +10 -6
  140. package/src/components/PopUp.tsx +133 -0
  141. package/src/components/Steps.tsx +8 -3
  142. package/src/components/TabsTransferPicker.tsx +1 -1
  143. package/src/components/TransferPicker.tsx +1 -11
  144. package/src/components/formula/Editor.tsx +261 -0
  145. package/src/components/formula/FuncList.tsx +82 -0
  146. package/src/components/formula/Picker.tsx +86 -0
  147. package/src/components/formula/VariableList.tsx +49 -0
  148. package/src/components/formula/plugin.ts +177 -0
  149. package/src/index.tsx +1 -0
  150. package/src/renderers/Form/InputColor.tsx +2 -3
  151. package/src/renderers/Form/InputDate.tsx +2 -0
  152. package/src/renderers/Form/InputDateRange.tsx +2 -0
  153. package/src/renderers/Form/InputFormula.tsx +75 -0
  154. package/src/renderers/Form/InputMonthRange.tsx +2 -0
  155. package/src/renderers/Form/InputQuarterRange.tsx +2 -0
  156. package/src/renderers/Form/InputYearRange.tsx +2 -0
  157. package/src/renderers/Form/TreeSelect.tsx +82 -63
  158. package/src/renderers/Steps.tsx +4 -2
  159. package/src/utils/api.ts +5 -2
@@ -4605,6 +4605,117 @@ input[type=button].antd-Button--block {
4605
4605
  margin-top: -0.25rem;
4606
4606
  }
4607
4607
 
4608
+ @keyframes PopUpIn {
4609
+ from {
4610
+ height: 0;
4611
+ }
4612
+ }
4613
+ @keyframes PopUpOut {
4614
+ to {
4615
+ height: 0;
4616
+ }
4617
+ }
4618
+ @keyframes PopUpOpacityIn {
4619
+ from {
4620
+ opacity: 0;
4621
+ }
4622
+ }
4623
+ @keyframes PopUpOpacityOut {
4624
+ to {
4625
+ opacity: 0;
4626
+ }
4627
+ }
4628
+ .antd-PopUp {
4629
+ width: 100%;
4630
+ position: fixed;
4631
+ background: var(--PopOver-bg);
4632
+ left: 0;
4633
+ bottom: 0;
4634
+ z-index: 1300;
4635
+ padding: 0;
4636
+ margin: 0;
4637
+ font-weight: var(--fontWeightNormal);
4638
+ letter-spacing: normal;
4639
+ line-height: var(--lineHeightBase);
4640
+ text-align: left;
4641
+ text-align: start;
4642
+ text-decoration: none;
4643
+ text-shadow: none;
4644
+ text-transform: none;
4645
+ white-space: normal;
4646
+ word-break: normal;
4647
+ word-spacing: normal;
4648
+ word-wrap: normal;
4649
+ font-size: var(--fontSizeBase);
4650
+ box-shadow: var(--boxShadow);
4651
+ border: var(--borderWidth) solid var(--borderColor);
4652
+ border-radius: var(--borderRadius);
4653
+ overflow: hidden;
4654
+ }
4655
+ .antd-PopUp.in, .antd-PopUp.out {
4656
+ animation-duration: var(--animation-duration);
4657
+ animation-fill-mode: both;
4658
+ }
4659
+ .antd-PopUp.in {
4660
+ animation-name: PopUpIn;
4661
+ }
4662
+ .antd-PopUp.in .antd-PopUp-overlay {
4663
+ animation-name: PopUpOpacityIn;
4664
+ }
4665
+ .antd-PopUp.out {
4666
+ animation-name: PopUpOut;
4667
+ }
4668
+ .antd-PopUp.out .antd-PopUp-overlay {
4669
+ animation-name: PopUpOpacityOut;
4670
+ }
4671
+ .antd-PopUp-inner {
4672
+ position: relative;
4673
+ overflow: hidden;
4674
+ height: 100%;
4675
+ box-sizing: border-box;
4676
+ background: #fff;
4677
+ padding-top: 2.25rem;
4678
+ }
4679
+ .antd-PopUp-closeWrap {
4680
+ width: 100%;
4681
+ position: absolute !important;
4682
+ left: 0;
4683
+ top: 0;
4684
+ }
4685
+ .antd-PopUp-close {
4686
+ width: 2.125rem !important;
4687
+ height: 2.125rem !important;
4688
+ padding: 0.75rem;
4689
+ cursor: pointer;
4690
+ }
4691
+ .antd-PopUp-content {
4692
+ overflow-y: auto;
4693
+ height: 100%;
4694
+ display: flex;
4695
+ }
4696
+ .antd-PopUp > * {
4697
+ position: relative;
4698
+ z-index: 2;
4699
+ }
4700
+ .antd-PopUp-overlay {
4701
+ position: fixed !important;
4702
+ top: 0;
4703
+ left: 0;
4704
+ right: 0;
4705
+ z-index: 1;
4706
+ bottom: 0;
4707
+ background: rgba(0, 0, 0, 0.3);
4708
+ opacity: 1;
4709
+ animation-duration: var(--animation-duration);
4710
+ animation-fill-mode: both;
4711
+ }
4712
+ .antd-PopUp--leftBottomLeftTop {
4713
+ margin-top: 0.25rem;
4714
+ }
4715
+ .antd-PopUp--leftTopLeftBottom {
4716
+ margin-top: -0.25rem;
4717
+ }
4718
+
4608
4719
  .antd-PickerColumns {
4609
4720
  position: relative;
4610
4721
  background-color: var(--PickerColumns-bg);
@@ -11207,6 +11318,36 @@ input[type=button].antd-Button--block {
11207
11318
  border: 1px solid var(--Steps-status-success);
11208
11319
  }
11209
11320
 
11321
+ .antd-Steps-mobile.antd-Steps--horizontal .antd-StepsItem-containerWrapper .antd-StepsItem-body .antd-StepsItem-title::after {
11322
+ display: none !important;
11323
+ }
11324
+ .antd-Steps-mobile.antd-Steps--horizontal .antd-StepsItem-containerWrapper .antd-StepsItem-body .antd-StepsItem-title .antd-StepsItem-subTitle {
11325
+ padding-left: 0.3125rem;
11326
+ }
11327
+ .antd-Steps-mobile.antd-Steps--horizontal .antd-StepsItem-containerIcon {
11328
+ position: relative;
11329
+ display: block;
11330
+ }
11331
+ .antd-Steps-mobile.antd-Steps--horizontal .antd-StepsItem-containerIcon:after {
11332
+ content: "";
11333
+ position: absolute;
11334
+ right: 0;
11335
+ top: 0.9375rem;
11336
+ height: 1px;
11337
+ left: 2.5rem;
11338
+ width: 99999px;
11339
+ background-color: var(--Steps-line-bg);
11340
+ }
11341
+ .antd-Steps-mobile.antd-Steps--horizontal .antd-StepsItem-containerIcon.is-success:after {
11342
+ background-color: var(--Steps-line-success-bg);
11343
+ }
11344
+ .antd-Steps-mobile.antd-Steps--horizontal .antd-StepsItem:last-child {
11345
+ flex: 1;
11346
+ }
11347
+ .antd-Steps-mobile.antd-Steps--horizontal .antd-StepsItem:last-child .antd-StepsItem-containerIcon:after {
11348
+ display: none !important;
11349
+ }
11350
+
11210
11351
  .antd-Portlet {
11211
11352
  border: var(--Portlet-borderWidth) var(--Portlet-borderStyle) var(--Portlet-borderColor);
11212
11353
  border-radius: var(--Portlet-borderRadius);
@@ -13428,6 +13569,9 @@ fieldset.antd-Collapse--lg:after {
13428
13569
  color: var(--ColorPicker-color);
13429
13570
  border-radius: var(--borderRadius);
13430
13571
  }
13572
+ .antd-ColorPicker-popup {
13573
+ height: 80vh;
13574
+ }
13431
13575
  .antd-ColorPicker:not(.is-disabled) {
13432
13576
  cursor: pointer;
13433
13577
  }
@@ -13653,6 +13797,10 @@ fieldset.antd-Collapse--lg:after {
13653
13797
  margin: -0.125rem 0 0;
13654
13798
  }
13655
13799
 
13800
+ .antd-DatePicker-popup {
13801
+ height: 80vh;
13802
+ }
13803
+
13656
13804
  .rdt {
13657
13805
  user-select: none;
13658
13806
  font-size: var(--Calendar-fontSize);
@@ -14116,6 +14264,10 @@ td.rdtQuarter.rdtDisabled > span {
14116
14264
  margin: -0.125rem 0 0;
14117
14265
  }
14118
14266
 
14267
+ .antd-DateRangePicker-popup {
14268
+ height: 90vh;
14269
+ }
14270
+
14119
14271
  @media (min-width: 576px) {
14120
14272
  .antd-DateRangePicker-wrap {
14121
14273
  white-space: nowrap;
@@ -15231,6 +15383,9 @@ td.rdtQuarter.rdtDisabled > span {
15231
15383
  box-shadow: var(--Form-input-boxShadow);
15232
15384
  background: var(--Form-input-onFocused-bg);
15233
15385
  }
15386
+ .antd-TreeSelect-popup {
15387
+ height: 80vh;
15388
+ }
15234
15389
 
15235
15390
  .antd-TreeSelect-popover {
15236
15391
  background: transparent;
@@ -17117,6 +17272,112 @@ td.rdtQuarter.rdtDisabled > span {
17117
17272
  margin-right: 0;
17118
17273
  }
17119
17274
 
17275
+ .antd-FormulaEditor {
17276
+ overflow: visible;
17277
+ max-width: 100%;
17278
+ box-sizing: content-box;
17279
+ }
17280
+ .antd-FormulaEditor-header {
17281
+ width: 100%;
17282
+ height: 2.5rem;
17283
+ line-height: 2.5rem;
17284
+ padding-left: 0.625rem;
17285
+ box-sizing: border-box;
17286
+ background: #f3f8fb;
17287
+ }
17288
+ .antd-FormulaEditor-editor {
17289
+ min-height: 14.875rem;
17290
+ max-height: 20rem;
17291
+ height: auto;
17292
+ border: var(--Form-input-borderWidth) solid var(--Form-input-borderColor);
17293
+ }
17294
+ .antd-FormulaEditor.is-error .antd-FormulaEditor-editor {
17295
+ border-color: var(--Form-input-onError-borderColor);
17296
+ }
17297
+ .antd-FormulaEditor.is-focused .antd-FormulaEditor-editor {
17298
+ border-color: var(--Form-input-onFocused-borderColor);
17299
+ }
17300
+ .antd-FormulaEditor-settings {
17301
+ display: flex;
17302
+ flex-direction: row;
17303
+ align-items: stretch;
17304
+ justify-content: space-between;
17305
+ max-height: 21.875rem;
17306
+ margin: 0 -5px;
17307
+ }
17308
+ .antd-FormulaEditor-settings > div {
17309
+ flex: 1;
17310
+ padding: 0 5px;
17311
+ display: flex;
17312
+ flex-direction: column;
17313
+ }
17314
+ .antd-FormulaEditor-settings > div > h3 {
17315
+ padding: 10px 0;
17316
+ margin: 0;
17317
+ flex-shrink: 0;
17318
+ }
17319
+ .antd-FormulaEditor-settings > div > div {
17320
+ flex: 1;
17321
+ min-height: 0;
17322
+ }
17323
+ .antd-FormulaEditor .cm-field,
17324
+ .antd-FormulaEditor .cm-func {
17325
+ border-radius: 2px;
17326
+ color: #fff;
17327
+ margin: 0 1px;
17328
+ padding: 0 2px;
17329
+ }
17330
+ .antd-FormulaEditor .cm-field {
17331
+ background: #007bff;
17332
+ }
17333
+ .antd-FormulaEditor .cm-func {
17334
+ background: #17a2b8;
17335
+ }
17336
+
17337
+ .antd-FormulaFuncList {
17338
+ display: flex;
17339
+ flex-direction: column;
17340
+ }
17341
+ .antd-FormulaFuncList > .antd-FormulaFuncList-searchBox {
17342
+ display: flex;
17343
+ width: auto;
17344
+ flex-shrink: 0;
17345
+ margin-bottom: 0.5rem;
17346
+ }
17347
+ .antd-FormulaFuncList-columns {
17348
+ flex: 1;
17349
+ min-height: 0;
17350
+ overflow: auto;
17351
+ display: flex;
17352
+ flex-direction: row;
17353
+ justify-content: flex-start;
17354
+ }
17355
+ .antd-FormulaFuncList-columns > div:first-child {
17356
+ min-width: 200px;
17357
+ flex-shrink: 0;
17358
+ }
17359
+ .antd-FormulaFuncList-funcItem {
17360
+ padding: 0 10px;
17361
+ cursor: pointer;
17362
+ }
17363
+ .antd-FormulaFuncList-funcItem.is-active {
17364
+ color: var(--primary);
17365
+ }
17366
+ .antd-FormulaFuncList-groupTitle {
17367
+ padding: 5px 0;
17368
+ background: transparent;
17369
+ }
17370
+ .antd-FormulaFuncList-groupBody > div {
17371
+ padding: 5px 0;
17372
+ }
17373
+ .antd-FormulaFuncList-funcDetail {
17374
+ padding: 10px 20px;
17375
+ }
17376
+
17377
+ .antd-FormulaPicker-icon {
17378
+ margin-left: auto;
17379
+ }
17380
+
17120
17381
  /*
17121
17382
  * utilities
17122
17383
  */
@@ -4605,6 +4605,117 @@ input[type=button].antd-Button--block {
4605
4605
  margin-top: -0.25rem;
4606
4606
  }
4607
4607
 
4608
+ @keyframes PopUpIn {
4609
+ from {
4610
+ height: 0;
4611
+ }
4612
+ }
4613
+ @keyframes PopUpOut {
4614
+ to {
4615
+ height: 0;
4616
+ }
4617
+ }
4618
+ @keyframes PopUpOpacityIn {
4619
+ from {
4620
+ opacity: 0;
4621
+ }
4622
+ }
4623
+ @keyframes PopUpOpacityOut {
4624
+ to {
4625
+ opacity: 0;
4626
+ }
4627
+ }
4628
+ .antd-PopUp {
4629
+ width: 100%;
4630
+ position: fixed;
4631
+ background: var(--PopOver-bg);
4632
+ left: 0;
4633
+ bottom: 0;
4634
+ z-index: 1300;
4635
+ padding: 0;
4636
+ margin: 0;
4637
+ font-weight: var(--fontWeightNormal);
4638
+ letter-spacing: normal;
4639
+ line-height: var(--lineHeightBase);
4640
+ text-align: left;
4641
+ text-align: start;
4642
+ text-decoration: none;
4643
+ text-shadow: none;
4644
+ text-transform: none;
4645
+ white-space: normal;
4646
+ word-break: normal;
4647
+ word-spacing: normal;
4648
+ word-wrap: normal;
4649
+ font-size: var(--fontSizeBase);
4650
+ box-shadow: var(--boxShadow);
4651
+ border: var(--borderWidth) solid var(--borderColor);
4652
+ border-radius: var(--borderRadius);
4653
+ overflow: hidden;
4654
+ }
4655
+ .antd-PopUp.in, .antd-PopUp.out {
4656
+ animation-duration: var(--animation-duration);
4657
+ animation-fill-mode: both;
4658
+ }
4659
+ .antd-PopUp.in {
4660
+ animation-name: PopUpIn;
4661
+ }
4662
+ .antd-PopUp.in .antd-PopUp-overlay {
4663
+ animation-name: PopUpOpacityIn;
4664
+ }
4665
+ .antd-PopUp.out {
4666
+ animation-name: PopUpOut;
4667
+ }
4668
+ .antd-PopUp.out .antd-PopUp-overlay {
4669
+ animation-name: PopUpOpacityOut;
4670
+ }
4671
+ .antd-PopUp-inner {
4672
+ position: relative;
4673
+ overflow: hidden;
4674
+ height: 100%;
4675
+ box-sizing: border-box;
4676
+ background: #fff;
4677
+ padding-top: 2.25rem;
4678
+ }
4679
+ .antd-PopUp-closeWrap {
4680
+ width: 100%;
4681
+ position: absolute !important;
4682
+ left: 0;
4683
+ top: 0;
4684
+ }
4685
+ .antd-PopUp-close {
4686
+ width: 2.125rem !important;
4687
+ height: 2.125rem !important;
4688
+ padding: 0.75rem;
4689
+ cursor: pointer;
4690
+ }
4691
+ .antd-PopUp-content {
4692
+ overflow-y: auto;
4693
+ height: 100%;
4694
+ display: flex;
4695
+ }
4696
+ .antd-PopUp > * {
4697
+ position: relative;
4698
+ z-index: 2;
4699
+ }
4700
+ .antd-PopUp-overlay {
4701
+ position: fixed !important;
4702
+ top: 0;
4703
+ left: 0;
4704
+ right: 0;
4705
+ z-index: 1;
4706
+ bottom: 0;
4707
+ background: rgba(0, 0, 0, 0.3);
4708
+ opacity: 1;
4709
+ animation-duration: var(--animation-duration);
4710
+ animation-fill-mode: both;
4711
+ }
4712
+ .antd-PopUp--leftBottomLeftTop {
4713
+ margin-top: 0.25rem;
4714
+ }
4715
+ .antd-PopUp--leftTopLeftBottom {
4716
+ margin-top: -0.25rem;
4717
+ }
4718
+
4608
4719
  .antd-PickerColumns {
4609
4720
  position: relative;
4610
4721
  background-color: var(--PickerColumns-bg);
@@ -11207,6 +11318,36 @@ input[type=button].antd-Button--block {
11207
11318
  border: 1px solid var(--Steps-status-success);
11208
11319
  }
11209
11320
 
11321
+ .antd-Steps-mobile.antd-Steps--horizontal .antd-StepsItem-containerWrapper .antd-StepsItem-body .antd-StepsItem-title::after {
11322
+ display: none !important;
11323
+ }
11324
+ .antd-Steps-mobile.antd-Steps--horizontal .antd-StepsItem-containerWrapper .antd-StepsItem-body .antd-StepsItem-title .antd-StepsItem-subTitle {
11325
+ padding-left: 0.3125rem;
11326
+ }
11327
+ .antd-Steps-mobile.antd-Steps--horizontal .antd-StepsItem-containerIcon {
11328
+ position: relative;
11329
+ display: block;
11330
+ }
11331
+ .antd-Steps-mobile.antd-Steps--horizontal .antd-StepsItem-containerIcon:after {
11332
+ content: "";
11333
+ position: absolute;
11334
+ right: 0;
11335
+ top: 0.9375rem;
11336
+ height: 1px;
11337
+ left: 2.5rem;
11338
+ width: 99999px;
11339
+ background-color: var(--Steps-line-bg);
11340
+ }
11341
+ .antd-Steps-mobile.antd-Steps--horizontal .antd-StepsItem-containerIcon.is-success:after {
11342
+ background-color: var(--Steps-line-success-bg);
11343
+ }
11344
+ .antd-Steps-mobile.antd-Steps--horizontal .antd-StepsItem:last-child {
11345
+ flex: 1;
11346
+ }
11347
+ .antd-Steps-mobile.antd-Steps--horizontal .antd-StepsItem:last-child .antd-StepsItem-containerIcon:after {
11348
+ display: none !important;
11349
+ }
11350
+
11210
11351
  .antd-Portlet {
11211
11352
  border: var(--Portlet-borderWidth) var(--Portlet-borderStyle) var(--Portlet-borderColor);
11212
11353
  border-radius: var(--Portlet-borderRadius);
@@ -13428,6 +13569,9 @@ fieldset.antd-Collapse--lg:after {
13428
13569
  color: var(--ColorPicker-color);
13429
13570
  border-radius: var(--borderRadius);
13430
13571
  }
13572
+ .antd-ColorPicker-popup {
13573
+ height: 80vh;
13574
+ }
13431
13575
  .antd-ColorPicker:not(.is-disabled) {
13432
13576
  cursor: pointer;
13433
13577
  }
@@ -13653,6 +13797,10 @@ fieldset.antd-Collapse--lg:after {
13653
13797
  margin: -0.125rem 0 0;
13654
13798
  }
13655
13799
 
13800
+ .antd-DatePicker-popup {
13801
+ height: 80vh;
13802
+ }
13803
+
13656
13804
  .rdt {
13657
13805
  user-select: none;
13658
13806
  font-size: var(--Calendar-fontSize);
@@ -14116,6 +14264,10 @@ td.rdtQuarter.rdtDisabled > span {
14116
14264
  margin: -0.125rem 0 0;
14117
14265
  }
14118
14266
 
14267
+ .antd-DateRangePicker-popup {
14268
+ height: 90vh;
14269
+ }
14270
+
14119
14271
  @media (min-width: 576px) {
14120
14272
  .antd-DateRangePicker-wrap {
14121
14273
  white-space: nowrap;
@@ -15231,6 +15383,9 @@ td.rdtQuarter.rdtDisabled > span {
15231
15383
  box-shadow: var(--Form-input-boxShadow);
15232
15384
  background: var(--Form-input-onFocused-bg);
15233
15385
  }
15386
+ .antd-TreeSelect-popup {
15387
+ height: 80vh;
15388
+ }
15234
15389
 
15235
15390
  .antd-TreeSelect-popover {
15236
15391
  background: transparent;
@@ -17117,6 +17272,112 @@ td.rdtQuarter.rdtDisabled > span {
17117
17272
  margin-right: 0;
17118
17273
  }
17119
17274
 
17275
+ .antd-FormulaEditor {
17276
+ overflow: visible;
17277
+ max-width: 100%;
17278
+ box-sizing: content-box;
17279
+ }
17280
+ .antd-FormulaEditor-header {
17281
+ width: 100%;
17282
+ height: 2.5rem;
17283
+ line-height: 2.5rem;
17284
+ padding-left: 0.625rem;
17285
+ box-sizing: border-box;
17286
+ background: #f3f8fb;
17287
+ }
17288
+ .antd-FormulaEditor-editor {
17289
+ min-height: 14.875rem;
17290
+ max-height: 20rem;
17291
+ height: auto;
17292
+ border: var(--Form-input-borderWidth) solid var(--Form-input-borderColor);
17293
+ }
17294
+ .antd-FormulaEditor.is-error .antd-FormulaEditor-editor {
17295
+ border-color: var(--Form-input-onError-borderColor);
17296
+ }
17297
+ .antd-FormulaEditor.is-focused .antd-FormulaEditor-editor {
17298
+ border-color: var(--Form-input-onFocused-borderColor);
17299
+ }
17300
+ .antd-FormulaEditor-settings {
17301
+ display: flex;
17302
+ flex-direction: row;
17303
+ align-items: stretch;
17304
+ justify-content: space-between;
17305
+ max-height: 21.875rem;
17306
+ margin: 0 -5px;
17307
+ }
17308
+ .antd-FormulaEditor-settings > div {
17309
+ flex: 1;
17310
+ padding: 0 5px;
17311
+ display: flex;
17312
+ flex-direction: column;
17313
+ }
17314
+ .antd-FormulaEditor-settings > div > h3 {
17315
+ padding: 10px 0;
17316
+ margin: 0;
17317
+ flex-shrink: 0;
17318
+ }
17319
+ .antd-FormulaEditor-settings > div > div {
17320
+ flex: 1;
17321
+ min-height: 0;
17322
+ }
17323
+ .antd-FormulaEditor .cm-field,
17324
+ .antd-FormulaEditor .cm-func {
17325
+ border-radius: 2px;
17326
+ color: #fff;
17327
+ margin: 0 1px;
17328
+ padding: 0 2px;
17329
+ }
17330
+ .antd-FormulaEditor .cm-field {
17331
+ background: #007bff;
17332
+ }
17333
+ .antd-FormulaEditor .cm-func {
17334
+ background: #17a2b8;
17335
+ }
17336
+
17337
+ .antd-FormulaFuncList {
17338
+ display: flex;
17339
+ flex-direction: column;
17340
+ }
17341
+ .antd-FormulaFuncList > .antd-FormulaFuncList-searchBox {
17342
+ display: flex;
17343
+ width: auto;
17344
+ flex-shrink: 0;
17345
+ margin-bottom: 0.5rem;
17346
+ }
17347
+ .antd-FormulaFuncList-columns {
17348
+ flex: 1;
17349
+ min-height: 0;
17350
+ overflow: auto;
17351
+ display: flex;
17352
+ flex-direction: row;
17353
+ justify-content: flex-start;
17354
+ }
17355
+ .antd-FormulaFuncList-columns > div:first-child {
17356
+ min-width: 200px;
17357
+ flex-shrink: 0;
17358
+ }
17359
+ .antd-FormulaFuncList-funcItem {
17360
+ padding: 0 10px;
17361
+ cursor: pointer;
17362
+ }
17363
+ .antd-FormulaFuncList-funcItem.is-active {
17364
+ color: var(--primary);
17365
+ }
17366
+ .antd-FormulaFuncList-groupTitle {
17367
+ padding: 5px 0;
17368
+ background: transparent;
17369
+ }
17370
+ .antd-FormulaFuncList-groupBody > div {
17371
+ padding: 5px 0;
17372
+ }
17373
+ .antd-FormulaFuncList-funcDetail {
17374
+ padding: 10px 20px;
17375
+ }
17376
+
17377
+ .antd-FormulaPicker-icon {
17378
+ margin-left: auto;
17379
+ }
17380
+
17120
17381
  /*
17121
17382
  * utilities
17122
17383
  */