survey-react 1.12.25 → 1.12.26

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/defaultV2.css CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * surveyjs - Survey JavaScript library v1.12.25
2
+ * surveyjs - Survey JavaScript library v1.12.26
3
3
  * Copyright (c) 2015-2025 Devsoft Baltic OÜ - http://surveyjs.io/
4
4
  * License: MIT (http://www.opensource.org/licenses/mit-license.php)
5
5
  */
@@ -3805,6 +3805,22 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
3805
3805
  .sd-question--mobile.sd-question--table, .sd-question--mobile.sd-question--scroll {
3806
3806
  overflow-x: visible;
3807
3807
  }
3808
+ .sd-question--mobile > .sd-question__content {
3809
+ min-width: auto;
3810
+ }
3811
+ .sd-question--mobile .sd-table-wrapper {
3812
+ width: auto;
3813
+ }
3814
+ .sd-question--mobile .sd-table {
3815
+ display: block;
3816
+ width: calc(100% - 2 * var(--sd-base-padding) + 2 * var(--sjs-base-unit, var(--base-unit, 8px)));
3817
+ }
3818
+ .sd-question--mobile .sd-table > tbody {
3819
+ display: block;
3820
+ }
3821
+ .sd-question--mobile .sd-table > tfoot {
3822
+ display: block;
3823
+ }
3808
3824
  .sd-question--mobile .sd-table__cell.sd-matrix__cell {
3809
3825
  display: flex;
3810
3826
  align-items: flex-start;
@@ -5718,8 +5734,6 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
5718
5734
  }
5719
5735
 
5720
5736
  .sd-imagepicker {
5721
- display: flex;
5722
- flex-wrap: wrap;
5723
5737
  padding: 0;
5724
5738
  border: none;
5725
5739
  gap: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
@@ -5727,6 +5741,15 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
5727
5741
  margin: 0;
5728
5742
  }
5729
5743
 
5744
+ .sd-imagepicker--static {
5745
+ display: flex;
5746
+ flex-wrap: wrap;
5747
+ }
5748
+
5749
+ .sd-imagepicker--responsive {
5750
+ display: grid;
5751
+ }
5752
+
5730
5753
  .sd-imagepicker--column {
5731
5754
  align-items: flex-start;
5732
5755
  flex-direction: column;