survey-creator-core 1.9.87 → 1.9.89

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 (33) 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 +209 -68
  5. package/survey-creator-core.fontless.css +208 -67
  6. package/survey-creator-core.fontless.css.map +1 -1
  7. package/survey-creator-core.fontless.min.css +15 -11
  8. package/survey-creator-core.i18n.js +5 -1
  9. package/survey-creator-core.i18n.js.map +1 -1
  10. package/survey-creator-core.i18n.min.js +2 -2
  11. package/survey-creator-core.js +1747 -295
  12. package/survey-creator-core.js.map +1 -1
  13. package/survey-creator-core.min.css +16 -12
  14. package/survey-creator-core.min.js +3 -3
  15. package/typings/components/header/logo-image.d.ts +1 -0
  16. package/typings/components/image-item-value.d.ts +1 -0
  17. package/typings/components/matrix-cell.d.ts +1 -1
  18. package/typings/components/question-image.d.ts +10 -1
  19. package/typings/components/question.d.ts +2 -0
  20. package/typings/components/simulator.d.ts +1 -0
  21. package/typings/components/tabs/theme-plugin.d.ts +25 -0
  22. package/typings/components/tabs/theme.d.ts +85 -0
  23. package/typings/creator-base.d.ts +7 -0
  24. package/typings/creator-options.d.ts +1 -0
  25. package/typings/creator-settings.d.ts +4 -1
  26. package/typings/editorLocalization.d.ts +69 -0
  27. package/typings/entries/index.d.ts +2 -0
  28. package/typings/localization/english.d.ts +69 -0
  29. package/typings/plugins/undo-redo/undo-redo-manager.d.ts +2 -0
  30. package/typings/property-grid/index.d.ts +7 -0
  31. package/typings/property-grid/matrices.d.ts +1 -0
  32. package/typings/toolbox.d.ts +1 -0
  33. package/typings/utils/utils.d.ts +4 -1
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * SurveyJS Creator v1.9.87
2
+ * SurveyJS Creator v1.9.89
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.87
2
+ * SurveyJS Creator v1.9.89
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.87",
3
+ "version": "1.9.89",
4
4
  "description": "Use SurveyJS Creator to create or edit JSON for SurveyJS Form Library.",
5
5
  "keywords": [
6
6
  "Survey",
@@ -29,7 +29,7 @@
29
29
  "ace-builds": "^1.4.12"
30
30
  },
31
31
  "dependencies": {
32
- "survey-core": "1.9.87"
32
+ "survey-core": "1.9.89"
33
33
  },
34
34
  "devDependencies": {}
35
35
  }
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * SurveyJS Creator v1.9.87
2
+ * SurveyJS Creator v1.9.89
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,11 +225,35 @@
225
225
 
226
226
 
227
227
  /*# sourceMappingURL=fonts.fontless.css.map*//*!
228
- * SurveyJS Creator v1.9.87
228
+ * SurveyJS Creator v1.9.89
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
232
232
  */
233
+ .svc-context-container {
234
+ display: flex;
235
+ gap: calc(1 * var(--base-unit, 8px));
236
+ width: max-content; }
237
+
238
+ .svc-context-button {
239
+ display: block;
240
+ box-sizing: border-box;
241
+ background-color: var(--background, #fff);
242
+ border-radius: 50%;
243
+ width: calc(6 * var(--base-unit, 8px));
244
+ height: calc(6 * var(--base-unit, 8px));
245
+ cursor: pointer;
246
+ padding: calc(1.5 * var(--base-unit, 8px));
247
+ outline: none; }
248
+ .svc-context-button use {
249
+ fill: var(--foreground-light, #909090); }
250
+
251
+ .svc-context-button:hover use, .svc-context-button:focus use {
252
+ fill: var(--primary, #19b394); }
253
+
254
+ .svc-context-button--danger:hover use, .svc-context-button--danger:focus use {
255
+ fill: var(--red, #e60a3e); }
256
+
233
257
  .svc-embed-tab__content {
234
258
  padding: calc(2 * var(--base-unit, 8px));
235
259
  font-family: var(--font-family); }
@@ -318,7 +342,8 @@ svc-tab-json-editor-textarea {
318
342
  transform-origin: 0 0;
319
343
  top: 50%;
320
344
  left: 50%;
321
- transform: scale(1.26) translate(-50%, -50%); }
345
+ transform: scale(1.26) translate(-50%, -50%);
346
+ overflow: overlay; }
322
347
 
323
348
  .svd-simulator-wrapper {
324
349
  margin: 0 auto;
@@ -393,10 +418,7 @@ svc-tab-json-editor-textarea {
393
418
  .svd-simulator-content {
394
419
  display: flex;
395
420
  justify-content: center;
396
- width: 100%;
397
- height: 100%;
398
- overflow: auto;
399
- overflow-y: overlay; }
421
+ width: 100%; }
400
422
 
401
423
  @media screen and (-webkit-min-device-pixel-ratio: 0) {
402
424
  ::i-block-chrome,
@@ -409,7 +431,7 @@ svc-tab-test {
409
431
  background: var(--background-dim, #f3f3f3); }
410
432
 
411
433
  .svc-test-tab__content .svc-plugin-tab__content {
412
- overflow-y: auto; }
434
+ overflow-y: overlay; }
413
435
  .svc-test-tab__content .svc-plugin-tab__content .sv-root-modern .sv-completedpage,
414
436
  .svc-test-tab__content .svc-plugin-tab__content .sv_default_css .sv_completed_page {
415
437
  margin: 0;
@@ -462,9 +484,6 @@ svc-tab-test {
462
484
  color: var(--foreground, #161616);
463
485
  display: inline-block; }
464
486
 
465
- .svc-test-tab__content.svc-creator-tab__content--with-toolbar .sd-body__navigation {
466
- padding-bottom: calc(8 * var(--base-unit, 8px)); }
467
-
468
487
  .svc-test-tab__content .sd-body--empty {
469
488
  font-family: var(--font-family);
470
489
  font-style: normal;
@@ -1052,8 +1071,6 @@ svc-tab-designer {
1052
1071
  box-sizing: border-box;
1053
1072
  margin-left: auto;
1054
1073
  margin-right: auto; }
1055
- .svc-tab-designer .sd-container-modern .sd-container-modern__title {
1056
- gap: 0; }
1057
1074
  .svc-tab-designer .sd-container-modern.sd-container-modern--static {
1058
1075
  max-width: calc(84 * var(--base-unit, 8px)); }
1059
1076
  .svc-tab-designer .sd-container-modern.sd-container-modern--responsive {
@@ -1318,18 +1335,20 @@ survey-creator,
1318
1335
 
1319
1336
  .svc-string-editor {
1320
1337
  position: static; }
1321
- .svc-string-editor [contenteditable] {
1338
+ .svc-string-editor [contenteditable="true"] {
1322
1339
  user-select: text;
1323
1340
  -webkit-user-select: text; }
1324
1341
  .svc-string-editor .sv-string-editor {
1325
1342
  position: relative;
1326
1343
  outline: none;
1327
- white-space: pre-wrap;
1328
1344
  word-break: break-word;
1329
1345
  z-index: 12; }
1330
1346
  .svc-string-editor .sv-string-editor[aria-placeholder]:empty:before {
1331
1347
  content: attr(aria-placeholder);
1332
1348
  color: var(--foreground-light, #909090); }
1349
+ .svc-string-editor .sv-string-editor--html,
1350
+ .svc-string-editor .sv-string-editor:focus-within {
1351
+ white-space: pre-wrap; }
1333
1352
  .svc-string-editor.svc-string-editor--hidden {
1334
1353
  display: none; }
1335
1354
 
@@ -1496,6 +1515,78 @@ survey-creator,
1496
1515
  opacity: 0.25;
1497
1516
  color: var(--foreground, #161616); }
1498
1517
 
1518
+ svc-tab-test {
1519
+ width: 100%;
1520
+ height: 100%;
1521
+ background: var(--background-dim, #f3f3f3); }
1522
+
1523
+ .svc-test-tab__content .svc-plugin-tab__content {
1524
+ overflow-y: overlay; }
1525
+ .svc-test-tab__content .svc-plugin-tab__content .sv-root-modern .sv-completedpage,
1526
+ .svc-test-tab__content .svc-plugin-tab__content .sv_default_css .sv_completed_page {
1527
+ margin: 0;
1528
+ border: 0;
1529
+ background-color: var(--background-dim, #f3f3f3); }
1530
+ .svc-test-tab__content .svc-plugin-tab__content .sv_default_css .sv_body {
1531
+ border: 0; }
1532
+ .svc-test-tab__content .svc-plugin-tab__content .svc-preview__test-again {
1533
+ width: calc(33 * var(--base-unit, 8px));
1534
+ margin-left: auto;
1535
+ margin-right: auto;
1536
+ margin-bottom: 72px;
1537
+ margin-top: 8px; }
1538
+
1539
+ .svc-creator-tab__content--with-toolbar.svc-test-tab__content .svc-plugin-tab__content {
1540
+ height: calc(100% - calc(6 * var(--base-unit, 8px))); }
1541
+
1542
+ .svc-test-tab__content-actions {
1543
+ position: relative; }
1544
+ .svc-test-tab__content-actions .sv-action-bar {
1545
+ padding: 0;
1546
+ height: calc(6 * var(--base-unit, 8px));
1547
+ background: var(--background, #fff);
1548
+ border-top: 1px solid var(--border, #d6d6d6);
1549
+ width: 100%;
1550
+ position: absolute; }
1551
+ .svc-test-tab__content-actions .sv-action-bar.sv-action-bar--pages {
1552
+ left: 0;
1553
+ right: 0;
1554
+ justify-content: center;
1555
+ gap: calc(1 * var(--base-unit, 8px)); }
1556
+ .svc-test-tab__content-actions .sv-action-bar.sv-action-bar--pages .sv-action__content {
1557
+ padding: 0; }
1558
+ .svc-test-tab__content-actions .sv-action-bar.sv-action-bar--pages .sv-action-bar-item {
1559
+ margin: 0; }
1560
+ .svc-test-tab__content-actions .sv-action-bar-item {
1561
+ font-family: var(--font-family);
1562
+ font-style: normal;
1563
+ font-weight: 600;
1564
+ font-size: calc(1.5 * var(--base-unit, 8px));
1565
+ line-height: calc(2 * var(--base-unit, 8px));
1566
+ width: 100%;
1567
+ height: calc(4 * var(--base-unit, 8px)); }
1568
+ .svc-test-tab__content-actions .svc-page-selector {
1569
+ max-width: 50%; }
1570
+ .svc-test-tab__content-actions .svc-page-selector .sv-action-bar-item__title {
1571
+ overflow: hidden;
1572
+ white-space: nowrap;
1573
+ text-overflow: ellipsis;
1574
+ color: var(--foreground, #161616);
1575
+ display: inline-block; }
1576
+
1577
+ .svc-test-tab__content .sd-body--empty {
1578
+ font-family: var(--font-family);
1579
+ font-style: normal;
1580
+ font-weight: 400;
1581
+ font-size: calc(2 * var(--base-unit, 8px));
1582
+ color: var(--foreground, #161616);
1583
+ width: 100%;
1584
+ position: absolute;
1585
+ top: 50%;
1586
+ transform: translateY(-50%);
1587
+ text-align: center;
1588
+ overflow: hidden; }
1589
+
1499
1590
  svc-page-navigator,
1500
1591
  .svc-page-navigator {
1501
1592
  display: flex;
@@ -2150,28 +2241,18 @@ svc-question .sv-action-bar,
2150
2241
  display: none; }
2151
2242
 
2152
2243
  .svc-question__content--selected .svc-image-question-controls {
2153
- display: block; }
2154
-
2155
- .svc-image-question-controls__button {
2156
- display: inline-block;
2157
- background-color: var(--background, #fff);
2158
- border-radius: 50%;
2159
- width: calc(6 * var(--base-unit, 8px));
2160
- height: calc(6 * var(--base-unit, 8px));
2161
- cursor: pointer; }
2162
- .svc-image-question-controls__button:not(:last-child) {
2163
- margin-right: calc(0.5 * var(--base-unit, 8px)); }
2164
- .svc-image-question-controls__button .sv-svg-icon {
2165
- margin-top: calc(50% - 1.5 * var(--base-unit, 8px));
2166
- margin-left: calc(50% - 1.5 * var(--base-unit, 8px)); }
2167
- .svc-image-question-controls__button use {
2168
- fill: var(--foreground-light, #909090); }
2169
- .svc-image-question-controls__button:hover use {
2170
- fill: var(--primary, #19b394); }
2244
+ display: flex; }
2171
2245
 
2172
- .svc-question__content--image {
2246
+ .svc-question__content--image:not(.svc-question__content--empty) {
2173
2247
  padding: calc(4 * var(--base-unit, 8px)) 0 calc(8 * var(--base-unit, 8px)) 0; }
2174
2248
 
2249
+ .svc-question__content--image.svc-question__content--empty .sd-file,
2250
+ .svc-question__content--image.svc-question__content--empty sv-ng-file-question {
2251
+ width: 100%; }
2252
+
2253
+ .svc-question__content--image.svc-question__content--empty .sd-question--image {
2254
+ display: none; }
2255
+
2175
2256
  .svc-rating-question-controls {
2176
2257
  position: absolute; }
2177
2258
 
@@ -2185,6 +2266,11 @@ svc-question .sv-action-bar,
2185
2266
  margin-inline-start: calc(9 * var(--base-unit, 8px));
2186
2267
  width: calc(100% - 9 * var(--base-unit, 8px)); }
2187
2268
 
2269
+ .svc-question__content .sd-question--table .sd-rating {
2270
+ margin-inline-start: 0;
2271
+ width: fit-content;
2272
+ margin: auto; }
2273
+
2188
2274
  .svc-question__content .svc-rating-question-controls {
2189
2275
  display: flex;
2190
2276
  width: calc(8 * var(--base-unit, 8px));
@@ -2200,12 +2286,16 @@ svc-question .sv-action-bar,
2200
2286
  display: flex;
2201
2287
  gap: calc(1 * var(--base-unit, 8px));
2202
2288
  align-items: center;
2203
- margin-left: calc(-5 * var(--base-unit, 8px));
2204
- min-width: calc(27 * var(--base-unit, 8px)); }
2289
+ margin-left: calc(-5 * var(--base-unit, 8px)); }
2205
2290
 
2206
2291
  .svc-question__dropdown-choice .svc-item-value-wrapper,
2207
2292
  .sd-selectbase .svc-item-value-wrapper {
2208
- align-items: flex-start; }
2293
+ align-items: flex-start;
2294
+ min-width: calc(28 * var(--base-unit, 8px)); }
2295
+
2296
+ .svc-question__dropdown-choice .svc-item-value__item,
2297
+ .sd-selectbase .svc-item-value__item {
2298
+ padding-right: calc(1 * var(--base-unit, 8px)); }
2209
2299
 
2210
2300
  .svc-question__content .sd-selectbase__column:not(.sd-imagepicker__column):not(:first-of-type) {
2211
2301
  margin-left: calc(5 * var(--base-unit, 8px)); }
@@ -2296,7 +2386,11 @@ svc-question .sv-action-bar,
2296
2386
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAACCAYAAABhYU3QAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAaSURBVHgBjcABDQAACAKwa2X6b1Tghxi8UQEkAAB3NR3N2gAAAABJRU5ErkJggg==); }
2297
2387
 
2298
2388
  .sv-ranking .svc-item-value-wrapper {
2299
- align-items: center; }
2389
+ align-items: center;
2390
+ min-width: calc(27 * var(--base-unit, 8px)); }
2391
+
2392
+ .sv-ranking .svc-item-value__item {
2393
+ padding-right: 0; }
2300
2394
 
2301
2395
  .svc-item-value__item .sv-ranking-item__content {
2302
2396
  padding-left: 0; }
@@ -2376,34 +2470,9 @@ svc-question .sv-action-bar,
2376
2470
  top: calc(50% - 3 * var(--base-unit, 8px));
2377
2471
  left: calc(50% - 3 * var(--base-unit, 8px)); }
2378
2472
 
2379
- .svc-image-item-value-controls {
2380
- display: flex; }
2381
-
2382
- .svc-image-item-value-controls__button {
2383
- display: block;
2384
- background-color: var(--background, #fff);
2385
- border-radius: 50%;
2386
- width: calc(6 * var(--base-unit, 8px));
2387
- height: calc(6 * var(--base-unit, 8px));
2388
- cursor: pointer;
2389
- outline: none; }
2390
- .svc-image-item-value-controls__button:not(:last-child) {
2391
- margin-right: calc(1 * var(--base-unit, 8px)); }
2392
- .svc-image-item-value-controls__button .sv-svg-icon {
2393
- margin-top: calc(50% - 1.5 * var(--base-unit, 8px));
2394
- margin-left: calc(50% - 1.5 * var(--base-unit, 8px)); }
2395
- .svc-image-item-value-controls__button use {
2396
- fill: var(--foreground-light, #909090); }
2397
-
2398
2473
  .svc-image-item-value--new .svc-image-item-value-controls__button {
2399
2474
  background-color: transparent; }
2400
2475
 
2401
- .svc-image-item-value-controls__choose-file:hover use, .svc-image-item-value-controls__choose-file:focus use {
2402
- fill: var(--primary, #19b394); }
2403
-
2404
- .svc-image-item-value-controls__remove:hover use, .svc-image-item-value-controls__remove:focus use {
2405
- fill: var(--red, #e60a3e); }
2406
-
2407
2476
  .svc-image-item-value-controls__add use {
2408
2477
  fill: var(--primary, #19b394); }
2409
2478
 
@@ -2420,15 +2489,15 @@ svc-question .sv-action-bar,
2420
2489
  .svc-image-item-value__item .sd-imagepicker__item.sd-imagepicker__item {
2421
2490
  width: 100%; }
2422
2491
 
2423
- .svc-question__content--selected .svc-image-item-value-wrapper:hover .svc-image-item-value-controls__drag-area-indicator {
2424
- display: block; }
2425
-
2426
2492
  .svc-image-item-value-controls__drag-area-indicator {
2493
+ display: none;
2427
2494
  cursor: move;
2428
2495
  position: absolute;
2429
2496
  top: calc(1 * var(--base-unit, 8px));
2430
- left: calc(1 * var(--base-unit, 8px));
2431
- display: none; }
2497
+ left: calc(1 * var(--base-unit, 8px)); }
2498
+
2499
+ .svc-question__content--selected .svc-image-item-value-wrapper:hover .svc-image-item-value-controls__drag-area-indicator {
2500
+ display: block; }
2432
2501
 
2433
2502
  .svc-image-item-value-wrapper--ghost .svc-image-item-value-wrapper__ghost {
2434
2503
  display: block; }
@@ -2576,6 +2645,10 @@ svc-question .sv-action-bar,
2576
2645
  .svd-test-results .svd-test-results__table table tr .svd-test-results__node-value {
2577
2646
  color: var(--foreground-light, #909090); }
2578
2647
 
2648
+ .svc-designer-header .sd-container-modern__title {
2649
+ gap: 0;
2650
+ column-gap: calc(6 * var(--base-unit, 8px)); }
2651
+
2579
2652
  .svc-logo-image {
2580
2653
  position: relative;
2581
2654
  justify-content: flex-end;
@@ -2614,6 +2687,29 @@ svc-question .sv-action-bar,
2614
2687
  .svc-logo-image-placeholder use {
2615
2688
  fill: var(--foreground-light, #909090); }
2616
2689
 
2690
+ .svc-logo-image-container {
2691
+ position: relative; }
2692
+ .svc-logo-image-container .sd-logo {
2693
+ margin: 0; }
2694
+
2695
+ .svc-logo-image-controls {
2696
+ opacity: 0;
2697
+ width: max-content;
2698
+ position: absolute;
2699
+ top: 50%;
2700
+ left: 50%;
2701
+ transform: translate(-50%, -50%); }
2702
+
2703
+ .svc-logo-image-container {
2704
+ cursor: default; }
2705
+
2706
+ .svc-logo-image-container:not(.svc-logo-image-container--editable) .svc-logo-image-controls {
2707
+ display: none; }
2708
+
2709
+ .svc-logo-image-container--editable:focus-within .svc-logo-image-controls,
2710
+ .svc-logo-image-container--editable:hover .svc-logo-image-controls {
2711
+ opacity: 1; }
2712
+
2617
2713
  .svc-question-link__set-button {
2618
2714
  font-weight: 600;
2619
2715
  cursor: pointer; }
@@ -3701,6 +3797,51 @@ button.spg-action-button--large {
3701
3797
  .spg-link {
3702
3798
  display: flex; }
3703
3799
 
3800
+ .spg-theme-builder-root .sv-button-group {
3801
+ overflow: hidden; }
3802
+
3803
+ .spg-theme-builder-root .spg-question__header--location--left {
3804
+ width: max-content;
3805
+ flex: 0 0; }
3806
+ .spg-theme-builder-root .spg-question__header--location--left .spg-question__title {
3807
+ white-space: nowrap;
3808
+ overflow: hidden;
3809
+ text-overflow: ellipsis; }
3810
+
3811
+ .spg-theme-builder-root .spg-panel__content .spg-panel__content {
3812
+ padding: 0;
3813
+ padding-bottom: calc(5 * var(--base-unit, 8px));
3814
+ box-shadow: none; }
3815
+ .spg-theme-builder-root .spg-panel__content .spg-panel__content .spg-panel__title {
3816
+ background-color: transparent;
3817
+ box-shadow: none;
3818
+ padding: calc(1 * var(--base-unit, 8px)) 0; }
3819
+ .spg-theme-builder-root .spg-panel__content .spg-panel__content::after {
3820
+ content: " ";
3821
+ display: block;
3822
+ position: relative;
3823
+ left: calc(-4 * var(--base-unit, 8px));
3824
+ top: calc(5 * var(--base-unit, 8px));
3825
+ width: calc(8 * var(--base-unit, 8px) + 100%);
3826
+ height: 1px;
3827
+ background-color: var(--border, #d6d6d6); }
3828
+ .spg-theme-builder-root .spg-panel__content .spg-panel__content > .spg-row:first-of-type {
3829
+ margin-top: 0; }
3830
+
3831
+ .spg-theme-builder-root .spg-panel__content .spg-panel__content .spg-panel__content {
3832
+ padding-bottom: 0; }
3833
+ .spg-theme-builder-root .spg-panel__content .spg-panel__content .spg-panel__content::after {
3834
+ content: none; }
3835
+ .spg-theme-builder-root .spg-panel__content .spg-panel__content .spg-panel__content .spg-row {
3836
+ margin-top: calc(1 * var(--base-unit, 8px)); }
3837
+ .spg-theme-builder-root .spg-panel__content .spg-panel__content .spg-panel__content .spg-row:first-of-type {
3838
+ margin-top: 0; }
3839
+
3840
+ .spg-theme-builder-root .spg-panel__content .spg-row:last-of-type .spg-panel__content {
3841
+ padding-bottom: 0; }
3842
+ .spg-theme-builder-root .spg-panel__content .spg-row:last-of-type .spg-panel__content::after {
3843
+ content: none; }
3844
+
3704
3845
  .spg-root-modern {
3705
3846
  width: 100%;
3706
3847
  border-right: 1px solid var(--border, #d6d6d6);