survey-creator-core 1.9.107 → 1.9.109

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 (32) hide show
  1. package/fonts.fontless.css +1 -1
  2. package/fonts.fontless.min.css +1 -1
  3. package/package.json +2 -2
  4. package/survey-creator-core.css +112 -30
  5. package/survey-creator-core.fontless.css +111 -29
  6. package/survey-creator-core.fontless.css.map +1 -1
  7. package/survey-creator-core.fontless.min.css +37 -37
  8. package/survey-creator-core.i18n.js +1 -1
  9. package/survey-creator-core.i18n.min.js +1 -1
  10. package/survey-creator-core.js +14586 -9895
  11. package/survey-creator-core.js.map +1 -1
  12. package/survey-creator-core.min.css +38 -38
  13. package/survey-creator-core.min.js +173 -3
  14. package/typings/components/action-container-view-model.d.ts +7 -1
  15. package/typings/components/matrix-cell.d.ts +1 -1
  16. package/typings/components/page.d.ts +1 -0
  17. package/typings/components/tabs/logic-theme.d.ts +3 -0
  18. package/typings/components/tabs/test.d.ts +1 -0
  19. package/typings/components/tabs/theme-builder.d.ts +81 -0
  20. package/typings/components/tabs/theme-plugin.d.ts +24 -12
  21. package/typings/components/tabs/theme.d.ts +100 -100
  22. package/typings/components/tabs/themes.d.ts +26 -0
  23. package/typings/creator-base.d.ts +18 -17
  24. package/typings/creator-settings.d.ts +2 -2
  25. package/typings/custom-questions/question-color.d.ts +2 -1
  26. package/typings/editorLocalization.d.ts +2 -0
  27. package/typings/entries/index.d.ts +2 -1
  28. package/typings/localization/english.d.ts +2 -0
  29. package/typings/property-grid/index.d.ts +4 -0
  30. package/typings/property-grid-theme/property-grid.d.ts +1 -0
  31. package/typings/survey-helper.d.ts +3 -1
  32. package/typings/toolbox.d.ts +0 -1
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * SurveyJS Creator v1.9.107
2
+ * SurveyJS Creator v1.9.109
3
3
  * (c) 2015-2023 Devsoft Baltic OÜ - http://surveyjs.io/
4
4
  * Github: https://github.com/surveyjs/survey-creator
5
5
  * License: https://surveyjs.io/Licenses#SurveyCreator
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * SurveyJS Creator v1.9.107
2
+ * SurveyJS Creator v1.9.109
3
3
  * (c) 2015-2023 Devsoft Baltic OÜ - http://surveyjs.io/
4
4
  * Github: https://github.com/surveyjs/survey-creator
5
5
  * License: https://surveyjs.io/Licenses#SurveyCreator
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "survey-creator-core",
3
- "version": "1.9.107",
3
+ "version": "1.9.109",
4
4
  "description": "Use SurveyJS Creator to create or edit JSON for SurveyJS Form Library.",
5
5
  "keywords": [
6
6
  "Survey",
@@ -34,7 +34,7 @@
34
34
  }
35
35
  },
36
36
  "dependencies": {
37
- "survey-core": "1.9.107"
37
+ "survey-core": "1.9.109"
38
38
  },
39
39
  "devDependencies": {}
40
40
  }
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * SurveyJS Creator v1.9.107
2
+ * SurveyJS Creator v1.9.109
3
3
  * (c) 2015-2023 Devsoft Baltic OÜ - http://surveyjs.io/
4
4
  * Github: https://github.com/surveyjs/survey-creator
5
5
  * License: https://surveyjs.io/Licenses#SurveyCreator
@@ -225,7 +225,7 @@
225
225
  }
226
226
 
227
227
  /*# sourceMappingURL=fonts.fontless.css.map*//*!
228
- * SurveyJS Creator v1.9.107
228
+ * SurveyJS Creator v1.9.109
229
229
  * (c) 2015-2023 Devsoft Baltic OÜ - http://surveyjs.io/
230
230
  * Github: https://github.com/surveyjs/survey-creator
231
231
  * License: https://surveyjs.io/Licenses#SurveyCreator
@@ -295,7 +295,7 @@ svc-tab-json-editor-textarea {
295
295
  .svc-json-editor-tab__errros_button {
296
296
  position: absolute;
297
297
  top: 0%;
298
- right: calc(0% + (2 * var(--sjs-base-unit, var(--base-unit, 8px))));
298
+ right: calc(0% + 2 * var(--sjs-base-unit, var(--base-unit, 8px)));
299
299
  min-height: calc(2.5 * var(--sjs-base-unit, var(--base-unit, 8px)));
300
300
  max-height: calc(2.5 * var(--sjs-base-unit, var(--base-unit, 8px)));
301
301
  border: none;
@@ -307,8 +307,8 @@ svc-tab-json-editor-textarea {
307
307
  .svc-json-editor-tab__content-errors {
308
308
  position: absolute;
309
309
  right: 0%;
310
- top: calc(0% + (3 * var(--sjs-base-unit, var(--base-unit, 8px))));
311
- max-width: calc(100% - (2 * var(--sjs-base-unit, var(--base-unit, 8px))));
310
+ top: calc(0% + 3 * var(--sjs-base-unit, var(--base-unit, 8px)));
311
+ max-width: calc(100% - 2 * var(--sjs-base-unit, var(--base-unit, 8px)));
312
312
  padding: var(--sjs-base-unit, var(--base-unit, 8px));
313
313
  background-color: var(--sjs-general-backcolor, var(--background, #fff));
314
314
  background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.1));
@@ -555,7 +555,7 @@ svc-tab-test {
555
555
  }
556
556
 
557
557
  .svc-creator-tab__content--with-toolbar.svc-test-tab__content .svc-plugin-tab__content {
558
- height: calc(100% - (6 * var(--sjs-base-unit, var(--base-unit, 8px))));
558
+ height: calc(100% - 6 * var(--sjs-base-unit, var(--base-unit, 8px)));
559
559
  }
560
560
 
561
561
  .svc-test-tab__content-actions {
@@ -914,7 +914,7 @@ svc-tab-test {
914
914
  }
915
915
 
916
916
  .st-strings {
917
- height: calc(100% - (6 * var(--sjs-base-unit, var(--base-unit, 8px))));
917
+ height: calc(100% - 6 * var(--sjs-base-unit, var(--base-unit, 8px)));
918
918
  overflow-y: auto;
919
919
  overflow-x: hidden;
920
920
  }
@@ -1033,7 +1033,7 @@ td.st-table__cell:first-of-type span {
1033
1033
  }
1034
1034
 
1035
1035
  .svc-tab-logic-edit__content {
1036
- height: calc(100% - (6 * var(--sjs-base-unit, var(--base-unit, 8px))));
1036
+ height: calc(100% - 6 * var(--sjs-base-unit, var(--base-unit, 8px)));
1037
1037
  overflow-y: auto;
1038
1038
  overflow-x: hidden;
1039
1039
  padding-left: 16%;
@@ -1288,6 +1288,13 @@ td.st-table__cell:first-of-type span {
1288
1288
  .svc-logic-tab__leave-apply-button {
1289
1289
  background-color: var(--sjs-special-red, var(--red, #e60a3e));
1290
1290
  }
1291
+
1292
+ .sl-list .sv-list__filter {
1293
+ padding-top: 0;
1294
+ }
1295
+ .sl-list .sv-list__filter-icon {
1296
+ top: calc(1.5 * var(--sjs-base-unit, var(--base-unit, 8px)));
1297
+ }
1291
1298
  svc-tab-designer {
1292
1299
  width: 100%;
1293
1300
  height: 100%;
@@ -1333,7 +1340,6 @@ svc-tab-designer {
1333
1340
  }
1334
1341
  .svc-tab-designer .sd-container-modern.sd-container-modern--responsive {
1335
1342
  max-width: initial;
1336
- padding: 0 calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
1337
1343
  }
1338
1344
  .svc-tab-designer .sd-question.sd-question--image {
1339
1345
  width: 100%;
@@ -1370,6 +1376,9 @@ svc-tab-designer {
1370
1376
  .svc-designer-placeholder-page .svc-row--ghost {
1371
1377
  display: none;
1372
1378
  }
1379
+ .svc-creator--mobile .svc-tab-designer {
1380
+ overflow-y: overlay;
1381
+ }
1373
1382
  .svc-creator--mobile .sd-root-modern {
1374
1383
  --sd-base-padding: calc(3 * var(--sjs-base-unit, var(--base-unit, 8px)));
1375
1384
  --sd-base-vertical-padding: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
@@ -1391,12 +1400,18 @@ svc-tab-designer {
1391
1400
  padding-right: 0;
1392
1401
  border: 0;
1393
1402
  }
1403
+ .svc-creator--mobile .svc-page__content .sd-page__title {
1404
+ margin: 0;
1405
+ }
1406
+ .svc-creator--mobile .svc-page__content.svc-page__content--selected .sd-page__title {
1407
+ margin: calc(2.5 * var(--sjs-base-unit, var(--base-unit, 8px))) 0 0 0;
1408
+ }
1394
1409
  .svc-creator--mobile .svc-page__content .sd-page {
1395
- padding: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px))) calc(2 * var(--sjs-base-unit, var(--base-unit, 8px))) calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
1410
+ padding: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px))) calc(3 * var(--sjs-base-unit, var(--base-unit, 8px))) calc(3 * var(--sjs-base-unit, var(--base-unit, 8px)));
1396
1411
  }
1397
1412
  .svc-creator--mobile .svc-page__content .svc-page__footer {
1398
- margin-left: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
1399
- margin-right: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
1413
+ margin-left: calc(3 * var(--sjs-base-unit, var(--base-unit, 8px)));
1414
+ margin-right: calc(3 * var(--sjs-base-unit, var(--base-unit, 8px)));
1400
1415
  }
1401
1416
  .svc-creator--mobile .svc-question__content {
1402
1417
  padding: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px))) calc(3 * var(--sjs-base-unit, var(--base-unit, 8px))) calc(3 * var(--sjs-base-unit, var(--base-unit, 8px)));
@@ -1408,7 +1423,7 @@ svc-tab-designer {
1408
1423
  justify-content: initial;
1409
1424
  }
1410
1425
  .svc-creator--mobile .svc-tab-designer .sd-title.sd-container-modern__title {
1411
- padding: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
1426
+ padding: calc(3 * var(--sjs-base-unit, var(--base-unit, 8px)));
1412
1427
  flex-direction: column-reverse;
1413
1428
  align-items: flex-start;
1414
1429
  }
@@ -1417,6 +1432,7 @@ svc-tab-designer {
1417
1432
  }
1418
1433
  .svc-creator--mobile .svc-tab-designer .sd-title.sd-container-modern__title .svc-logo-image-placeholder {
1419
1434
  margin-left: calc(-2 * var(--sjs-base-unit, var(--base-unit, 8px)));
1435
+ margin-top: calc(-2 * var(--sjs-base-unit, var(--base-unit, 8px)));
1420
1436
  }
1421
1437
  .svc-creator--mobile .svc-tab-designer .sd-title.sd-container-modern__title h3 {
1422
1438
  margin: 0;
@@ -1427,7 +1443,8 @@ svc-tab-designer {
1427
1443
  margin: 0;
1428
1444
  }
1429
1445
  .svc-creator--mobile .svc-tab-designer .sd-container-modern {
1430
- min-width: calc(46 * var(--sjs-base-unit, var(--base-unit, 8px)));
1446
+ min-width: calc(43 * var(--sjs-base-unit, var(--base-unit, 8px)));
1447
+ padding: 0;
1431
1448
  }
1432
1449
  .svc-creator--mobile .svc-properties-wrapper {
1433
1450
  width: 100%;
@@ -1475,7 +1492,7 @@ svc-tab-test {
1475
1492
  }
1476
1493
 
1477
1494
  .svc-creator-tab__content--with-toolbar.svc-test-tab__content .svc-plugin-tab__content {
1478
- height: calc(100% - (6 * var(--sjs-base-unit, var(--base-unit, 8px))));
1495
+ height: calc(100% - 6 * var(--sjs-base-unit, var(--base-unit, 8px)));
1479
1496
  }
1480
1497
 
1481
1498
  .svc-test-tab__content-actions {
@@ -1606,16 +1623,16 @@ survey-creator ::-webkit-scrollbar-thumb:hover,
1606
1623
  }
1607
1624
 
1608
1625
  .svc-creator__area.svc-creator__area--with-banner {
1609
- height: calc(100% - (4 * var(--sjs-base-unit, var(--base-unit, 8px))));
1626
+ height: calc(100% - 4 * var(--sjs-base-unit, var(--base-unit, 8px)));
1610
1627
  }
1611
1628
 
1612
1629
  .svc-creator__content-wrapper {
1613
1630
  width: 100%;
1614
- height: calc(100% - (8 * var(--sjs-base-unit, var(--base-unit, 8px))));
1631
+ height: calc(100% - 8 * var(--sjs-base-unit, var(--base-unit, 8px)));
1615
1632
  }
1616
1633
 
1617
1634
  .svc-creator__content-wrapper--footer-toolbar {
1618
- height: calc(100% - (6 * var(--sjs-base-unit, var(--base-unit, 8px))));
1635
+ height: calc(100% - 6 * var(--sjs-base-unit, var(--base-unit, 8px)));
1619
1636
  }
1620
1637
 
1621
1638
  .svc-creator__content-holder {
@@ -1709,6 +1726,10 @@ survey-creator ::-webkit-scrollbar-thumb:hover,
1709
1726
  top: initial;
1710
1727
  bottom: calc(-0.5 * var(--sjs-base-unit, var(--base-unit, 8px)));
1711
1728
  }
1729
+
1730
+ .sv-list__filter {
1731
+ margin-bottom: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
1732
+ }
1712
1733
  .sd-element__title .svc-string-editor {
1713
1734
  display: inline-block;
1714
1735
  max-width: 100%;
@@ -2175,7 +2196,7 @@ svc-page {
2175
2196
  .svc-creator .svc-page .svc-page__content--selected.svc-page__content--selected,
2176
2197
  .svc-creator .svc-page .svc-page__content--selected:focus.svc-page__content--selected,
2177
2198
  .svc-hovered.svc-page__content--selected {
2178
- box-shadow: 0 0 0 2px var(--sjs-secondary-backcolor, var(--secondary, #ff9814));
2199
+ box-shadow: 0 0 0 2px inset var(--sjs-secondary-backcolor, var(--secondary, #ff9814));
2179
2200
  background: var(--sjs-secondary-backcolor-semi-light, rgba(255, 152, 20, 0.1));
2180
2201
  }
2181
2202
  .svc-creator .svc-page .svc-page__content--selected.svc-page__content--selected .svc-page__content-actions,
@@ -2974,6 +2995,25 @@ svc-question .sv-action-bar,
2974
2995
  margin-inline-start: calc(9 * var(--sjs-base-unit, var(--base-unit, 8px)));
2975
2996
  width: calc(100% - 9 * var(--sjs-base-unit, var(--base-unit, 8px)));
2976
2997
  }
2998
+ .svc-question__content .sd-rating.sd-rating--wrappable fieldset {
2999
+ min-width: 0;
3000
+ }
3001
+ .svc-question__content .sd-rating .sd-rating__item-text {
3002
+ max-width: 100%;
3003
+ }
3004
+ .svc-question__content .sd-rating .sd-rating__item-text .sv-string-editor:focus-within {
3005
+ white-space: nowrap;
3006
+ }
3007
+ .svc-question__content .sd-rating .svc-string-editor__content {
3008
+ width: 100%;
3009
+ }
3010
+ .svc-question__content .sd-rating .svc-string-editor__content .sv-string-editor {
3011
+ text-overflow: ellipsis;
3012
+ overflow: hidden;
3013
+ }
3014
+ .svc-question__content .sd-rating .svc-string-editor__content .sv-string-editor:focus-within {
3015
+ text-overflow: initial;
3016
+ }
2977
3017
  .svc-question__content .sd-question--table .sd-rating {
2978
3018
  margin-inline-start: 0;
2979
3019
  width: fit-content;
@@ -3001,12 +3041,12 @@ svc-question .sv-action-bar,
3001
3041
  margin-inline-start: 0;
3002
3042
  width: 100%;
3003
3043
  }
3004
- .svc-creator--mobile .svc-question__content legend + .sd-rating__item,
3005
- .svc-creator--mobile .svc-question__content legend + sv-ng-rating-item-smiley + .sd-rating__item-smiley,
3006
- .svc-creator--mobile .svc-question__content legend + sv-ng-rating-item + .sd-rating__item {
3044
+ .svc-creator--mobile .svc-question__content legend + .sd-rating__item, .svc-creator--mobile .svc-question__content legend + sv-ng-rating-item + .sd-rating__item,
3045
+ .svc-creator--mobile .svc-question__content legend + .sd-rating__item-smiley, .svc-creator--mobile .svc-question__content legend + sv-ng-rating-item-smiley + .sd-rating__item-smiley {
3007
3046
  margin-inline-start: calc(9 * var(--sjs-base-unit, var(--base-unit, 8px)) + 2px);
3008
3047
  }
3009
- .svc-creator--mobile .svc-question__content legend + .sd-rating__item-text {
3048
+ .svc-creator--mobile .svc-question__content legend + .sd-rating__item-text,
3049
+ .svc-creator--mobile .svc-question__content legend + .sd-rating__item-star, .svc-creator--mobile .svc-question__content legend + sv-ng-rating-item-star + .sd-rating__item-star {
3010
3050
  margin-inline-start: calc(9 * var(--sjs-base-unit, var(--base-unit, 8px)));
3011
3051
  }
3012
3052
  .svc-item-value-wrapper {
@@ -3027,9 +3067,14 @@ svc-question .sv-action-bar,
3027
3067
  padding-right: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
3028
3068
  }
3029
3069
 
3030
- .svc-question__content .sd-selectbase__column:not(.sd-imagepicker__column):not(:first-of-type) {
3070
+ .svc-question__content .sd-selectbase__column {
3031
3071
  margin-left: calc(5 * var(--sjs-base-unit, var(--base-unit, 8px)));
3032
3072
  }
3073
+ .svc-question__content .sd-selectbase--mobile .sd-selectbase__column,
3074
+ .svc-question__content .sd-selectbase__column:first-of-type,
3075
+ .svc-question__content .sd-imagepicker__column {
3076
+ margin-left: 0;
3077
+ }
3033
3078
  .svc-question__content .sd-selectbase__column:not(:last-child) {
3034
3079
  padding-right: 0;
3035
3080
  }
@@ -3216,13 +3261,45 @@ svc-question .sv-action-bar,
3216
3261
  left: 35px;
3217
3262
  }
3218
3263
 
3219
- .svc-creator--mobile .svc-tab-designer .svc-item-value-controls__drag-icon {
3264
+ .svc-creator--mobile .svc-tab-designer .svc-question__content--ranking [data-sv-drop-target-item-value] .svc-item-value-controls,
3265
+ .svc-creator--mobile .svc-tab-designer .sd-selectbase [data-sv-drop-target-item-value] .svc-item-value-controls,
3266
+ .svc-creator--mobile .svc-tab-designer .svc-question__dropdown-choices [data-sv-drop-target-item-value] .svc-item-value-controls {
3267
+ min-width: initial;
3268
+ }
3269
+ .svc-creator--mobile .svc-tab-designer .svc-question__content--ranking:not([data-sv-drop-target-item-value]) .svc-item-value-controls,
3270
+ .svc-creator--mobile .svc-tab-designer .sd-selectbase:not([data-sv-drop-target-item-value]) .svc-item-value-controls,
3271
+ .svc-creator--mobile .svc-tab-designer .svc-question__dropdown-choices:not([data-sv-drop-target-item-value]) .svc-item-value-controls {
3272
+ min-width: 64px;
3273
+ }
3274
+ .svc-creator--mobile .svc-tab-designer .svc-question__content--ranking .svc-item-value-controls__drag,
3275
+ .svc-creator--mobile .svc-tab-designer .sd-selectbase .svc-item-value-controls__drag,
3276
+ .svc-creator--mobile .svc-tab-designer .svc-question__dropdown-choices .svc-item-value-controls__drag {
3277
+ padding-right: 0;
3278
+ }
3279
+ .svc-creator--mobile .svc-tab-designer .svc-question__content--ranking .svc-item-value-controls__drag-icon,
3280
+ .svc-creator--mobile .svc-tab-designer .sd-selectbase .svc-item-value-controls__drag-icon,
3281
+ .svc-creator--mobile .svc-tab-designer .svc-question__dropdown-choices .svc-item-value-controls__drag-icon {
3220
3282
  visibility: visible;
3221
3283
  }
3222
- .svc-creator--mobile .svc-tab-designer .svc-item-value-wrapper {
3284
+ .svc-creator--mobile .svc-tab-designer .svc-question__content--ranking .svc-item-value-wrapper,
3285
+ .svc-creator--mobile .svc-tab-designer .sd-selectbase .svc-item-value-wrapper,
3286
+ .svc-creator--mobile .svc-tab-designer .svc-question__dropdown-choices .svc-item-value-wrapper {
3223
3287
  margin-left: calc(-3 * var(--sjs-base-unit, var(--base-unit, 8px)));
3224
3288
  }
3225
- .svc-creator--mobile .svc-tab-designer .svc-item-value-controls__drag {
3289
+
3290
+ .svc-creator--touch:not(.svc-creator--mobile) .svc-tab-designer .svc-question__content--ranking .svc-item-value-controls__drag-icon,
3291
+ .svc-creator--touch:not(.svc-creator--mobile) .svc-tab-designer .sd-selectbase .svc-item-value-controls__drag-icon,
3292
+ .svc-creator--touch:not(.svc-creator--mobile) .svc-tab-designer .svc-question__dropdown-choices .svc-item-value-controls__drag-icon {
3293
+ visibility: visible;
3294
+ }
3295
+ .svc-creator--touch:not(.svc-creator--mobile) .svc-tab-designer .svc-question__content--ranking .svc-item-value-wrapper,
3296
+ .svc-creator--touch:not(.svc-creator--mobile) .svc-tab-designer .sd-selectbase .svc-item-value-wrapper,
3297
+ .svc-creator--touch:not(.svc-creator--mobile) .svc-tab-designer .svc-question__dropdown-choices .svc-item-value-wrapper {
3298
+ margin-left: calc(-6 * var(--sjs-base-unit, var(--base-unit, 8px)));
3299
+ }
3300
+ .svc-creator--touch:not(.svc-creator--mobile) .svc-tab-designer .svc-question__content--ranking .svc-item-value-controls__drag,
3301
+ .svc-creator--touch:not(.svc-creator--mobile) .svc-tab-designer .sd-selectbase .svc-item-value-controls__drag,
3302
+ .svc-creator--touch:not(.svc-creator--mobile) .svc-tab-designer .svc-question__dropdown-choices .svc-item-value-controls__drag {
3226
3303
  padding-left: 0;
3227
3304
  padding-right: 0;
3228
3305
  }
@@ -3431,7 +3508,7 @@ svc-question .sv-action-bar,
3431
3508
  .svd-test-results .svd-test-results__text {
3432
3509
  display: flex;
3433
3510
  padding: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px))) calc(3 * var(--sjs-base-unit, var(--base-unit, 8px)));
3434
- width: calc(100% - (6 * var(--sjs-base-unit, var(--base-unit, 8px))));
3511
+ width: calc(100% - 6 * var(--sjs-base-unit, var(--base-unit, 8px)));
3435
3512
  overflow: auto;
3436
3513
  user-select: text;
3437
3514
  white-space: pre-wrap;
@@ -4021,7 +4098,7 @@ svc-toolbox {
4021
4098
  display: flex;
4022
4099
  flex-direction: column;
4023
4100
  align-items: flex-start;
4024
- height: calc(100% - (8 * var(--sjs-base-unit, var(--base-unit, 8px))));
4101
+ height: calc(100% - 8 * var(--sjs-base-unit, var(--base-unit, 8px)));
4025
4102
  overflow-y: auto;
4026
4103
  background-color: var(--sjs-general-backcolor, var(--background, #fff));
4027
4104
  }
@@ -4895,7 +4972,8 @@ button.spg-action-button--large {
4895
4972
  height: 1px;
4896
4973
  width: 1px;
4897
4974
  overflow: hidden;
4898
- clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
4975
+ clip: rect(1px 1px 1px 1px);
4976
+ /* IE6, IE7 */
4899
4977
  clip: rect(1px, 1px, 1px, 1px);
4900
4978
  left: 0;
4901
4979
  top: 100%;
@@ -4935,6 +5013,10 @@ button.spg-action-button--large {
4935
5013
  opacity: 0.25;
4936
5014
  }
4937
5015
 
5016
+ .spg-color-editor__color-swatch--default .sv-svg-icon {
5017
+ opacity: 1;
5018
+ }
5019
+
4938
5020
  .spg-color-editor .spg-input__edit-button + * {
4939
5021
  margin-inline-end: calc(-0.5 * var(--sjs-base-unit, var(--base-unit, 8px)));
4940
5022
  }