survey-creator-core 1.9.84 → 1.9.85
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/fonts.fontless.css +1 -1
- package/fonts.fontless.min.css +1 -1
- package/package.json +2 -2
- package/survey-creator-core.css +29 -13
- package/survey-creator-core.fontless.css +28 -12
- package/survey-creator-core.fontless.css.map +1 -1
- package/survey-creator-core.fontless.min.css +5 -5
- package/survey-creator-core.i18n.js +1 -1
- package/survey-creator-core.i18n.min.js +1 -1
- package/survey-creator-core.js +89 -19
- package/survey-creator-core.js.map +1 -1
- package/survey-creator-core.min.css +6 -6
- package/survey-creator-core.min.js +2 -2
- package/typings/components/question-rating.d.ts +3 -0
- package/typings/components/tabs/designer.d.ts +1 -0
- package/typings/creator-base.d.ts +1 -1
- package/typings/creator-settings.d.ts +3 -0
- package/typings/editorLocalization.d.ts +3 -0
- package/typings/localization/english.d.ts +3 -0
- package/typings/property-grid/matrices.d.ts +3 -0
- package/typings/survey-helper.d.ts +1 -0
package/fonts.fontless.css
CHANGED
package/fonts.fontless.min.css
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "survey-creator-core",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.85",
|
|
4
4
|
"description": "Use SurveyJS Creator to create or edit JSON for SurveyJS 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.
|
|
32
|
+
"survey-core": "1.9.85"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {}
|
|
35
35
|
}
|
package/survey-creator-core.css
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* SurveyJS Creator v1.9.
|
|
2
|
+
* SurveyJS Creator v1.9.85
|
|
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.
|
|
228
|
+
* SurveyJS Creator v1.9.85
|
|
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
|
|
@@ -1037,7 +1037,8 @@ svc-tab-designer {
|
|
|
1037
1037
|
|
|
1038
1038
|
.svc-tab-designer--with-place-holder .svc-tab-designer_content {
|
|
1039
1039
|
display: flex;
|
|
1040
|
-
justify-content: center;
|
|
1040
|
+
justify-content: center;
|
|
1041
|
+
flex-direction: column; }
|
|
1041
1042
|
|
|
1042
1043
|
.svc-tab-designer--with-place-holder .svc-designer-header {
|
|
1043
1044
|
min-width: calc(84 * var(--base-unit, 8px)); }
|
|
@@ -1070,8 +1071,14 @@ svc-tab-designer {
|
|
|
1070
1071
|
border-bottom: 2px solid transparent; }
|
|
1071
1072
|
|
|
1072
1073
|
.svc-designer__placeholder-container {
|
|
1073
|
-
|
|
1074
|
-
|
|
1074
|
+
display: flex;
|
|
1075
|
+
flex-grow: 1;
|
|
1076
|
+
width: 100%;
|
|
1077
|
+
flex-direction: column;
|
|
1078
|
+
align-items: center;
|
|
1079
|
+
justify-content: center;
|
|
1080
|
+
padding: calc(2 * var(--base-unit, 8px));
|
|
1081
|
+
box-sizing: border-box; }
|
|
1075
1082
|
|
|
1076
1083
|
.svc-designer-placeholder-page {
|
|
1077
1084
|
margin-top: calc(2 * var(--base-unit, 8px)); }
|
|
@@ -1462,7 +1469,9 @@ survey-creator,
|
|
|
1462
1469
|
justify-content: center;
|
|
1463
1470
|
color: var(--primary, #19b394); }
|
|
1464
1471
|
|
|
1465
|
-
.svc-btn:hover
|
|
1472
|
+
.svc-btn:hover {
|
|
1473
|
+
background-color: var(--sjs-general-backcolor-dark, #f8f8f8); }
|
|
1474
|
+
|
|
1466
1475
|
.svc-btn:focus {
|
|
1467
1476
|
box-shadow: 0 0 0 2px var(--primary, #19b394); }
|
|
1468
1477
|
|
|
@@ -1798,6 +1807,9 @@ svc-question {
|
|
|
1798
1807
|
border: 2px solid transparent;
|
|
1799
1808
|
outline: none; }
|
|
1800
1809
|
|
|
1810
|
+
.svc-question__content .sd-element__header .sd-description {
|
|
1811
|
+
margin-top: 0; }
|
|
1812
|
+
|
|
1801
1813
|
.svc-question__content .sd-selectbase:not(.sd-imagepicker) {
|
|
1802
1814
|
overflow-x: auto;
|
|
1803
1815
|
padding-left: calc(5 * var(--base-unit, 8px));
|
|
@@ -1845,6 +1857,8 @@ svc-question {
|
|
|
1845
1857
|
.svc-question__content-actions .sv-action--convertTo .sv-action-bar-item__title--with-icon {
|
|
1846
1858
|
margin-inline-start: 0;
|
|
1847
1859
|
margin-inline-end: calc(0.5 * var(--base-unit, 8px)); }
|
|
1860
|
+
.svc-question__content-actions .sv-action--convertTo.sv-action--hidden {
|
|
1861
|
+
min-width: 0; }
|
|
1848
1862
|
.svc-question__content-actions .sv-action--convertTo-last {
|
|
1849
1863
|
margin-inline-end: auto; }
|
|
1850
1864
|
|
|
@@ -3237,18 +3251,13 @@ button.spg-action-button--large {
|
|
|
3237
3251
|
overflow: hidden;
|
|
3238
3252
|
flex-wrap: wrap; }
|
|
3239
3253
|
.spg-row--multiple > div {
|
|
3240
|
-
width: 0;
|
|
3241
3254
|
flex-grow: 1;
|
|
3242
3255
|
min-width: calc(25.5 * var(--base-unit, 8px)); }
|
|
3243
3256
|
.spg-row--multiple > div .spg-question__header--location--left {
|
|
3244
3257
|
min-width: calc(8 * var(--base-unit, 8px)); }
|
|
3245
3258
|
.spg-row--multiple > div input {
|
|
3246
|
-
min-width: calc(17 * var(--base-unit, 8px));
|
|
3247
|
-
width:
|
|
3248
|
-
.spg-row--multiple > div input[type="date"] {
|
|
3249
|
-
width: 100%; }
|
|
3250
|
-
.spg-row--multiple > div input[type="date"]::-webkit-calendar-picker-indicator {
|
|
3251
|
-
display: none; }
|
|
3259
|
+
min-width: calc(max(17 * var(--base-unit, 8px), 100%));
|
|
3260
|
+
width: 0; }
|
|
3252
3261
|
|
|
3253
3262
|
.spg-question__erbox {
|
|
3254
3263
|
padding: calc(1 * var(--base-unit, 8px)) calc(1.5 * var(--base-unit, 8px)) calc(1 * var(--base-unit, 8px)) calc(1.5 * var(--base-unit, 8px));
|
|
@@ -3729,6 +3738,13 @@ button.spg-action-button--large {
|
|
|
3729
3738
|
margin-left: calc(1 * var(--base-unit, 8px));
|
|
3730
3739
|
margin-right: calc(1 * var(--base-unit, 8px)); }
|
|
3731
3740
|
|
|
3741
|
+
.svc-object-selector__content {
|
|
3742
|
+
position: relative;
|
|
3743
|
+
height: 100%;
|
|
3744
|
+
min-height: 0;
|
|
3745
|
+
display: flex;
|
|
3746
|
+
flex-direction: column; }
|
|
3747
|
+
|
|
3732
3748
|
.spg-title .spg-action-bar {
|
|
3733
3749
|
margin-top: calc(-1 * var(--base-unit, 8px));
|
|
3734
3750
|
margin-bottom: calc(-1 * var(--base-unit, 8px));
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* SurveyJS Creator v1.9.
|
|
2
|
+
* SurveyJS Creator v1.9.85
|
|
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
|
|
@@ -811,7 +811,8 @@ svc-tab-designer {
|
|
|
811
811
|
|
|
812
812
|
.svc-tab-designer--with-place-holder .svc-tab-designer_content {
|
|
813
813
|
display: flex;
|
|
814
|
-
justify-content: center;
|
|
814
|
+
justify-content: center;
|
|
815
|
+
flex-direction: column; }
|
|
815
816
|
|
|
816
817
|
.svc-tab-designer--with-place-holder .svc-designer-header {
|
|
817
818
|
min-width: calc(84 * var(--base-unit, 8px)); }
|
|
@@ -844,8 +845,14 @@ svc-tab-designer {
|
|
|
844
845
|
border-bottom: 2px solid transparent; }
|
|
845
846
|
|
|
846
847
|
.svc-designer__placeholder-container {
|
|
847
|
-
|
|
848
|
-
|
|
848
|
+
display: flex;
|
|
849
|
+
flex-grow: 1;
|
|
850
|
+
width: 100%;
|
|
851
|
+
flex-direction: column;
|
|
852
|
+
align-items: center;
|
|
853
|
+
justify-content: center;
|
|
854
|
+
padding: calc(2 * var(--base-unit, 8px));
|
|
855
|
+
box-sizing: border-box; }
|
|
849
856
|
|
|
850
857
|
.svc-designer-placeholder-page {
|
|
851
858
|
margin-top: calc(2 * var(--base-unit, 8px)); }
|
|
@@ -1236,7 +1243,9 @@ survey-creator,
|
|
|
1236
1243
|
justify-content: center;
|
|
1237
1244
|
color: var(--primary, #19b394); }
|
|
1238
1245
|
|
|
1239
|
-
.svc-btn:hover
|
|
1246
|
+
.svc-btn:hover {
|
|
1247
|
+
background-color: var(--sjs-general-backcolor-dark, #f8f8f8); }
|
|
1248
|
+
|
|
1240
1249
|
.svc-btn:focus {
|
|
1241
1250
|
box-shadow: 0 0 0 2px var(--primary, #19b394); }
|
|
1242
1251
|
|
|
@@ -1572,6 +1581,9 @@ svc-question {
|
|
|
1572
1581
|
border: 2px solid transparent;
|
|
1573
1582
|
outline: none; }
|
|
1574
1583
|
|
|
1584
|
+
.svc-question__content .sd-element__header .sd-description {
|
|
1585
|
+
margin-top: 0; }
|
|
1586
|
+
|
|
1575
1587
|
.svc-question__content .sd-selectbase:not(.sd-imagepicker) {
|
|
1576
1588
|
overflow-x: auto;
|
|
1577
1589
|
padding-left: calc(5 * var(--base-unit, 8px));
|
|
@@ -1619,6 +1631,8 @@ svc-question {
|
|
|
1619
1631
|
.svc-question__content-actions .sv-action--convertTo .sv-action-bar-item__title--with-icon {
|
|
1620
1632
|
margin-inline-start: 0;
|
|
1621
1633
|
margin-inline-end: calc(0.5 * var(--base-unit, 8px)); }
|
|
1634
|
+
.svc-question__content-actions .sv-action--convertTo.sv-action--hidden {
|
|
1635
|
+
min-width: 0; }
|
|
1622
1636
|
.svc-question__content-actions .sv-action--convertTo-last {
|
|
1623
1637
|
margin-inline-end: auto; }
|
|
1624
1638
|
|
|
@@ -3011,18 +3025,13 @@ button.spg-action-button--large {
|
|
|
3011
3025
|
overflow: hidden;
|
|
3012
3026
|
flex-wrap: wrap; }
|
|
3013
3027
|
.spg-row--multiple > div {
|
|
3014
|
-
width: 0;
|
|
3015
3028
|
flex-grow: 1;
|
|
3016
3029
|
min-width: calc(25.5 * var(--base-unit, 8px)); }
|
|
3017
3030
|
.spg-row--multiple > div .spg-question__header--location--left {
|
|
3018
3031
|
min-width: calc(8 * var(--base-unit, 8px)); }
|
|
3019
3032
|
.spg-row--multiple > div input {
|
|
3020
|
-
min-width: calc(17 * var(--base-unit, 8px));
|
|
3021
|
-
width:
|
|
3022
|
-
.spg-row--multiple > div input[type="date"] {
|
|
3023
|
-
width: 100%; }
|
|
3024
|
-
.spg-row--multiple > div input[type="date"]::-webkit-calendar-picker-indicator {
|
|
3025
|
-
display: none; }
|
|
3033
|
+
min-width: calc(max(17 * var(--base-unit, 8px), 100%));
|
|
3034
|
+
width: 0; }
|
|
3026
3035
|
|
|
3027
3036
|
.spg-question__erbox {
|
|
3028
3037
|
padding: calc(1 * var(--base-unit, 8px)) calc(1.5 * var(--base-unit, 8px)) calc(1 * var(--base-unit, 8px)) calc(1.5 * var(--base-unit, 8px));
|
|
@@ -3503,6 +3512,13 @@ button.spg-action-button--large {
|
|
|
3503
3512
|
margin-left: calc(1 * var(--base-unit, 8px));
|
|
3504
3513
|
margin-right: calc(1 * var(--base-unit, 8px)); }
|
|
3505
3514
|
|
|
3515
|
+
.svc-object-selector__content {
|
|
3516
|
+
position: relative;
|
|
3517
|
+
height: 100%;
|
|
3518
|
+
min-height: 0;
|
|
3519
|
+
display: flex;
|
|
3520
|
+
flex-direction: column; }
|
|
3521
|
+
|
|
3506
3522
|
.spg-title .spg-action-bar {
|
|
3507
3523
|
margin-top: calc(-1 * var(--base-unit, 8px));
|
|
3508
3524
|
margin-bottom: calc(-1 * var(--base-unit, 8px));
|