amis 1.5.3 → 1.5.4

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 (119) hide show
  1. package/README.md +5 -0
  2. package/lib/components/Card.d.ts +96 -0
  3. package/lib/components/Card.js +85 -0
  4. package/lib/components/Card.js.map +13 -0
  5. package/lib/components/DatePicker.d.ts +85 -84
  6. package/lib/components/DatePicker.js.map +2 -2
  7. package/lib/components/DateRangePicker.d.ts +84 -84
  8. package/lib/components/MonthRangePicker.d.ts +84 -84
  9. package/lib/components/Picker.d.ts +503 -0
  10. package/lib/components/Picker.js +65 -0
  11. package/lib/components/Picker.js.map +13 -0
  12. package/lib/components/PickerColumn.d.ts +29 -459
  13. package/lib/components/PickerColumn.js +35 -44
  14. package/lib/components/PickerColumn.js.map +2 -2
  15. package/lib/components/Select.d.ts +238 -238
  16. package/lib/components/Select.js +9 -2
  17. package/lib/components/Select.js.map +2 -2
  18. package/lib/components/Selection.js +1 -4
  19. package/lib/components/Selection.js.map +2 -2
  20. package/lib/components/Switch.d.ts +6 -6
  21. package/lib/components/Switch.js.map +2 -2
  22. package/lib/components/calendar/Calendar.js +15 -0
  23. package/lib/components/calendar/Calendar.js.map +2 -2
  24. package/lib/components/calendar/DaysView.js +4 -4
  25. package/lib/components/calendar/DaysView.js.map +2 -2
  26. package/lib/components/calendar/TimeView.d.ts +10 -0
  27. package/lib/components/calendar/TimeView.js +55 -2
  28. package/lib/components/calendar/TimeView.js.map +2 -2
  29. package/lib/components/calendar/YearsView.d.ts +9 -0
  30. package/lib/components/calendar/YearsView.js +19 -0
  31. package/lib/components/calendar/YearsView.js.map +2 -2
  32. package/lib/index.js +1 -1
  33. package/lib/renderers/Card.d.ts +81 -13
  34. package/lib/renderers/Card.js +178 -81
  35. package/lib/renderers/Card.js.map +2 -2
  36. package/lib/renderers/Form/DiffEditor.d.ts +145 -37
  37. package/lib/renderers/Form/Editor.d.ts +144 -36
  38. package/lib/renderers/Form/Formula.js +5 -5
  39. package/lib/renderers/Form/Formula.js.map +2 -2
  40. package/lib/renderers/Form/InputCity.d.ts +84 -84
  41. package/lib/renderers/Form/InputFile.js +2 -2
  42. package/lib/renderers/Form/InputFile.js.map +2 -2
  43. package/lib/renderers/Form/index.js +10 -0
  44. package/lib/renderers/Form/index.js.map +2 -2
  45. package/lib/renderers/Form/wrapControl.js +3 -2
  46. package/lib/renderers/Form/wrapControl.js.map +2 -2
  47. package/lib/store/combo.d.ts +160 -40
  48. package/lib/store/form.d.ts +64 -16
  49. package/lib/store/formItem.d.ts +4 -2
  50. package/lib/store/formItem.js +11 -6
  51. package/lib/store/formItem.js.map +2 -2
  52. package/lib/store/table.d.ts +128 -32
  53. package/lib/themes/ang-ie11.css +177 -30
  54. package/lib/themes/ang.css +177 -30
  55. package/lib/themes/ang.css.map +1 -1
  56. package/lib/themes/antd-ie11.css +177 -30
  57. package/lib/themes/antd.css +177 -30
  58. package/lib/themes/antd.css.map +1 -1
  59. package/lib/themes/cxd-ie11.css +177 -30
  60. package/lib/themes/cxd.css +177 -30
  61. package/lib/themes/cxd.css.map +1 -1
  62. package/lib/themes/dark-ie11.css +177 -30
  63. package/lib/themes/dark.css +177 -30
  64. package/lib/themes/dark.css.map +1 -1
  65. package/lib/themes/default.css +177 -30
  66. package/lib/themes/default.css.map +1 -1
  67. package/lib/utils/helper.d.ts +7 -0
  68. package/lib/utils/helper.js +33 -1
  69. package/lib/utils/helper.js.map +2 -2
  70. package/package.json +2 -2
  71. package/schema.json +157 -13
  72. package/scss/_properties.scss +13 -2
  73. package/scss/components/_card.scss +155 -15
  74. package/scss/components/_nav.scss +1 -1
  75. package/scss/components/_picker-columns.scss +20 -14
  76. package/scss/components/form/_file.scss +2 -2
  77. package/scss/components/form/_selection.scss +4 -0
  78. package/scss/components/form/_switch.scss +6 -0
  79. package/sdk/ang-ie11.css +214 -40
  80. package/sdk/ang.css +216 -32
  81. package/sdk/antd-ie11.css +214 -40
  82. package/sdk/antd.css +216 -32
  83. package/sdk/charts.js +14 -14
  84. package/sdk/color-picker.js +65 -65
  85. package/sdk/cropperjs.js +2 -2
  86. package/sdk/cxd-ie11.css +206 -32
  87. package/sdk/cxd.css +216 -32
  88. package/sdk/dark-ie11.css +214 -40
  89. package/sdk/dark.css +216 -32
  90. package/sdk/exceljs.js +1 -1
  91. package/sdk/markdown.js +69 -69
  92. package/sdk/papaparse.js +1 -1
  93. package/sdk/renderers/Form/CityDB.js +1 -1
  94. package/sdk/rest.js +18 -18
  95. package/sdk/rich-text.js +62 -62
  96. package/sdk/sdk-ie11.css +206 -32
  97. package/sdk/sdk.css +216 -32
  98. package/sdk/sdk.js +1190 -1186
  99. package/sdk/thirds/hls.js/hls.js +1 -1
  100. package/sdk/thirds/mpegts.js/mpegts.js +1 -1
  101. package/sdk/tinymce.js +57 -57
  102. package/src/components/Card.tsx +203 -0
  103. package/src/components/DatePicker.tsx +3 -0
  104. package/src/components/Picker.tsx +145 -0
  105. package/src/components/PickerColumn.tsx +58 -95
  106. package/src/components/Select.tsx +17 -12
  107. package/src/components/Selection.tsx +1 -4
  108. package/src/components/Switch.tsx +7 -7
  109. package/src/components/calendar/Calendar.tsx +18 -0
  110. package/src/components/calendar/DaysView.tsx +6 -4
  111. package/src/components/calendar/TimeView.tsx +80 -5
  112. package/src/components/calendar/YearsView.tsx +44 -1
  113. package/src/renderers/Card.tsx +299 -191
  114. package/src/renderers/Form/Formula.tsx +7 -5
  115. package/src/renderers/Form/InputFile.tsx +6 -2
  116. package/src/renderers/Form/index.tsx +12 -0
  117. package/src/renderers/Form/wrapControl.tsx +5 -2
  118. package/src/store/formItem.ts +12 -6
  119. package/src/utils/helper.ts +34 -0
@@ -53,6 +53,7 @@
53
53
  --borderWidth: 0.0625rem;
54
54
  --fontWeightNormal: 400;
55
55
  --fontWeightBase: var(--fontWeightNormal);
56
+ --fontWeightMd: 500;
56
57
  --fontWeightBold: 700;
57
58
  --background: var(--white);
58
59
  --code-color: var(--danger);
@@ -370,6 +371,14 @@
370
371
  --Calendar-shortcuts-bg: transparent;
371
372
  --Calendar-shortcuts-height: 1.875rem;
372
373
  --Calendar-wLabel-color: #999;
374
+ --Calendar-icon-bottom: -0.25rem;
375
+ --Calendar-icon-width: 0.625rem;
376
+ --Calendar-icon-height: 0.625rem;
377
+ --Calendar-borderWidth: 0.0625rem;
378
+ --Calendar-rdt-day: 6.25rem;
379
+ --Calendar-schedule-content-padding: 0 0.25rem;
380
+ --Calendar-schedule-content-height: 1.25rem;
381
+ --Calendar-schedule-content-color: #fff;
373
382
  --Card-actions-borderColor: #dfe2e6;
374
383
  --Card-actions-fontSize: var(--fontSizeBase);
375
384
  --Card-actions-onChecked-onHover-bg: #c2ecf9;
@@ -380,6 +389,7 @@
380
389
  --Card-borderColor: var(--borderColor);
381
390
  --Card-borderRadius: var(--borderRadius);
382
391
  --Card-borderWidth: var(--borderWidth);
392
+ --Card-secondary-color: #83868c;
383
393
  --Card-onChecked-bg: #d9f3fb;
384
394
  --Card-onChecked-borderColor: #abe4f6;
385
395
  --Card-onChecked-color: #20b9e8;
@@ -993,8 +1003,8 @@
993
1003
  --PickerColumns-title-lineHeight: 1.5;
994
1004
  --PickerColumns-action-padding: 0 var(--gap-sm);
995
1005
  --PickerColumns-action-fontSize: var(--fontSizeMd);
996
- --PickerColumns-confirmAction-color: var(--Button--info-bg);
997
- --PickerColumns-cancelAction-color: var(--Button--light-bg);
1006
+ --PickerColumns-confirmAction-color: #425278;
1007
+ --PickerColumns-cancelAction-color: #8191b9;
998
1008
  --PickerColumns-option-fontSize: var(--fontSizeLg);
999
1009
  --PickerColumns-optionText-color: var(--text-color);
1000
1010
  --PickerColumns-optionDisabled-opacity: 0.3;
@@ -4924,13 +4934,9 @@ input[type=button].cxd-Button--block {
4924
4934
  position: relative;
4925
4935
  background-color: var(--PickerColumns-bg);
4926
4936
  user-select: none;
4927
- }
4928
- .cxd-PickerColumns-popOver {
4929
- position: fixed;
4930
- bottom: 0;
4931
- left: 0;
4932
- width: 100%;
4933
- padding: 0 var(--gap-sm);
4937
+ flex: 1;
4938
+ overflow: hidden;
4939
+ font-size: var(--PickerColumns-option-fontSize);
4934
4940
  }
4935
4941
  .cxd-PickerColumns-toolbar {
4936
4942
  display: flex;
@@ -4949,6 +4955,9 @@ input[type=button].cxd-Button--block {
4949
4955
  .cxd-PickerColumns-cancel:active, .cxd-PickerColumns-confirm:active {
4950
4956
  opacity: 0.7;
4951
4957
  }
4958
+ .cxd-PickerColumns-cancel:hover, .cxd-PickerColumns-confirm:hover {
4959
+ background-color: none !important;
4960
+ }
4952
4961
  .cxd-PickerColumns-confirm {
4953
4962
  color: var(--PickerColumns-confirmAction-color);
4954
4963
  }
@@ -4990,6 +4999,17 @@ input[type=button].cxd-Button--block {
4990
4999
  transform: translateY(-50%);
4991
5000
  pointer-events: none;
4992
5001
  }
5002
+ .cxd-PickerColumns-frame::after {
5003
+ position: absolute;
5004
+ content: "";
5005
+ border-bottom: 1px solid var(--borderColor);
5006
+ border-top: 1px solid var(--borderColor);
5007
+ top: -50%;
5008
+ right: -50%;
5009
+ left: -50%;
5010
+ bottom: -50%;
5011
+ transform: scale(0.5);
5012
+ }
4993
5013
  .cxd-PickerColumns-mask {
4994
5014
  position: absolute;
4995
5015
  top: 0;
@@ -5003,11 +5023,6 @@ input[type=button].cxd-Button--block {
5003
5023
  transform: translateZ(0);
5004
5024
  pointer-events: none;
5005
5025
  }
5006
- .cxd-PickerColumns-column {
5007
- flex: 1;
5008
- overflow: hidden;
5009
- font-size: var(--PickerColumns-option-fontSize);
5010
- }
5011
5026
  .cxd-PickerColumns-columnWrapper {
5012
5027
  margin: 0;
5013
5028
  padding: 0;
@@ -5973,7 +5988,7 @@ input[type=button].cxd-Button--block {
5973
5988
  .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item.active > a, .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item.is-active > .cxd-Nav-item-atcions, .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item.is-active > a, .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item.active > .cxd-Badge > a, .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item.is-active > .cxd-Badge > .cxd-Nav-item-atcions, .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item.is-active > .cxd-Badge > a, .cxd-Nav .cxd-Nav-list--stacked .cxd-Badge.active > a, .cxd-Nav .cxd-Nav-list--stacked .cxd-Badge.is-active > .cxd-Nav-item-atcions, .cxd-Nav .cxd-Nav-list--stacked .cxd-Badge.is-active > a, .cxd-Nav .cxd-Nav-list--stacked .cxd-Badge.active > .cxd-Badge > a, .cxd-Nav .cxd-Nav-list--stacked .cxd-Badge.is-active > .cxd-Badge > .cxd-Nav-item-atcions, .cxd-Nav .cxd-Nav-list--stacked .cxd-Badge.is-active > .cxd-Badge > a {
5974
5989
  color: var(--Nav-item-onActive-color);
5975
5990
  position: relative;
5976
- background: var(--Nav-item-onActive-bg);
5991
+ background: var(--Nav-item-onActive-bg) !important;
5977
5992
  }
5978
5993
  .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item.active > a::after, .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item.is-active > .cxd-Nav-item-atcions::after, .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item.is-active > a::after, .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item.active > .cxd-Badge > a::after, .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item.is-active > .cxd-Badge > .cxd-Nav-item-atcions::after, .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item.is-active > .cxd-Badge > a::after, .cxd-Nav .cxd-Nav-list--stacked .cxd-Badge.active > a::after, .cxd-Nav .cxd-Nav-list--stacked .cxd-Badge.is-active > .cxd-Nav-item-atcions::after, .cxd-Nav .cxd-Nav-list--stacked .cxd-Badge.is-active > a::after, .cxd-Nav .cxd-Nav-list--stacked .cxd-Badge.active > .cxd-Badge > a::after, .cxd-Nav .cxd-Nav-list--stacked .cxd-Badge.is-active > .cxd-Badge > .cxd-Nav-item-atcions::after, .cxd-Nav .cxd-Nav-list--stacked .cxd-Badge.is-active > .cxd-Badge > a::after {
5979
5994
  transform: scaleY(1);
@@ -9670,8 +9685,9 @@ input[type=button].cxd-Button--block {
9670
9685
  cursor: pointer;
9671
9686
  }
9672
9687
  .cxd-Card-title {
9673
- color: var(--text--loud-color);
9688
+ color: var(--text-color);
9674
9689
  font-size: var(--fontSizeMd);
9690
+ font-weight: var(--fontWeightMd);
9675
9691
  white-space: nowrap;
9676
9692
  overflow: hidden;
9677
9693
  text-overflow: ellipsis;
@@ -9689,14 +9705,13 @@ input[type=button].cxd-Button--block {
9689
9705
  margin-top: var(--gap-xs);
9690
9706
  }
9691
9707
  .cxd-Card-dragBtn {
9708
+ display: inline-block;
9692
9709
  cursor: pointer;
9693
- float: right;
9694
- margin: var(--gap-sm);
9710
+ padding: 0 var(--gap-sm);
9695
9711
  }
9696
9712
  .cxd-Card-heading {
9697
9713
  display: flex;
9698
- flex-direction: row;
9699
- padding: var(--gap-sm) var(--gap-base);
9714
+ padding: var(--gap-md);
9700
9715
  flex: 1 0 auto;
9701
9716
  }
9702
9717
  .cxd-Card-avtar {
@@ -9720,17 +9735,19 @@ input[type=button].cxd-Button--block {
9720
9735
  float: left;
9721
9736
  margin-right: var(--gap-base);
9722
9737
  font-size: var(--fontSizeXl);
9723
- text-transform: uppercase;
9738
+ text-transform: uppercase();
9724
9739
  }
9725
9740
  .cxd-Card-meta {
9726
9741
  display: block;
9727
9742
  flex-grow: 1;
9728
9743
  height: 100%;
9729
9744
  position: relative;
9730
- margin-right: var(--gap-md);
9745
+ }
9746
+ .cxd-Card-meta + .cxd-Card-toolbar {
9747
+ margin-left: var(--gap-md);
9731
9748
  }
9732
9749
  .cxd-Card-toolbar {
9733
- margin-right: calc(-1 * var(--gap-base));
9750
+ line-height: normal;
9734
9751
  text-align: right;
9735
9752
  }
9736
9753
  .cxd-Card-highlight {
@@ -9739,16 +9756,14 @@ input[type=button].cxd-Button--block {
9739
9756
  height: 0.5rem;
9740
9757
  border-radius: 100%;
9741
9758
  display: inline-block;
9742
- position: absolute;
9743
- top: var(--gap-xs);
9744
- right: 0.125rem;
9759
+ margin: 0 var(--gap-sm);
9745
9760
  }
9746
9761
  .cxd-Card-body {
9747
- padding: var(--gap-base);
9762
+ padding: var(--gap-md);
9748
9763
  flex: 1 0 auto;
9749
9764
  }
9750
9765
  .cxd-Card-heading + .cxd-Card-body {
9751
- padding-top: var(--gap-xs);
9766
+ padding-top: 0;
9752
9767
  }
9753
9768
  .cxd-Card-field {
9754
9769
  position: relative;
@@ -9773,6 +9788,7 @@ input[type=button].cxd-Button--block {
9773
9788
  flex-direction: row;
9774
9789
  width: 100%;
9775
9790
  table-layout: fixed;
9791
+ white-space: nowrap;
9776
9792
  }
9777
9793
  .cxd-Card-actions > a {
9778
9794
  background: transparent;
@@ -9840,6 +9856,127 @@ input[type=button].cxd-Button--block {
9840
9856
  .is-dragging > .cxd-Card {
9841
9857
  opacity: var(--Card-onDragging-opacity);
9842
9858
  }
9859
+ .cxd-Card-footer-wrapper {
9860
+ display: flex;
9861
+ align-items: center;
9862
+ justify-content: space-between;
9863
+ }
9864
+ .cxd-Card-actions-wrapper {
9865
+ flex: 1;
9866
+ display: flex;
9867
+ align-items: center;
9868
+ justify-content: flex-end;
9869
+ flex-wrap: wrap;
9870
+ }
9871
+ .cxd-Card-checkbox {
9872
+ margin: 0 var(--gap-sm) !important;
9873
+ }
9874
+ .cxd-Card-secondary {
9875
+ max-width: 12.5rem;
9876
+ color: var(--Card-secondary-color);
9877
+ padding: 0 var(--gap-md);
9878
+ font-size: var(--fontSizeMd);
9879
+ font-weight: var(--fontWeightBase);
9880
+ white-space: nowrap;
9881
+ overflow: hidden;
9882
+ text-overflow: ellipsis;
9883
+ }
9884
+ .cxd-Card-secondary + .cxd-Card-actions-wrapper .cxd-Card-actions {
9885
+ margin-left: unset;
9886
+ border: none;
9887
+ width: unset;
9888
+ }
9889
+ .cxd-Card-secondary + .cxd-Card-actions-wrapper .cxd-Card-actions > a {
9890
+ border: none;
9891
+ }
9892
+ .cxd-Card-multiMedia--top .cxd-Card-actions-wrapper .cxd-Card-actions, .cxd-Card-multiMedia--bottom .cxd-Card-actions-wrapper .cxd-Card-actions, .cxd-Card-multiMedia--left .cxd-Card-actions-wrapper .cxd-Card-actions, .cxd-Card-multiMedia--right .cxd-Card-actions-wrapper .cxd-Card-actions {
9893
+ margin-left: unset;
9894
+ border: none;
9895
+ width: unset;
9896
+ }
9897
+ .cxd-Card-multiMedia--top .cxd-Card-actions-wrapper .cxd-Card-actions > a, .cxd-Card-multiMedia--bottom .cxd-Card-actions-wrapper .cxd-Card-actions > a, .cxd-Card-multiMedia--left .cxd-Card-actions-wrapper .cxd-Card-actions > a, .cxd-Card-multiMedia--right .cxd-Card-actions-wrapper .cxd-Card-actions > a {
9898
+ border: none;
9899
+ }
9900
+ .cxd-Card-multiMedia--top {
9901
+ display: block;
9902
+ }
9903
+ .cxd-Card-multiMedia--top .cxd-Card-multiMedia-img {
9904
+ border-bottom-left-radius: unset;
9905
+ border-bottom-right-radius: unset;
9906
+ }
9907
+ .cxd-Card-multiMedia--bottom {
9908
+ display: flex;
9909
+ flex-direction: column-reverse;
9910
+ }
9911
+ .cxd-Card-multiMedia--bottom .cxd-Card-actions {
9912
+ border-bottom: var(--Card-borderWidth) solid var(--Card-actions-borderColor);
9913
+ }
9914
+ .cxd-Card-multiMedia--bottom .cxd-Card-multiMedia-img {
9915
+ border-top-left-radius: unset;
9916
+ border-top-right-radius: unset;
9917
+ }
9918
+ .cxd-Card-multiMedia--top .cxd-Card-body, .cxd-Card-multiMedia--bottom .cxd-Card-body {
9919
+ padding-bottom: var(--gap-md);
9920
+ }
9921
+ .cxd-Card-multiMedia--left {
9922
+ display: flex;
9923
+ align-items: center;
9924
+ }
9925
+ .cxd-Card-multiMedia--left .cxd-Card-actions {
9926
+ margin-left: var(--gap-md);
9927
+ border-left: var(--Card-borderWidth) solid var(--Card-actions-borderColor);
9928
+ }
9929
+ .cxd-Card-multiMedia--left .cxd-Card-multiMedia-img,
9930
+ .cxd-Card-multiMedia--left .cxd-Card-multiMedia-video {
9931
+ margin: var(--gap-md) 0 var(--gap-md) var(--gap-md);
9932
+ }
9933
+ .cxd-Card-multiMedia--right {
9934
+ display: flex;
9935
+ align-items: center;
9936
+ justify-content: space-between;
9937
+ flex-direction: row-reverse;
9938
+ }
9939
+ .cxd-Card-multiMedia--right .cxd-Card-actions {
9940
+ margin-right: var(--gap-md);
9941
+ border-right: var(--Card-borderWidth) solid var(--Card-actions-borderColor);
9942
+ }
9943
+ .cxd-Card-multiMedia--right .cxd-Card-multiMedia-img,
9944
+ .cxd-Card-multiMedia--right .cxd-Card-multiMedia-video {
9945
+ margin: var(--gap-md) var(--gap-md) var(--gap-md) 0;
9946
+ }
9947
+ .cxd-Card-multiMedia-flex {
9948
+ flex: 1;
9949
+ display: flex;
9950
+ flex-direction: column;
9951
+ justify-content: center;
9952
+ }
9953
+ .cxd-Card-multiMedia-img {
9954
+ display: block;
9955
+ width: 100%;
9956
+ height: auto;
9957
+ object-fit: cover;
9958
+ border-radius: var(--Card-borderRadius);
9959
+ }
9960
+ .cxd-Card-multiMedia-video {
9961
+ width: 11.25rem;
9962
+ height: 7.5rem;
9963
+ }
9964
+ .cxd-Card-multiMedia-video .cxd-Video {
9965
+ width: 100%;
9966
+ height: 100%;
9967
+ min-width: unset;
9968
+ border-radius: var(--Card-borderRadius);
9969
+ overflow: hidden;
9970
+ }
9971
+ .cxd-Card-multiMedia-video .cxd-Video .cxd-Video-player {
9972
+ width: 100%;
9973
+ height: 100%;
9974
+ }
9975
+ .cxd-Card-multiMedia-video .cxd-Video .cxd-Video-player .video-react {
9976
+ width: 100%;
9977
+ height: 100%;
9978
+ padding-top: unset !important;
9979
+ }
9843
9980
 
9844
9981
  .cxd-Field-quickEditBtn {
9845
9982
  color: var(--QuickEdit-iconColor);
@@ -12505,6 +12642,11 @@ fieldset.cxd-Collapse--lg:after {
12505
12642
  margin-right: var(--Checkbox-gap);
12506
12643
  }
12507
12644
 
12645
+ .cxd-GroupedSelection {
12646
+ max-height: 18.75rem;
12647
+ overflow: auto;
12648
+ user-select: none;
12649
+ }
12508
12650
  .cxd-GroupedSelection-group:not(:first-child) > .cxd-GroupedSelection-itemLabel {
12509
12651
  border-top: 0.0625rem solid var(--ListMenu-divider-color);
12510
12652
  }
@@ -12815,6 +12957,11 @@ fieldset.cxd-Collapse--lg:after {
12815
12957
  font-weight: bold;
12816
12958
  transition: all var(--animation-duration);
12817
12959
  }
12960
+ .cxd-Switch .text > svg {
12961
+ width: var(--fontSizeSm);
12962
+ height: var(--fontSizeSm);
12963
+ margin-top: calc((var(--Switch-height) - var(--fontSizeSm)) / 2);
12964
+ }
12818
12965
  .cxd-Switch .slider:before {
12819
12966
  content: "";
12820
12967
  position: absolute;
@@ -14539,15 +14686,15 @@ td.rdtQuarter.rdtDisabled > span {
14539
14686
  outline: none;
14540
14687
  }
14541
14688
  .cxd-FileControl-selectBtn {
14542
- display: flex;
14689
+ display: inline-flex;
14543
14690
  align-items: center;
14691
+ margin-right: 10px;
14544
14692
  }
14545
14693
  .cxd-FileControl-selectBtn > svg {
14546
14694
  width: 0.875rem;
14547
14695
  height: 0.875rem;
14548
14696
  }
14549
14697
  .cxd-FileControl-description {
14550
- margin-left: 10px;
14551
14698
  color: #999;
14552
14699
  font-size: 12px;
14553
14700
  }
@@ -53,6 +53,7 @@
53
53
  --borderWidth: 0.0625rem;
54
54
  --fontWeightNormal: 400;
55
55
  --fontWeightBase: var(--fontWeightNormal);
56
+ --fontWeightMd: 500;
56
57
  --fontWeightBold: 700;
57
58
  --background: var(--white);
58
59
  --code-color: var(--danger);
@@ -370,6 +371,14 @@
370
371
  --Calendar-shortcuts-bg: transparent;
371
372
  --Calendar-shortcuts-height: 1.875rem;
372
373
  --Calendar-wLabel-color: #999;
374
+ --Calendar-icon-bottom: -0.25rem;
375
+ --Calendar-icon-width: 0.625rem;
376
+ --Calendar-icon-height: 0.625rem;
377
+ --Calendar-borderWidth: 0.0625rem;
378
+ --Calendar-rdt-day: 6.25rem;
379
+ --Calendar-schedule-content-padding: 0 0.25rem;
380
+ --Calendar-schedule-content-height: 1.25rem;
381
+ --Calendar-schedule-content-color: #fff;
373
382
  --Card-actions-borderColor: #dfe2e6;
374
383
  --Card-actions-fontSize: var(--fontSizeBase);
375
384
  --Card-actions-onChecked-onHover-bg: #c2ecf9;
@@ -380,6 +389,7 @@
380
389
  --Card-borderColor: var(--borderColor);
381
390
  --Card-borderRadius: var(--borderRadius);
382
391
  --Card-borderWidth: var(--borderWidth);
392
+ --Card-secondary-color: #83868c;
383
393
  --Card-onChecked-bg: #d9f3fb;
384
394
  --Card-onChecked-borderColor: #abe4f6;
385
395
  --Card-onChecked-color: #20b9e8;
@@ -993,8 +1003,8 @@
993
1003
  --PickerColumns-title-lineHeight: 1.5;
994
1004
  --PickerColumns-action-padding: 0 var(--gap-sm);
995
1005
  --PickerColumns-action-fontSize: var(--fontSizeMd);
996
- --PickerColumns-confirmAction-color: var(--Button--info-bg);
997
- --PickerColumns-cancelAction-color: var(--Button--light-bg);
1006
+ --PickerColumns-confirmAction-color: #425278;
1007
+ --PickerColumns-cancelAction-color: #8191b9;
998
1008
  --PickerColumns-option-fontSize: var(--fontSizeLg);
999
1009
  --PickerColumns-optionText-color: var(--text-color);
1000
1010
  --PickerColumns-optionDisabled-opacity: 0.3;
@@ -4924,13 +4934,9 @@ input[type=button].cxd-Button--block {
4924
4934
  position: relative;
4925
4935
  background-color: var(--PickerColumns-bg);
4926
4936
  user-select: none;
4927
- }
4928
- .cxd-PickerColumns-popOver {
4929
- position: fixed;
4930
- bottom: 0;
4931
- left: 0;
4932
- width: 100%;
4933
- padding: 0 var(--gap-sm);
4937
+ flex: 1;
4938
+ overflow: hidden;
4939
+ font-size: var(--PickerColumns-option-fontSize);
4934
4940
  }
4935
4941
  .cxd-PickerColumns-toolbar {
4936
4942
  display: flex;
@@ -4949,6 +4955,9 @@ input[type=button].cxd-Button--block {
4949
4955
  .cxd-PickerColumns-cancel:active, .cxd-PickerColumns-confirm:active {
4950
4956
  opacity: 0.7;
4951
4957
  }
4958
+ .cxd-PickerColumns-cancel:hover, .cxd-PickerColumns-confirm:hover {
4959
+ background-color: none !important;
4960
+ }
4952
4961
  .cxd-PickerColumns-confirm {
4953
4962
  color: var(--PickerColumns-confirmAction-color);
4954
4963
  }
@@ -4990,6 +4999,17 @@ input[type=button].cxd-Button--block {
4990
4999
  transform: translateY(-50%);
4991
5000
  pointer-events: none;
4992
5001
  }
5002
+ .cxd-PickerColumns-frame::after {
5003
+ position: absolute;
5004
+ content: "";
5005
+ border-bottom: 1px solid var(--borderColor);
5006
+ border-top: 1px solid var(--borderColor);
5007
+ top: -50%;
5008
+ right: -50%;
5009
+ left: -50%;
5010
+ bottom: -50%;
5011
+ transform: scale(0.5);
5012
+ }
4993
5013
  .cxd-PickerColumns-mask {
4994
5014
  position: absolute;
4995
5015
  top: 0;
@@ -5003,11 +5023,6 @@ input[type=button].cxd-Button--block {
5003
5023
  transform: translateZ(0);
5004
5024
  pointer-events: none;
5005
5025
  }
5006
- .cxd-PickerColumns-column {
5007
- flex: 1;
5008
- overflow: hidden;
5009
- font-size: var(--PickerColumns-option-fontSize);
5010
- }
5011
5026
  .cxd-PickerColumns-columnWrapper {
5012
5027
  margin: 0;
5013
5028
  padding: 0;
@@ -5973,7 +5988,7 @@ input[type=button].cxd-Button--block {
5973
5988
  .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item.active > a, .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item.is-active > .cxd-Nav-item-atcions, .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item.is-active > a, .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item.active > .cxd-Badge > a, .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item.is-active > .cxd-Badge > .cxd-Nav-item-atcions, .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item.is-active > .cxd-Badge > a, .cxd-Nav .cxd-Nav-list--stacked .cxd-Badge.active > a, .cxd-Nav .cxd-Nav-list--stacked .cxd-Badge.is-active > .cxd-Nav-item-atcions, .cxd-Nav .cxd-Nav-list--stacked .cxd-Badge.is-active > a, .cxd-Nav .cxd-Nav-list--stacked .cxd-Badge.active > .cxd-Badge > a, .cxd-Nav .cxd-Nav-list--stacked .cxd-Badge.is-active > .cxd-Badge > .cxd-Nav-item-atcions, .cxd-Nav .cxd-Nav-list--stacked .cxd-Badge.is-active > .cxd-Badge > a {
5974
5989
  color: var(--Nav-item-onActive-color);
5975
5990
  position: relative;
5976
- background: var(--Nav-item-onActive-bg);
5991
+ background: var(--Nav-item-onActive-bg) !important;
5977
5992
  }
5978
5993
  .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item.active > a::after, .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item.is-active > .cxd-Nav-item-atcions::after, .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item.is-active > a::after, .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item.active > .cxd-Badge > a::after, .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item.is-active > .cxd-Badge > .cxd-Nav-item-atcions::after, .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item.is-active > .cxd-Badge > a::after, .cxd-Nav .cxd-Nav-list--stacked .cxd-Badge.active > a::after, .cxd-Nav .cxd-Nav-list--stacked .cxd-Badge.is-active > .cxd-Nav-item-atcions::after, .cxd-Nav .cxd-Nav-list--stacked .cxd-Badge.is-active > a::after, .cxd-Nav .cxd-Nav-list--stacked .cxd-Badge.active > .cxd-Badge > a::after, .cxd-Nav .cxd-Nav-list--stacked .cxd-Badge.is-active > .cxd-Badge > .cxd-Nav-item-atcions::after, .cxd-Nav .cxd-Nav-list--stacked .cxd-Badge.is-active > .cxd-Badge > a::after {
5979
5994
  transform: scaleY(1);
@@ -9670,8 +9685,9 @@ input[type=button].cxd-Button--block {
9670
9685
  cursor: pointer;
9671
9686
  }
9672
9687
  .cxd-Card-title {
9673
- color: var(--text--loud-color);
9688
+ color: var(--text-color);
9674
9689
  font-size: var(--fontSizeMd);
9690
+ font-weight: var(--fontWeightMd);
9675
9691
  white-space: nowrap;
9676
9692
  overflow: hidden;
9677
9693
  text-overflow: ellipsis;
@@ -9689,14 +9705,13 @@ input[type=button].cxd-Button--block {
9689
9705
  margin-top: var(--gap-xs);
9690
9706
  }
9691
9707
  .cxd-Card-dragBtn {
9708
+ display: inline-block;
9692
9709
  cursor: pointer;
9693
- float: right;
9694
- margin: var(--gap-sm);
9710
+ padding: 0 var(--gap-sm);
9695
9711
  }
9696
9712
  .cxd-Card-heading {
9697
9713
  display: flex;
9698
- flex-direction: row;
9699
- padding: var(--gap-sm) var(--gap-base);
9714
+ padding: var(--gap-md);
9700
9715
  flex: 1 0 auto;
9701
9716
  }
9702
9717
  .cxd-Card-avtar {
@@ -9720,17 +9735,19 @@ input[type=button].cxd-Button--block {
9720
9735
  float: left;
9721
9736
  margin-right: var(--gap-base);
9722
9737
  font-size: var(--fontSizeXl);
9723
- text-transform: uppercase;
9738
+ text-transform: uppercase();
9724
9739
  }
9725
9740
  .cxd-Card-meta {
9726
9741
  display: block;
9727
9742
  flex-grow: 1;
9728
9743
  height: 100%;
9729
9744
  position: relative;
9730
- margin-right: var(--gap-md);
9745
+ }
9746
+ .cxd-Card-meta + .cxd-Card-toolbar {
9747
+ margin-left: var(--gap-md);
9731
9748
  }
9732
9749
  .cxd-Card-toolbar {
9733
- margin-right: calc(-1 * var(--gap-base));
9750
+ line-height: normal;
9734
9751
  text-align: right;
9735
9752
  }
9736
9753
  .cxd-Card-highlight {
@@ -9739,16 +9756,14 @@ input[type=button].cxd-Button--block {
9739
9756
  height: 0.5rem;
9740
9757
  border-radius: 100%;
9741
9758
  display: inline-block;
9742
- position: absolute;
9743
- top: var(--gap-xs);
9744
- right: 0.125rem;
9759
+ margin: 0 var(--gap-sm);
9745
9760
  }
9746
9761
  .cxd-Card-body {
9747
- padding: var(--gap-base);
9762
+ padding: var(--gap-md);
9748
9763
  flex: 1 0 auto;
9749
9764
  }
9750
9765
  .cxd-Card-heading + .cxd-Card-body {
9751
- padding-top: var(--gap-xs);
9766
+ padding-top: 0;
9752
9767
  }
9753
9768
  .cxd-Card-field {
9754
9769
  position: relative;
@@ -9773,6 +9788,7 @@ input[type=button].cxd-Button--block {
9773
9788
  flex-direction: row;
9774
9789
  width: 100%;
9775
9790
  table-layout: fixed;
9791
+ white-space: nowrap;
9776
9792
  }
9777
9793
  .cxd-Card-actions > a {
9778
9794
  background: transparent;
@@ -9840,6 +9856,127 @@ input[type=button].cxd-Button--block {
9840
9856
  .is-dragging > .cxd-Card {
9841
9857
  opacity: var(--Card-onDragging-opacity);
9842
9858
  }
9859
+ .cxd-Card-footer-wrapper {
9860
+ display: flex;
9861
+ align-items: center;
9862
+ justify-content: space-between;
9863
+ }
9864
+ .cxd-Card-actions-wrapper {
9865
+ flex: 1;
9866
+ display: flex;
9867
+ align-items: center;
9868
+ justify-content: flex-end;
9869
+ flex-wrap: wrap;
9870
+ }
9871
+ .cxd-Card-checkbox {
9872
+ margin: 0 var(--gap-sm) !important;
9873
+ }
9874
+ .cxd-Card-secondary {
9875
+ max-width: 12.5rem;
9876
+ color: var(--Card-secondary-color);
9877
+ padding: 0 var(--gap-md);
9878
+ font-size: var(--fontSizeMd);
9879
+ font-weight: var(--fontWeightBase);
9880
+ white-space: nowrap;
9881
+ overflow: hidden;
9882
+ text-overflow: ellipsis;
9883
+ }
9884
+ .cxd-Card-secondary + .cxd-Card-actions-wrapper .cxd-Card-actions {
9885
+ margin-left: unset;
9886
+ border: none;
9887
+ width: unset;
9888
+ }
9889
+ .cxd-Card-secondary + .cxd-Card-actions-wrapper .cxd-Card-actions > a {
9890
+ border: none;
9891
+ }
9892
+ .cxd-Card-multiMedia--top .cxd-Card-actions-wrapper .cxd-Card-actions, .cxd-Card-multiMedia--bottom .cxd-Card-actions-wrapper .cxd-Card-actions, .cxd-Card-multiMedia--left .cxd-Card-actions-wrapper .cxd-Card-actions, .cxd-Card-multiMedia--right .cxd-Card-actions-wrapper .cxd-Card-actions {
9893
+ margin-left: unset;
9894
+ border: none;
9895
+ width: unset;
9896
+ }
9897
+ .cxd-Card-multiMedia--top .cxd-Card-actions-wrapper .cxd-Card-actions > a, .cxd-Card-multiMedia--bottom .cxd-Card-actions-wrapper .cxd-Card-actions > a, .cxd-Card-multiMedia--left .cxd-Card-actions-wrapper .cxd-Card-actions > a, .cxd-Card-multiMedia--right .cxd-Card-actions-wrapper .cxd-Card-actions > a {
9898
+ border: none;
9899
+ }
9900
+ .cxd-Card-multiMedia--top {
9901
+ display: block;
9902
+ }
9903
+ .cxd-Card-multiMedia--top .cxd-Card-multiMedia-img {
9904
+ border-bottom-left-radius: unset;
9905
+ border-bottom-right-radius: unset;
9906
+ }
9907
+ .cxd-Card-multiMedia--bottom {
9908
+ display: flex;
9909
+ flex-direction: column-reverse;
9910
+ }
9911
+ .cxd-Card-multiMedia--bottom .cxd-Card-actions {
9912
+ border-bottom: var(--Card-borderWidth) solid var(--Card-actions-borderColor);
9913
+ }
9914
+ .cxd-Card-multiMedia--bottom .cxd-Card-multiMedia-img {
9915
+ border-top-left-radius: unset;
9916
+ border-top-right-radius: unset;
9917
+ }
9918
+ .cxd-Card-multiMedia--top .cxd-Card-body, .cxd-Card-multiMedia--bottom .cxd-Card-body {
9919
+ padding-bottom: var(--gap-md);
9920
+ }
9921
+ .cxd-Card-multiMedia--left {
9922
+ display: flex;
9923
+ align-items: center;
9924
+ }
9925
+ .cxd-Card-multiMedia--left .cxd-Card-actions {
9926
+ margin-left: var(--gap-md);
9927
+ border-left: var(--Card-borderWidth) solid var(--Card-actions-borderColor);
9928
+ }
9929
+ .cxd-Card-multiMedia--left .cxd-Card-multiMedia-img,
9930
+ .cxd-Card-multiMedia--left .cxd-Card-multiMedia-video {
9931
+ margin: var(--gap-md) 0 var(--gap-md) var(--gap-md);
9932
+ }
9933
+ .cxd-Card-multiMedia--right {
9934
+ display: flex;
9935
+ align-items: center;
9936
+ justify-content: space-between;
9937
+ flex-direction: row-reverse;
9938
+ }
9939
+ .cxd-Card-multiMedia--right .cxd-Card-actions {
9940
+ margin-right: var(--gap-md);
9941
+ border-right: var(--Card-borderWidth) solid var(--Card-actions-borderColor);
9942
+ }
9943
+ .cxd-Card-multiMedia--right .cxd-Card-multiMedia-img,
9944
+ .cxd-Card-multiMedia--right .cxd-Card-multiMedia-video {
9945
+ margin: var(--gap-md) var(--gap-md) var(--gap-md) 0;
9946
+ }
9947
+ .cxd-Card-multiMedia-flex {
9948
+ flex: 1;
9949
+ display: flex;
9950
+ flex-direction: column;
9951
+ justify-content: center;
9952
+ }
9953
+ .cxd-Card-multiMedia-img {
9954
+ display: block;
9955
+ width: 100%;
9956
+ height: auto;
9957
+ object-fit: cover;
9958
+ border-radius: var(--Card-borderRadius);
9959
+ }
9960
+ .cxd-Card-multiMedia-video {
9961
+ width: 11.25rem;
9962
+ height: 7.5rem;
9963
+ }
9964
+ .cxd-Card-multiMedia-video .cxd-Video {
9965
+ width: 100%;
9966
+ height: 100%;
9967
+ min-width: unset;
9968
+ border-radius: var(--Card-borderRadius);
9969
+ overflow: hidden;
9970
+ }
9971
+ .cxd-Card-multiMedia-video .cxd-Video .cxd-Video-player {
9972
+ width: 100%;
9973
+ height: 100%;
9974
+ }
9975
+ .cxd-Card-multiMedia-video .cxd-Video .cxd-Video-player .video-react {
9976
+ width: 100%;
9977
+ height: 100%;
9978
+ padding-top: unset !important;
9979
+ }
9843
9980
 
9844
9981
  .cxd-Field-quickEditBtn {
9845
9982
  color: var(--QuickEdit-iconColor);
@@ -12505,6 +12642,11 @@ fieldset.cxd-Collapse--lg:after {
12505
12642
  margin-right: var(--Checkbox-gap);
12506
12643
  }
12507
12644
 
12645
+ .cxd-GroupedSelection {
12646
+ max-height: 18.75rem;
12647
+ overflow: auto;
12648
+ user-select: none;
12649
+ }
12508
12650
  .cxd-GroupedSelection-group:not(:first-child) > .cxd-GroupedSelection-itemLabel {
12509
12651
  border-top: 0.0625rem solid var(--ListMenu-divider-color);
12510
12652
  }
@@ -12815,6 +12957,11 @@ fieldset.cxd-Collapse--lg:after {
12815
12957
  font-weight: bold;
12816
12958
  transition: all var(--animation-duration);
12817
12959
  }
12960
+ .cxd-Switch .text > svg {
12961
+ width: var(--fontSizeSm);
12962
+ height: var(--fontSizeSm);
12963
+ margin-top: calc((var(--Switch-height) - var(--fontSizeSm)) / 2);
12964
+ }
12818
12965
  .cxd-Switch .slider:before {
12819
12966
  content: "";
12820
12967
  position: absolute;
@@ -14539,15 +14686,15 @@ td.rdtQuarter.rdtDisabled > span {
14539
14686
  outline: none;
14540
14687
  }
14541
14688
  .cxd-FileControl-selectBtn {
14542
- display: flex;
14689
+ display: inline-flex;
14543
14690
  align-items: center;
14691
+ margin-right: 10px;
14544
14692
  }
14545
14693
  .cxd-FileControl-selectBtn > svg {
14546
14694
  width: 0.875rem;
14547
14695
  height: 0.875rem;
14548
14696
  }
14549
14697
  .cxd-FileControl-description {
14550
- margin-left: 10px;
14551
14698
  color: #999;
14552
14699
  font-size: 12px;
14553
14700
  }