amis 1.8.0-beta.1 → 1.8.0-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 (207) hide show
  1. package/lib/SchemaRenderer.js +19 -3
  2. package/lib/SchemaRenderer.js.map +2 -2
  3. package/lib/WithRootStore.d.ts +18 -0
  4. package/lib/WithStore.js +2 -1
  5. package/lib/WithStore.js.map +2 -2
  6. package/lib/actions/CmptAction.js +14 -3
  7. package/lib/actions/CmptAction.js.map +2 -2
  8. package/lib/components/AssociatedSelection.js +9 -2
  9. package/lib/components/AssociatedSelection.js.map +2 -2
  10. package/lib/components/BarCode.js +1 -1
  11. package/lib/components/BarCode.js.map +2 -2
  12. package/lib/components/Checkbox.d.ts +24 -23
  13. package/lib/components/Checkbox.js +6 -2
  14. package/lib/components/Checkbox.js.map +2 -2
  15. package/lib/components/DatePicker.js +16 -5
  16. package/lib/components/DatePicker.js.map +2 -2
  17. package/lib/components/DateRangePicker.d.ts +94 -84
  18. package/lib/components/DateRangePicker.js +259 -7
  19. package/lib/components/DateRangePicker.js.map +2 -2
  20. package/lib/components/MonthRangePicker.d.ts +84 -84
  21. package/lib/components/Radios.d.ts +22 -22
  22. package/lib/components/Radios.js +3 -5
  23. package/lib/components/Radios.js.map +2 -2
  24. package/lib/components/Range.d.ts +2 -2
  25. package/lib/components/Range.js +24 -11
  26. package/lib/components/Range.js.map +2 -2
  27. package/lib/components/Steps.d.ts +6 -0
  28. package/lib/components/Steps.js +13 -9
  29. package/lib/components/Steps.js.map +2 -2
  30. package/lib/components/calendar/Calendar.js +2 -14
  31. package/lib/components/calendar/Calendar.js.map +2 -2
  32. package/lib/components/calendar/YearsView.js +3 -3
  33. package/lib/components/calendar/YearsView.js.map +2 -2
  34. package/lib/factory.d.ts +4 -0
  35. package/lib/factory.js +9 -0
  36. package/lib/factory.js.map +2 -2
  37. package/lib/index.js +1 -1
  38. package/lib/locale/de-DE.js +13 -0
  39. package/lib/locale/de-DE.js.map +2 -2
  40. package/lib/locale/en-US.js +13 -0
  41. package/lib/locale/en-US.js.map +2 -2
  42. package/lib/locale/zh-CN.js +13 -0
  43. package/lib/locale/zh-CN.js.map +2 -2
  44. package/lib/renderers/Action.d.ts +2 -0
  45. package/lib/renderers/Action.js +23 -5
  46. package/lib/renderers/Action.js.map +2 -2
  47. package/lib/renderers/CRUD.d.ts +8 -0
  48. package/lib/renderers/CRUD.js +11 -4
  49. package/lib/renderers/CRUD.js.map +2 -2
  50. package/lib/renderers/Carousel.d.ts +1 -0
  51. package/lib/renderers/Carousel.js +13 -1
  52. package/lib/renderers/Carousel.js.map +2 -2
  53. package/lib/renderers/Form/Checkbox.d.ts +5 -2
  54. package/lib/renderers/Form/Checkbox.js +2 -2
  55. package/lib/renderers/Form/Checkbox.js.map +2 -2
  56. package/lib/renderers/Form/Checkboxes.d.ts +7 -2
  57. package/lib/renderers/Form/Checkboxes.js +101 -12
  58. package/lib/renderers/Form/Checkboxes.js.map +2 -2
  59. package/lib/renderers/Form/Combo.js +3 -2
  60. package/lib/renderers/Form/Combo.js.map +2 -2
  61. package/lib/renderers/Form/InputCity.d.ts +3 -0
  62. package/lib/renderers/Form/InputCity.js +44 -2
  63. package/lib/renderers/Form/InputCity.js.map +2 -2
  64. package/lib/renderers/Form/InputDateRange.d.ts +5 -0
  65. package/lib/renderers/Form/InputDateRange.js.map +2 -2
  66. package/lib/renderers/Form/InputFile.js +6 -3
  67. package/lib/renderers/Form/InputFile.js.map +2 -2
  68. package/lib/renderers/Form/InputImage.js +6 -3
  69. package/lib/renderers/Form/InputImage.js.map +2 -2
  70. package/lib/renderers/Form/InputRange.js +13 -14
  71. package/lib/renderers/Form/InputRange.js.map +2 -2
  72. package/lib/renderers/Form/Item.d.ts +11 -6
  73. package/lib/renderers/Form/Item.js +3 -1
  74. package/lib/renderers/Form/Item.js.map +2 -2
  75. package/lib/renderers/Form/index.d.ts +1 -0
  76. package/lib/renderers/Form/index.js +1 -1
  77. package/lib/renderers/Form/index.js.map +2 -2
  78. package/lib/renderers/Form/wrapControl.d.ts +9 -0
  79. package/lib/renderers/Form/wrapControl.js +1 -1
  80. package/lib/renderers/Form/wrapControl.js.map +2 -2
  81. package/lib/renderers/Nav.js +2 -2
  82. package/lib/renderers/Nav.js.map +2 -2
  83. package/lib/renderers/Steps.d.ts +8 -0
  84. package/lib/renderers/Steps.js +2 -2
  85. package/lib/renderers/Steps.js.map +2 -2
  86. package/lib/renderers/Table/index.d.ts +1 -0
  87. package/lib/renderers/Table/index.js +10 -5
  88. package/lib/renderers/Table/index.js.map +2 -2
  89. package/lib/renderers/Tabs.d.ts +4 -0
  90. package/lib/renderers/Tabs.js +22 -6
  91. package/lib/renderers/Tabs.js.map +2 -2
  92. package/lib/renderers/Wizard.d.ts +6 -3
  93. package/lib/renderers/Wizard.js +257 -152
  94. package/lib/renderers/Wizard.js.map +2 -2
  95. package/lib/store/crud.d.ts +1 -0
  96. package/lib/store/crud.js +33 -7
  97. package/lib/store/crud.js.map +2 -2
  98. package/lib/store/formItem.js +1 -1
  99. package/lib/store/formItem.js.map +2 -2
  100. package/lib/store/index.d.ts +5 -0
  101. package/lib/store/index.js +14 -0
  102. package/lib/store/index.js.map +2 -2
  103. package/lib/store/table.js +2 -2
  104. package/lib/store/table.js.map +2 -2
  105. package/lib/themes/ang-ie11.css +278 -17
  106. package/lib/themes/ang.css +286 -17
  107. package/lib/themes/ang.css.map +1 -1
  108. package/lib/themes/antd-ie11.css +278 -17
  109. package/lib/themes/antd.css +286 -17
  110. package/lib/themes/antd.css.map +1 -1
  111. package/lib/themes/cxd-ie11.css +278 -17
  112. package/lib/themes/cxd.css +286 -17
  113. package/lib/themes/cxd.css.map +1 -1
  114. package/lib/themes/dark-ie11.css +278 -17
  115. package/lib/themes/dark.css +286 -17
  116. package/lib/themes/dark.css.map +1 -1
  117. package/lib/themes/default-ie11.css +278 -17
  118. package/lib/themes/default.css +286 -17
  119. package/lib/themes/default.css.map +1 -1
  120. package/lib/types.d.ts +1 -1
  121. package/lib/types.js.map +1 -1
  122. package/lib/utils/columnsSplit.d.ts +1 -0
  123. package/lib/utils/columnsSplit.js +40 -0
  124. package/lib/utils/columnsSplit.js.map +13 -0
  125. package/lib/utils/debug.d.ts +1 -1
  126. package/lib/utils/debug.js +16 -22
  127. package/lib/utils/debug.js.map +2 -2
  128. package/package.json +1 -1
  129. package/schema.json +237 -29
  130. package/scss/_properties.scss +10 -1
  131. package/scss/components/_barcode.scss +1 -1
  132. package/scss/components/_carousel.scss +1 -0
  133. package/scss/components/_debug.scss +3 -3
  134. package/scss/components/_steps.scss +199 -8
  135. package/scss/components/form/_checks.scss +122 -1
  136. package/scss/components/form/_date.scss +2 -1
  137. package/scss/components/form/_editor.scss +2 -1
  138. package/scss/components/form/_form.scss +16 -0
  139. package/sdk/ang-ie11.css +335 -18
  140. package/sdk/ang.css +343 -18
  141. package/sdk/antd-ie11.css +335 -18
  142. package/sdk/antd.css +343 -18
  143. package/sdk/barcode.js +51 -51
  144. package/sdk/charts.js +14 -14
  145. package/sdk/codemirror.js +7 -7
  146. package/sdk/color-picker.js +65 -65
  147. package/sdk/cropperjs.js +2 -2
  148. package/sdk/cxd-ie11.css +335 -18
  149. package/sdk/cxd.css +343 -18
  150. package/sdk/dark-ie11.css +335 -18
  151. package/sdk/dark.css +343 -18
  152. package/sdk/exceljs.js +1 -1
  153. package/sdk/locale/de-DE.js +13 -0
  154. package/sdk/markdown.js +69 -69
  155. package/sdk/papaparse.js +1 -1
  156. package/sdk/renderers/Form/CityDB.js +1 -1
  157. package/sdk/rest.js +17 -17
  158. package/sdk/rich-text.js +62 -62
  159. package/sdk/sdk-ie11.css +335 -18
  160. package/sdk/sdk.css +343 -18
  161. package/sdk/sdk.js +1289 -1287
  162. package/sdk/thirds/hls.js/hls.js +1 -1
  163. package/sdk/thirds/mpegts.js/mpegts.js +1 -1
  164. package/sdk/tinymce.js +57 -57
  165. package/src/SchemaRenderer.tsx +32 -14
  166. package/src/WithStore.tsx +3 -1
  167. package/src/actions/CmptAction.ts +18 -0
  168. package/src/components/AssociatedSelection.tsx +9 -3
  169. package/src/components/BarCode.tsx +2 -2
  170. package/src/components/Checkbox.tsx +11 -5
  171. package/src/components/DatePicker.tsx +21 -4
  172. package/src/components/DateRangePicker.tsx +295 -6
  173. package/src/components/Radios.tsx +6 -17
  174. package/src/components/Range.tsx +26 -12
  175. package/src/components/Steps.tsx +28 -27
  176. package/src/components/calendar/Calendar.tsx +2 -15
  177. package/src/components/calendar/YearsView.tsx +3 -4
  178. package/src/factory.tsx +16 -0
  179. package/src/locale/de-DE.ts +13 -0
  180. package/src/locale/en-US.ts +13 -0
  181. package/src/locale/zh-CN.ts +13 -0
  182. package/src/renderers/Action.tsx +22 -1
  183. package/src/renderers/CRUD.tsx +22 -4
  184. package/src/renderers/Carousel.tsx +8 -0
  185. package/src/renderers/Form/Checkbox.tsx +11 -2
  186. package/src/renderers/Form/Checkboxes.tsx +106 -23
  187. package/src/renderers/Form/Combo.tsx +2 -3
  188. package/src/renderers/Form/InputCity.tsx +33 -4
  189. package/src/renderers/Form/InputDateRange.tsx +8 -1
  190. package/src/renderers/Form/InputFile.tsx +7 -3
  191. package/src/renderers/Form/InputImage.tsx +7 -3
  192. package/src/renderers/Form/InputRange.tsx +18 -16
  193. package/src/renderers/Form/Item.tsx +1 -0
  194. package/src/renderers/Form/index.tsx +2 -1
  195. package/src/renderers/Form/wrapControl.tsx +1 -1
  196. package/src/renderers/Nav.tsx +1 -1
  197. package/src/renderers/Steps.tsx +14 -0
  198. package/src/renderers/Table/index.tsx +15 -4
  199. package/src/renderers/Tabs.tsx +75 -28
  200. package/src/renderers/Wizard.tsx +154 -93
  201. package/src/store/crud.ts +40 -5
  202. package/src/store/formItem.ts +1 -2
  203. package/src/store/index.ts +20 -0
  204. package/src/store/table.ts +2 -2
  205. package/src/types.ts +3 -1
  206. package/src/utils/columnsSplit.tsx +57 -0
  207. package/src/utils/debug.tsx +17 -24
package/sdk/sdk-ie11.css CHANGED
@@ -34671,11 +34671,12 @@ readers do not read off random characters that represent icons */
34671
34671
  }
34672
34672
 
34673
34673
  .amis-scope .cxd-Carousel-dotsControl .cxd-Carousel-dot {
34674
+ cursor: pointer;
34674
34675
  display: inline-block;
34675
34676
  height: 0.5rem;
34676
34677
  width: 0.5rem;
34677
34678
  border-radius: 0.25rem;
34678
- margin: 0.4375rem 0.25rem;
34679
+ margin: 0.5rem 0.25rem;
34679
34680
  transition-duration: 0s;
34680
34681
  opacity: 0.3;
34681
34682
  }
@@ -35844,6 +35845,10 @@ readers do not read off random characters that represent icons */
35844
35845
  line-height: 2rem;
35845
35846
  }
35846
35847
 
35848
+ .amis-scope .cxd-Steps .cxd-StepsItem-container {
35849
+ position: relative;
35850
+ }
35851
+
35847
35852
  .amis-scope .cxd-Steps .cxd-StepsItem-containerIcon {
35848
35853
  vertical-align: top;
35849
35854
  display: inline-block;
@@ -35893,6 +35898,13 @@ readers do not read off random characters that represent icons */
35893
35898
  background-color: #2468f2;
35894
35899
  }
35895
35900
 
35901
+ .amis-scope .cxd-Steps .cxd-StepsItem-containerWrapper .cxd-StepsItem-body .cxd-StepsItem-ellText {
35902
+ max-width: 9.875rem;
35903
+ overflow: hidden;
35904
+ text-overflow: ellipsis;
35905
+ white-space: nowrap;
35906
+ }
35907
+
35896
35908
  .amis-scope .cxd-Steps .cxd-StepsItem-containerWrapper .cxd-StepsItem-body .cxd-StepsItem-subTitle {
35897
35909
  padding-left: 0.625rem;
35898
35910
  font-size: 0.875rem;
@@ -35902,6 +35914,8 @@ readers do not read off random characters that represent icons */
35902
35914
  .amis-scope .cxd-Steps .cxd-StepsItem-containerWrapper .cxd-StepsItem-body .cxd-StepsItem-description {
35903
35915
  max-width: 8.75rem;
35904
35916
  white-space: nowrap;
35917
+ position: relative;
35918
+ bottom: 0.625rem;
35905
35919
  }
35906
35920
 
35907
35921
  .amis-scope .cxd-Steps .cxd-StepsItem:last-child {
@@ -35919,19 +35933,16 @@ readers do not read off random characters that represent icons */
35919
35933
  .amis-scope .cxd-Steps--vertical .cxd-StepsItem {
35920
35934
  padding: 0.3125rem 0;
35921
35935
  min-height: 75px;
35936
+ overflow: visible;
35922
35937
  }
35923
35938
 
35924
- .amis-scope .cxd-Steps--vertical .cxd-StepsItem-containerIcon > .cxd-StepsItem-icon {
35925
- position: relative;
35926
- }
35927
-
35928
- .amis-scope .cxd-Steps--vertical .cxd-StepsItem-containerIcon > .cxd-StepsItem-icon:after {
35939
+ .amis-scope .cxd-Steps--vertical .cxd-StepsItem-containerIcon:after {
35929
35940
  content: "";
35930
35941
  position: absolute;
35931
35942
  right: 0;
35932
- top: 2.1875rem;
35933
- height: 9999px;
35934
- left: 0.875rem;
35943
+ top: 2rem;
35944
+ height: calc(100% - 23px);
35945
+ left: 0.6875rem;
35935
35946
  width: 1px;
35936
35947
  background-color: #b4bbc5;
35937
35948
  }
@@ -35940,14 +35951,181 @@ readers do not read off random characters that represent icons */
35940
35951
  display: none;
35941
35952
  }
35942
35953
 
35954
+ .amis-scope .cxd-Steps--vertical .cxd-StepsItem-containerTail:after {
35955
+ display: none !important;
35956
+ }
35957
+
35943
35958
  .amis-scope .cxd-Steps--vertical .cxd-StepsItem:last-child {
35944
35959
  flex: none;
35945
35960
  }
35946
35961
 
35947
- .amis-scope .cxd-Steps--vertical .cxd-StepsItem:last-child .cxd-StepsItem-icon:after {
35962
+ .amis-scope .cxd-Steps--vertical .cxd-StepsItem:last-child .cxd-StepsItem-containerIcon:after {
35963
+ display: none;
35964
+ }
35965
+
35966
+ .amis-scope .cxd-Steps--vertical .cxd-StepsItem-ProgressDot .cxd-StepsItem-container {
35967
+ flex-direction: row;
35968
+ }
35969
+
35970
+ .amis-scope .cxd-Steps--vertical .cxd-StepsItem-ProgressDot .cxd-StepsItem-containerTail {
35971
+ display: none;
35972
+ }
35973
+
35974
+ .amis-scope .cxd-Steps--vertical .cxd-StepsItem-ProgressDot .cxd-StepsItem-containerWrapper {
35975
+ width: 25rem;
35976
+ }
35977
+
35978
+ .amis-scope .cxd-Steps--vertical .cxd-StepsItem-ProgressDot .cxd-StepsItem-containerProgressDot {
35979
+ margin-left: 0px;
35980
+ margin-top: 0.625rem;
35981
+ }
35982
+
35983
+ .amis-scope .cxd-Steps--vertical .cxd-StepsItem-ProgressDot .cxd-StepsItem-containerProgressDot:after {
35984
+ content: "";
35985
+ position: absolute;
35986
+ display: inline-block;
35987
+ top: 1.375rem;
35988
+ width: 1px;
35989
+ left: 3px;
35990
+ height: calc(100% - 5px);
35991
+ background-color: #b4bbc5;
35992
+ }
35993
+
35994
+ .amis-scope .cxd-Steps--vertical .cxd-StepsItem-ProgressDot .cxd-StepsItem-title > span {
35995
+ display: inline-block !important;
35996
+ }
35997
+
35998
+ .amis-scope .cxd-Steps--vertical .cxd-StepsItem-ProgressDot .cxd-StepsItem-vertical-ProgressDot {
35999
+ right: 0.625rem;
36000
+ }
36001
+
36002
+ .amis-scope .cxd-Steps--vertical .cxd-StepsItem-ProgressDot .cxd-StepsItem-body {
36003
+ text-align: left !important;
36004
+ }
36005
+
36006
+ .amis-scope .cxd-Steps--vertical .cxd-StepsItem-ProgressDot:last-child .cxd-StepsItem-containerProgressDot:after {
35948
36007
  display: none;
35949
36008
  }
35950
36009
 
36010
+ .amis-scope .cxd-Steps--vertical .is-finish .cxd-StepsItem-containerProgressDot:after {
36011
+ background: #2468f2;
36012
+ }
36013
+
36014
+ .amis-scope .cxd-Steps--Placement-vertical {
36015
+ display: flex;
36016
+ list-style: none;
36017
+ padding: 0;
36018
+ }
36019
+
36020
+ .amis-scope .cxd-Steps--Placement-vertical .cxd-StepsItem {
36021
+ flex: 1;
36022
+ padding: 0;
36023
+ overflow: visible;
36024
+ }
36025
+
36026
+ .amis-scope .cxd-Steps--Placement-vertical .cxd-StepsItem-container {
36027
+ display: flex;
36028
+ flex-direction: column;
36029
+ justify-content: flex-start;
36030
+ }
36031
+
36032
+ .amis-scope .cxd-Steps--Placement-vertical .cxd-StepsItem-containerTail:after {
36033
+ content: "";
36034
+ position: absolute;
36035
+ display: inline-block;
36036
+ top: 1rem;
36037
+ height: 1px;
36038
+ left: 8.125rem;
36039
+ width: calc(100% - 55px);
36040
+ background-color: #b4bbc5;
36041
+ }
36042
+
36043
+ .amis-scope .cxd-Steps--Placement-vertical .cxd-StepsItem-containerIcon {
36044
+ margin-left: 5.625rem;
36045
+ }
36046
+
36047
+ .amis-scope .cxd-Steps--Placement-vertical .cxd-StepsItem-containerWrapper {
36048
+ width: 12.5rem;
36049
+ }
36050
+
36051
+ .amis-scope .cxd-Steps--Placement-vertical .cxd-StepsItem-containerWrapper .cxd-StepsItem-body {
36052
+ text-align: center;
36053
+ }
36054
+
36055
+ .amis-scope .cxd-Steps--Placement-vertical .cxd-StepsItem-containerWrapper .cxd-StepsItem-body .cxd-StepsItem-title {
36056
+ padding: 0 0.625rem;
36057
+ width: 100%;
36058
+ }
36059
+
36060
+ .amis-scope .cxd-Steps--Placement-vertical .cxd-StepsItem-containerWrapper .cxd-StepsItem-body .cxd-StepsItem-title > span {
36061
+ display: block;
36062
+ position: relative;
36063
+ left: 0.625rem;
36064
+ }
36065
+
36066
+ .amis-scope .cxd-Steps--Placement-vertical .cxd-StepsItem-containerWrapper .cxd-StepsItem-body .cxd-StepsItem-title .cxd-StepsItem-subTitle {
36067
+ word-break: break-all;
36068
+ padding: 0 0.625rem;
36069
+ position: relative;
36070
+ left: 0.625rem;
36071
+ }
36072
+
36073
+ .amis-scope .cxd-Steps--Placement-vertical .cxd-StepsItem-containerWrapper .cxd-StepsItem-body .cxd-StepsItem-title:after {
36074
+ display: none;
36075
+ }
36076
+
36077
+ .amis-scope .cxd-Steps--Placement-vertical .cxd-StepsItem-containerWrapper .cxd-StepsItem-body .cxd-StepsItem-description {
36078
+ min-width: 12.5rem;
36079
+ word-break: break-all;
36080
+ padding: 0 0.625rem;
36081
+ }
36082
+
36083
+ .amis-scope .cxd-Steps--Placement-vertical .cxd-StepsItem-containerWrapper .cxd-StepsItem-body .cxd-StepsItem-title.is-success:after {
36084
+ background-color: #2468f2;
36085
+ }
36086
+
36087
+ .amis-scope .cxd-Steps--Placement-vertical .cxd-StepsItem:last-child .cxd-StepsItem-containerTail:after {
36088
+ display: none;
36089
+ }
36090
+
36091
+ .amis-scope .cxd-Steps--Placement-vertical .is-finish .cxd-StepsItem-containerTail:after {
36092
+ background: #2468f2;
36093
+ }
36094
+
36095
+ .amis-scope .cxd-Steps--ProgressDot .cxd-StepsItem-containerTail:after {
36096
+ left: 6.875rem;
36097
+ width: calc(100% - 20px);
36098
+ }
36099
+
36100
+ .amis-scope .cxd-Steps--ProgressDot .cxd-StepsItem-containerProgressDot {
36101
+ margin-top: 0.8125rem;
36102
+ margin-bottom: 0.3125rem;
36103
+ width: 0.5rem;
36104
+ height: 0.5rem;
36105
+ margin-left: 6rem;
36106
+ border: 1px solid #2468f2;
36107
+ border-radius: 100%;
36108
+ }
36109
+
36110
+ .amis-scope .cxd-Steps--ProgressDot .is-finish .cxd-StepsItem-containerTail:after {
36111
+ background: #2468f2;
36112
+ }
36113
+
36114
+ .amis-scope .cxd-Steps--ProgressDot .is-wait .cxd-StepsItem-containerProgressDot {
36115
+ background: #b4bbc5;
36116
+ border: 1px solid #b4bbc5;
36117
+ }
36118
+
36119
+ .amis-scope .cxd-Steps--ProgressDot .is-error .cxd-StepsItem-containerProgressDot {
36120
+ background: #f33e3e;
36121
+ border: 1px solid #f33e3e;
36122
+ }
36123
+
36124
+ .amis-scope .cxd-Steps--ProgressDot .is-process .cxd-StepsItem-containerProgressDot {
36125
+ border: 1px solid #2468f2;
36126
+ background: #2468f2;
36127
+ }
36128
+
35951
36129
  .amis-scope .cxd-Steps .cxd-StepsItem.is-wait .cxd-StepsItem-icon {
35952
36130
  background-color: #fff;
35953
36131
  color: #b4bbc5;
@@ -37292,10 +37470,121 @@ readers do not read off random characters that represent icons */
37292
37470
  border-color: transparent;
37293
37471
  transition: width 0s, height 0s, transform 0s;
37294
37472
  border-width: 0 0 0.125rem 0.125rem;
37295
- transform: translate(-50%, -60%) rotate(-40deg);
37473
+ transform: translate(-50%, -90%) rotate(-40deg);
37474
+ border-style: solid;
37475
+ }
37476
+
37477
+ .amis-scope .cxd-Checkbox--partial.cxd-Checkbox--checkbox input {
37478
+ margin-left: calc(0.875rem * -1);
37479
+ }
37480
+
37481
+ .amis-scope .cxd-Checkbox--partial.cxd-Checkbox--checkbox input + i {
37482
+ border-color: #2468f2;
37483
+ }
37484
+
37485
+ .amis-scope .cxd-Checkbox--partial.cxd-Checkbox--checkbox input + i:before {
37486
+ width: 0.5rem;
37487
+ height: 0.5rem;
37488
+ background: #2468f2;
37489
+ }
37490
+
37491
+ .amis-scope .cxd-Checkbox--partial.cxd-Checkbox--checkbox input[disabled] + i {
37492
+ border-color: #ebebeb;
37493
+ }
37494
+
37495
+ .amis-scope .cxd-Checkbox--partial.cxd-Checkbox--checkbox input[disabled] + i:before {
37496
+ width: 0.5rem;
37497
+ height: 0.5rem;
37498
+ background: #D4D6D9;
37499
+ }
37500
+
37501
+ .amis-scope .cxd-Checkbox--partial.cxd-Checkbox--checkbox input:checked[disabled] + i {
37502
+ width: 0.5rem;
37503
+ height: 0.5rem;
37504
+ background: #cccccc;
37505
+ }
37506
+
37507
+ .amis-scope .cxd-Checkbox--button.cxd-Checkbox--checkbox {
37508
+ text-align: center;
37509
+ height: 2rem;
37510
+ line-height: 1.875rem;
37511
+ padding-left: 0.75rem;
37512
+ padding-right: 0.75rem;
37513
+ font-size: 0.75rem;
37514
+ border: 0.0625rem solid;
37515
+ cursor: pointer;
37516
+ position: relative;
37517
+ display: inline-block;
37518
+ background-color: #fff;
37519
+ border-color: #e8e9eb;
37520
+ margin-right: 0;
37521
+ }
37522
+
37523
+ .amis-scope .cxd-Checkbox--button.cxd-Checkbox--checkbox:hover:not(:disabled) {
37524
+ color: #2468f2;
37525
+ }
37526
+
37527
+ .amis-scope .cxd-Checkbox--button.cxd-Checkbox--checkbox input:checked + i {
37528
+ background: transparent;
37529
+ top: 0;
37530
+ left: 0;
37531
+ width: 0;
37532
+ height: 0;
37533
+ border-width: 0.5rem;
37534
+ border-color: #2468f2 transparent transparent #2468f2;
37535
+ border-radius: 0;
37536
+ }
37537
+
37538
+ .amis-scope .cxd-Checkbox--button.cxd-Checkbox--checkbox input:checked + i:before {
37539
+ position: absolute;
37540
+ top: 0;
37541
+ left: 0;
37542
+ width: 0.5rem;
37543
+ height: 0.375rem;
37544
+ transform: translate(-80%, -120%) rotate(-50deg);
37545
+ background: transparent;
37546
+ }
37547
+
37548
+ .amis-scope .cxd-Checkbox--button.cxd-Checkbox--checkbox input[disabled] + i {
37549
+ border-color: #ebebeb;
37550
+ background: transparent;
37551
+ }
37552
+
37553
+ .amis-scope .cxd-Checkbox--button.cxd-Checkbox--checkbox input[disabled] + i:before {
37554
+ background: transparent;
37555
+ }
37556
+
37557
+ .amis-scope .cxd-Checkbox--button.cxd-Checkbox--checkbox input:checked[disabled] + i {
37558
+ background: transparent;
37559
+ border-width: 0.5rem;
37560
+ border-color: #2468f2 transparent transparent #2468f2;
37561
+ }
37562
+
37563
+ .amis-scope .cxd-Checkbox--button.cxd-Checkbox--checkbox > i {
37564
+ position: absolute;
37565
+ top: 0;
37566
+ left: 0;
37567
+ margin-left: 0;
37568
+ border: 0;
37296
37569
  border-style: solid;
37297
37570
  }
37298
37571
 
37572
+ .amis-scope .cxd-Checkbox--button.cxd-Checkbox--checkbox > i + span {
37573
+ max-width: 6.25rem;
37574
+ text-overflow: ellipsis;
37575
+ white-space: nowrap;
37576
+ overflow: hidden;
37577
+ }
37578
+
37579
+ .amis-scope .cxd-Checkbox--button--checked.cxd-Checkbox--checkbox {
37580
+ border-color: #2468f2;
37581
+ color: #2468f2;
37582
+ }
37583
+
37584
+ .amis-scope .cxd-Checkbox--button--disabled--unchecked.cxd-Checkbox--checkbox {
37585
+ background: #F2F3F3;
37586
+ }
37587
+
37299
37588
  .amis-scope .cxd-Checkbox--radio {
37300
37589
  padding-left: 1rem;
37301
37590
  }
@@ -37397,12 +37686,24 @@ readers do not read off random characters that represent icons */
37397
37686
  );
37398
37687
  }
37399
37688
 
37689
+ .amis-scope .cxd-RadiosControl .cxd-Checkbox--button,
37690
+ .amis-scope .cxd-CheckboxesControl .cxd-Checkbox--button {
37691
+ margin-bottom: 0;
37692
+ }
37693
+
37400
37694
  .amis-scope .cxd-RadiosControl.is-inline .cxd-Checkbox,
37401
37695
  .amis-scope .cxd-CheckboxesControl.is-inline .cxd-Checkbox {
37402
37696
  display: inline-block;
37403
37697
  margin-right: 1rem;
37404
37698
  }
37405
37699
 
37700
+ .amis-scope .cxd-RadiosControl.is-inline .cxd-Checkbox--button,
37701
+ .amis-scope .cxd-CheckboxesControl.is-inline .cxd-Checkbox--button {
37702
+ display: inline-block;
37703
+ margin-right: 0;
37704
+ margin-bottom: 0;
37705
+ }
37706
+
37406
37707
  .amis-scope .cxd-RadiosControl-group:not(:first-child),
37407
37708
  .amis-scope .cxd-CheckboxesControl-group:not(:first-child) {
37408
37709
  margin-top: 0.625rem;
@@ -39016,7 +39317,7 @@ readers do not read off random characters that represent icons */
39016
39317
  border-radius: 0.25rem;
39017
39318
  }
39018
39319
 
39019
- .amis-scope .cxd-DatePicker input {
39320
+ .amis-scope .cxd-DatePicker-input {
39020
39321
  display: inline-block;
39021
39322
  width: 100%;
39022
39323
  background: none;
@@ -39024,7 +39325,7 @@ readers do not read off random characters that represent icons */
39024
39325
  border: 0;
39025
39326
  }
39026
39327
 
39027
- .amis-scope .cxd-DatePicker input:focus {
39328
+ .amis-scope .cxd-DatePicker-input:focus {
39028
39329
  border: none;
39029
39330
  outline: none;
39030
39331
  box-sizing: none;
@@ -40386,7 +40687,7 @@ readers do not read off random characters that represent icons */
40386
40687
 
40387
40688
  .amis-scope .cxd-EditorControl > .cxd-MonacoEditor,
40388
40689
  .amis-scope .cxd-EditorControl > .cxd-MonacoEditor > .monaco-diff-editor {
40389
- min-height: 12.375rem;
40690
+ min-height: inherit;
40390
40691
  }
40391
40692
 
40392
40693
  .amis-scope .cxd-EditorControl.is-error {
@@ -43105,6 +43406,23 @@ readers do not read off random characters that represent icons */
43105
43406
  white-space: normal;
43106
43407
  }
43107
43408
 
43409
+ .amis-scope .cxd-Form-item--horizontal-justify {
43410
+ justify-content: space-between;
43411
+ }
43412
+
43413
+ .amis-scope .cxd-Form-item--horizontal-justify > .cxd-Form-label {
43414
+ text-align: left;
43415
+ white-space: var(--Form--horizontal-justify-label-whiteSpace);
43416
+ }
43417
+
43418
+ .amis-scope .cxd-Form-item--horizontal-justify > .cxd-Form-value {
43419
+ text-align: right;
43420
+ }
43421
+
43422
+ .amis-scope .cxd-Form-item--horizontal-justify > .cxd-Form-value > * {
43423
+ text-align: initial;
43424
+ }
43425
+
43108
43426
  .amis-scope .cxd-Form-item--normal > .cxd-Form-label {
43109
43427
  display: block;
43110
43428
  }
@@ -44580,7 +44898,7 @@ readers do not read off random characters that represent icons */
44580
44898
  border-radius: 50%;
44581
44899
  }
44582
44900
 
44583
- .amis-scope .cxd-BarCode > svg {
44901
+ .amis-scope .cxd-BarCode > img {
44584
44902
  display: block;
44585
44903
  margin: 0 auto;
44586
44904
  }
@@ -44656,9 +44974,8 @@ readers do not read off random characters that represent icons */
44656
44974
  right: 0;
44657
44975
  width: 24px;
44658
44976
  height: 48px;
44659
- box-shadow: rgba(0, 0, 0, 0.24) -2px 0px 4px 0px;
44660
- border-top-left-radius: 12px;
44661
- border-bottom-left-radius: 12px;
44977
+ box-shadow: 0 4px 6px 0 rgba(8, 14, 26, 0.04), 0 1px 10px 0 rgba(8, 14, 26, 0.05), 0 2px 4px -1px rgba(8, 14, 26, 0.06);
44978
+ border-radius: 0.25rem 0 0 0.25rem;
44662
44979
  padding-top: 14px;
44663
44980
  padding-left: 6px;
44664
44981
  cursor: pointer;