survey-creator-core 1.9.104 → 1.9.105
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 +8 -9
- package/survey-creator-core.fontless.css +7 -8
- package/survey-creator-core.fontless.css.map +1 -1
- package/survey-creator-core.fontless.min.css +5 -5
- package/survey-creator-core.i18n.js +99 -99
- package/survey-creator-core.i18n.js.map +1 -1
- package/survey-creator-core.i18n.min.js +2 -2
- package/survey-creator-core.js +138 -73
- 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/tabs/test.d.ts +1 -0
- package/typings/components/tabs/theme.d.ts +1 -0
- package/typings/components/tabs/translation.d.ts +7 -1
- package/typings/editorLocalization.d.ts +2 -0
- package/typings/localization/english.d.ts +1 -0
- package/typings/property-grid/matrices.d.ts +0 -1
- package/typings/survey-elements.d.ts +2 -1
- package/typings/toolbox.d.ts +2 -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.105",
|
|
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.
|
|
37
|
+
"survey-core": "1.9.105"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {}
|
|
40
40
|
}
|
package/survey-creator-core.css
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* SurveyJS Creator v1.9.
|
|
2
|
+
* SurveyJS Creator v1.9.105
|
|
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.105
|
|
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
|
|
@@ -2463,13 +2463,12 @@ svc-question {
|
|
|
2463
2463
|
}
|
|
2464
2464
|
|
|
2465
2465
|
.svc-dragged-element-shortcut {
|
|
2466
|
-
min-width: 100px;
|
|
2467
2466
|
height: calc(3 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
|
2468
2467
|
border-radius: calc(12.5 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
|
2469
2468
|
background-color: var(--sjs-general-backcolor, var(--background, #fff));
|
|
2470
2469
|
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
|
2471
2470
|
padding: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px))) calc(1.5 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
|
2472
|
-
padding-right: calc(
|
|
2471
|
+
padding-right: calc(3.5 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
|
2473
2472
|
cursor: grabbing;
|
|
2474
2473
|
position: absolute;
|
|
2475
2474
|
z-index: 1000;
|
|
@@ -2478,7 +2477,6 @@ svc-question {
|
|
|
2478
2477
|
-webkit-user-select: none;
|
|
2479
2478
|
-ms-user-select: none;
|
|
2480
2479
|
user-select: none;
|
|
2481
|
-
max-width: 500px;
|
|
2482
2480
|
overflow: hidden;
|
|
2483
2481
|
white-space: nowrap;
|
|
2484
2482
|
text-overflow: ellipsis;
|
|
@@ -2794,6 +2792,9 @@ svc-question .sv-action-bar,
|
|
|
2794
2792
|
margin-bottom: 0;
|
|
2795
2793
|
}
|
|
2796
2794
|
|
|
2795
|
+
.svc-question__content .sd-element__header--location-top {
|
|
2796
|
+
margin-top: 0;
|
|
2797
|
+
}
|
|
2797
2798
|
.svc-question__content .sd-element--complex > .sd-element__header--location-top {
|
|
2798
2799
|
padding-bottom: calc(0.5 * var(--sd-base-vertical-padding));
|
|
2799
2800
|
padding-top: 0;
|
|
@@ -3026,7 +3027,7 @@ svc-question .sv-action-bar,
|
|
|
3026
3027
|
background: var(--sjs-general-backcolor-dim, var(--background-dim, #f3f3f3));
|
|
3027
3028
|
}
|
|
3028
3029
|
.svc-item-value--new .sv-ranking-item__index.sv-ranking-item__index--empty:empty {
|
|
3029
|
-
background-image: url(data:image/
|
|
3030
|
+
background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4NCjxwYXRoIGQ9Ik0xMyA3SDNWOUgxM1Y3WiIgZmlsbD0iYmxhY2siIGZpbGwtb3BhY2l0eT0iMC40NSIvPg0KPC9zdmc+);
|
|
3030
3031
|
}
|
|
3031
3032
|
|
|
3032
3033
|
.sv-ranking .svc-item-value-wrapper {
|
|
@@ -3262,9 +3263,6 @@ svc-question .sv-action-bar,
|
|
|
3262
3263
|
.svc-question__content .sd-table__cell--detail-panel {
|
|
3263
3264
|
padding-left: calc(6 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
|
3264
3265
|
}
|
|
3265
|
-
.svc-question__content .sd-table__cell--detail-panel .svc-question__adorner {
|
|
3266
|
-
z-index: 13;
|
|
3267
|
-
}
|
|
3268
3266
|
.svd-test-results {
|
|
3269
3267
|
font-family: var(--font-family);
|
|
3270
3268
|
width: 80%;
|
|
@@ -4235,6 +4233,7 @@ button.spg-action-button--large {
|
|
|
4235
4233
|
background-repeat: no-repeat;
|
|
4236
4234
|
background-position: 0 0;
|
|
4237
4235
|
line-height: calc(3 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
|
4236
|
+
white-space: normal;
|
|
4238
4237
|
background-image: url("data:image/svg+xml,%3Csvg width='24' height='20' viewBox='0 0 24 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M23.0336 15.4803L14.5736 1.45346C13.9936 0.487805 12.9936 0 12.0036 0C11.0136 0 10.0136 0.487805 9.43364 1.45346L0.973642 15.4803C-0.226358 17.4714 1.21364 20 3.54364 20H20.4536C22.7836 20 24.2236 17.4714 23.0236 15.4803H23.0336ZM21.3336 17.5112C21.2436 17.6605 20.9936 18.0189 20.4636 18.0189H3.54364C3.01364 18.0189 2.76364 17.6705 2.67364 17.5112C2.58364 17.3519 2.41364 16.9537 2.68364 16.5057L11.1436 2.47885C11.4036 2.04082 11.8336 1.99104 12.0036 1.99104C12.1736 1.99104 12.5936 2.04082 12.8636 2.47885L21.3136 16.5057C21.5836 16.9537 21.4136 17.3519 21.3236 17.5112H21.3336ZM13.0036 7.05824V12.0358C13.0036 12.5834 12.5536 13.0314 12.0036 13.0314C11.4536 13.0314 11.0036 12.5834 11.0036 12.0358V7.05824C11.0036 6.5107 11.4536 6.06272 12.0036 6.06272C12.5536 6.06272 13.0036 6.5107 13.0036 7.05824ZM13.0036 15.0224C13.0036 15.5699 12.5536 16.0179 12.0036 16.0179C11.4536 16.0179 11.0036 15.5699 11.0036 15.0224C11.0036 14.4749 11.4536 14.0269 12.0036 14.0269C12.5536 14.0269 13.0036 14.4749 13.0036 15.0224Z' fill='%23E60A3E'/%3E%3C/svg%3E");
|
|
4239
4238
|
}
|
|
4240
4239
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* SurveyJS Creator v1.9.
|
|
2
|
+
* SurveyJS Creator v1.9.105
|
|
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
|
|
@@ -2237,13 +2237,12 @@ svc-question {
|
|
|
2237
2237
|
}
|
|
2238
2238
|
|
|
2239
2239
|
.svc-dragged-element-shortcut {
|
|
2240
|
-
min-width: 100px;
|
|
2241
2240
|
height: calc(3 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
|
2242
2241
|
border-radius: calc(12.5 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
|
2243
2242
|
background-color: var(--sjs-general-backcolor, var(--background, #fff));
|
|
2244
2243
|
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
|
2245
2244
|
padding: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px))) calc(1.5 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
|
2246
|
-
padding-right: calc(
|
|
2245
|
+
padding-right: calc(3.5 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
|
2247
2246
|
cursor: grabbing;
|
|
2248
2247
|
position: absolute;
|
|
2249
2248
|
z-index: 1000;
|
|
@@ -2252,7 +2251,6 @@ svc-question {
|
|
|
2252
2251
|
-webkit-user-select: none;
|
|
2253
2252
|
-ms-user-select: none;
|
|
2254
2253
|
user-select: none;
|
|
2255
|
-
max-width: 500px;
|
|
2256
2254
|
overflow: hidden;
|
|
2257
2255
|
white-space: nowrap;
|
|
2258
2256
|
text-overflow: ellipsis;
|
|
@@ -2568,6 +2566,9 @@ svc-question .sv-action-bar,
|
|
|
2568
2566
|
margin-bottom: 0;
|
|
2569
2567
|
}
|
|
2570
2568
|
|
|
2569
|
+
.svc-question__content .sd-element__header--location-top {
|
|
2570
|
+
margin-top: 0;
|
|
2571
|
+
}
|
|
2571
2572
|
.svc-question__content .sd-element--complex > .sd-element__header--location-top {
|
|
2572
2573
|
padding-bottom: calc(0.5 * var(--sd-base-vertical-padding));
|
|
2573
2574
|
padding-top: 0;
|
|
@@ -2800,7 +2801,7 @@ svc-question .sv-action-bar,
|
|
|
2800
2801
|
background: var(--sjs-general-backcolor-dim, var(--background-dim, #f3f3f3));
|
|
2801
2802
|
}
|
|
2802
2803
|
.svc-item-value--new .sv-ranking-item__index.sv-ranking-item__index--empty:empty {
|
|
2803
|
-
background-image: url(data:image/
|
|
2804
|
+
background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4NCjxwYXRoIGQ9Ik0xMyA3SDNWOUgxM1Y3WiIgZmlsbD0iYmxhY2siIGZpbGwtb3BhY2l0eT0iMC40NSIvPg0KPC9zdmc+);
|
|
2804
2805
|
}
|
|
2805
2806
|
|
|
2806
2807
|
.sv-ranking .svc-item-value-wrapper {
|
|
@@ -3036,9 +3037,6 @@ svc-question .sv-action-bar,
|
|
|
3036
3037
|
.svc-question__content .sd-table__cell--detail-panel {
|
|
3037
3038
|
padding-left: calc(6 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
|
3038
3039
|
}
|
|
3039
|
-
.svc-question__content .sd-table__cell--detail-panel .svc-question__adorner {
|
|
3040
|
-
z-index: 13;
|
|
3041
|
-
}
|
|
3042
3040
|
.svd-test-results {
|
|
3043
3041
|
font-family: var(--font-family);
|
|
3044
3042
|
width: 80%;
|
|
@@ -4009,6 +4007,7 @@ button.spg-action-button--large {
|
|
|
4009
4007
|
background-repeat: no-repeat;
|
|
4010
4008
|
background-position: 0 0;
|
|
4011
4009
|
line-height: calc(3 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
|
4010
|
+
white-space: normal;
|
|
4012
4011
|
background-image: url("data:image/svg+xml,%3Csvg width='24' height='20' viewBox='0 0 24 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M23.0336 15.4803L14.5736 1.45346C13.9936 0.487805 12.9936 0 12.0036 0C11.0136 0 10.0136 0.487805 9.43364 1.45346L0.973642 15.4803C-0.226358 17.4714 1.21364 20 3.54364 20H20.4536C22.7836 20 24.2236 17.4714 23.0236 15.4803H23.0336ZM21.3336 17.5112C21.2436 17.6605 20.9936 18.0189 20.4636 18.0189H3.54364C3.01364 18.0189 2.76364 17.6705 2.67364 17.5112C2.58364 17.3519 2.41364 16.9537 2.68364 16.5057L11.1436 2.47885C11.4036 2.04082 11.8336 1.99104 12.0036 1.99104C12.1736 1.99104 12.5936 2.04082 12.8636 2.47885L21.3136 16.5057C21.5836 16.9537 21.4136 17.3519 21.3236 17.5112H21.3336ZM13.0036 7.05824V12.0358C13.0036 12.5834 12.5536 13.0314 12.0036 13.0314C11.4536 13.0314 11.0036 12.5834 11.0036 12.0358V7.05824C11.0036 6.5107 11.4536 6.06272 12.0036 6.06272C12.5536 6.06272 13.0036 6.5107 13.0036 7.05824ZM13.0036 15.0224C13.0036 15.5699 12.5536 16.0179 12.0036 16.0179C11.4536 16.0179 11.0036 15.5699 11.0036 15.0224C11.0036 14.4749 11.4536 14.0269 12.0036 14.0269C12.5536 14.0269 13.0036 14.4749 13.0036 15.0224Z' fill='%23E60A3E'/%3E%3C/svg%3E");
|
|
4013
4012
|
}
|
|
4014
4013
|
|