survey-creator-core 1.9.86 → 1.9.87
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 +3 -3
- package/survey-creator-core.css +13 -33
- package/survey-creator-core.fontless.css +12 -32
- package/survey-creator-core.fontless.css.map +1 -1
- package/survey-creator-core.fontless.min.css +2 -2
- package/survey-creator-core.i18n.js +9 -1832
- package/survey-creator-core.i18n.js.map +1 -1
- package/survey-creator-core.i18n.min.js +2 -2
- package/survey-creator-core.js +10 -4
- package/survey-creator-core.js.map +1 -1
- package/survey-creator-core.min.css +3 -3
- package/survey-creator-core.min.js +2 -2
- package/typings/creator-base.d.ts +18 -0
- package/typings/questionconverter.d.ts +1 -0
package/fonts.fontless.css
CHANGED
package/fonts.fontless.min.css
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "survey-creator-core",
|
|
3
|
-
"version": "1.9.
|
|
4
|
-
"description": "Use SurveyJS Creator to create or edit JSON for SurveyJS Library.",
|
|
3
|
+
"version": "1.9.87",
|
|
4
|
+
"description": "Use SurveyJS Creator to create or edit JSON for SurveyJS Form Library.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Survey",
|
|
7
7
|
"Survey Creator",
|
|
@@ -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.87"
|
|
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.87
|
|
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.87
|
|
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
|
|
@@ -3229,22 +3229,13 @@ button.spg-action-button--large {
|
|
|
3229
3229
|
align-items: stretch; }
|
|
3230
3230
|
.spg-question--location--left:focus-within {
|
|
3231
3231
|
border-color: var(--primary, #19b394);
|
|
3232
|
-
box-shadow:
|
|
3233
|
-
.spg-question--location--left:focus-within .spg-question__header--location--left {
|
|
3234
|
-
box-shadow: none;
|
|
3235
|
-
border: 1px solid var(--primary, #19b394);
|
|
3236
|
-
border-left: none;
|
|
3237
|
-
border-right: none;
|
|
3238
|
-
box-shadow: inset 1px 0 0 0 var(--primary, #19b394); }
|
|
3239
|
-
.spg-question--location--left .spg-input:focus {
|
|
3240
|
-
border: 1px solid var(--primary, #19b394);
|
|
3241
|
-
border-left: none;
|
|
3242
|
-
border-right: none;
|
|
3243
|
-
box-shadow: inset -1px 0 0 0 var(--primary, #19b394); }
|
|
3232
|
+
box-shadow: 0 0 0 1px var(--primary, #19b394); }
|
|
3244
3233
|
|
|
3245
3234
|
.spg-question__header--location--left {
|
|
3246
3235
|
width: auto;
|
|
3236
|
+
box-sizing: border-box;
|
|
3247
3237
|
max-width: 50%;
|
|
3238
|
+
flex: 1;
|
|
3248
3239
|
display: flex;
|
|
3249
3240
|
align-items: center; }
|
|
3250
3241
|
.spg-question__header--location--left .spg-question__title {
|
|
@@ -3252,13 +3243,16 @@ button.spg-action-button--large {
|
|
|
3252
3243
|
border-right: 1px solid var(--border, #d6d6d6);
|
|
3253
3244
|
display: inline-block; }
|
|
3254
3245
|
|
|
3255
|
-
.spg-question__content--left
|
|
3256
|
-
|
|
3246
|
+
.spg-question__content--left {
|
|
3247
|
+
flex: 2; }
|
|
3248
|
+
.spg-question__content--left .spg-input.spg-input.spg-input {
|
|
3249
|
+
border: none; }
|
|
3250
|
+
.spg-question__content--left .spg-input.spg-input.spg-input:focus, .spg-question__content--left .spg-input.spg-input.spg-input:focus-within {
|
|
3251
|
+
box-shadow: none; }
|
|
3257
3252
|
|
|
3258
3253
|
.spg-row--multiple {
|
|
3259
3254
|
display: flex;
|
|
3260
3255
|
gap: calc(1 * var(--base-unit, 8px));
|
|
3261
|
-
overflow: hidden;
|
|
3262
3256
|
flex-wrap: wrap; }
|
|
3263
3257
|
.spg-row--multiple > div {
|
|
3264
3258
|
flex-grow: 1;
|
|
@@ -3339,7 +3333,8 @@ button.spg-action-button--large {
|
|
|
3339
3333
|
outline: none;
|
|
3340
3334
|
width: calc(5 * var(--base-unit, 8px));
|
|
3341
3335
|
height: calc(5 * var(--base-unit, 8px));
|
|
3342
|
-
padding: calc(1 * var(--base-unit, 8px));
|
|
3336
|
+
padding: calc(1 * var(--base-unit, 8px));
|
|
3337
|
+
line-height: 0; }
|
|
3343
3338
|
.spg-input__edit-button:hover {
|
|
3344
3339
|
background: var(--background-dim, #f3f3f3); }
|
|
3345
3340
|
.spg-input__edit-button:active {
|
|
@@ -3671,21 +3666,6 @@ button.spg-action-button--large {
|
|
|
3671
3666
|
.spg-question-group .spg-row:not(:first-of-type) {
|
|
3672
3667
|
margin-top: calc(1 * var(--base-unit, 8px)); }
|
|
3673
3668
|
|
|
3674
|
-
.spg-question-group .spg-question--location--left {
|
|
3675
|
-
box-sizing: border-box; }
|
|
3676
|
-
.spg-question-group .spg-question--location--left:focus-within {
|
|
3677
|
-
box-shadow: 0 0 0 1px var(--primary, #19b394); }
|
|
3678
|
-
.spg-question-group .spg-question--location--left .spg-question__header--location--left {
|
|
3679
|
-
width: auto;
|
|
3680
|
-
flex: 1;
|
|
3681
|
-
border: none;
|
|
3682
|
-
box-shadow: none; }
|
|
3683
|
-
.spg-question-group .spg-question--location--left .spg-question__content--left {
|
|
3684
|
-
width: auto;
|
|
3685
|
-
flex: 2; }
|
|
3686
|
-
.spg-question-group .spg-question--location--left .spg-question__content--left .spg-input.spg-dropdown:focus-within {
|
|
3687
|
-
box-shadow: none; }
|
|
3688
|
-
|
|
3689
3669
|
.spg-input-container {
|
|
3690
3670
|
display: flex;
|
|
3691
3671
|
justify-content: space-between;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* SurveyJS Creator v1.9.
|
|
2
|
+
* SurveyJS Creator v1.9.87
|
|
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
|
|
@@ -3003,22 +3003,13 @@ button.spg-action-button--large {
|
|
|
3003
3003
|
align-items: stretch; }
|
|
3004
3004
|
.spg-question--location--left:focus-within {
|
|
3005
3005
|
border-color: var(--primary, #19b394);
|
|
3006
|
-
box-shadow:
|
|
3007
|
-
.spg-question--location--left:focus-within .spg-question__header--location--left {
|
|
3008
|
-
box-shadow: none;
|
|
3009
|
-
border: 1px solid var(--primary, #19b394);
|
|
3010
|
-
border-left: none;
|
|
3011
|
-
border-right: none;
|
|
3012
|
-
box-shadow: inset 1px 0 0 0 var(--primary, #19b394); }
|
|
3013
|
-
.spg-question--location--left .spg-input:focus {
|
|
3014
|
-
border: 1px solid var(--primary, #19b394);
|
|
3015
|
-
border-left: none;
|
|
3016
|
-
border-right: none;
|
|
3017
|
-
box-shadow: inset -1px 0 0 0 var(--primary, #19b394); }
|
|
3006
|
+
box-shadow: 0 0 0 1px var(--primary, #19b394); }
|
|
3018
3007
|
|
|
3019
3008
|
.spg-question__header--location--left {
|
|
3020
3009
|
width: auto;
|
|
3010
|
+
box-sizing: border-box;
|
|
3021
3011
|
max-width: 50%;
|
|
3012
|
+
flex: 1;
|
|
3022
3013
|
display: flex;
|
|
3023
3014
|
align-items: center; }
|
|
3024
3015
|
.spg-question__header--location--left .spg-question__title {
|
|
@@ -3026,13 +3017,16 @@ button.spg-action-button--large {
|
|
|
3026
3017
|
border-right: 1px solid var(--border, #d6d6d6);
|
|
3027
3018
|
display: inline-block; }
|
|
3028
3019
|
|
|
3029
|
-
.spg-question__content--left
|
|
3030
|
-
|
|
3020
|
+
.spg-question__content--left {
|
|
3021
|
+
flex: 2; }
|
|
3022
|
+
.spg-question__content--left .spg-input.spg-input.spg-input {
|
|
3023
|
+
border: none; }
|
|
3024
|
+
.spg-question__content--left .spg-input.spg-input.spg-input:focus, .spg-question__content--left .spg-input.spg-input.spg-input:focus-within {
|
|
3025
|
+
box-shadow: none; }
|
|
3031
3026
|
|
|
3032
3027
|
.spg-row--multiple {
|
|
3033
3028
|
display: flex;
|
|
3034
3029
|
gap: calc(1 * var(--base-unit, 8px));
|
|
3035
|
-
overflow: hidden;
|
|
3036
3030
|
flex-wrap: wrap; }
|
|
3037
3031
|
.spg-row--multiple > div {
|
|
3038
3032
|
flex-grow: 1;
|
|
@@ -3113,7 +3107,8 @@ button.spg-action-button--large {
|
|
|
3113
3107
|
outline: none;
|
|
3114
3108
|
width: calc(5 * var(--base-unit, 8px));
|
|
3115
3109
|
height: calc(5 * var(--base-unit, 8px));
|
|
3116
|
-
padding: calc(1 * var(--base-unit, 8px));
|
|
3110
|
+
padding: calc(1 * var(--base-unit, 8px));
|
|
3111
|
+
line-height: 0; }
|
|
3117
3112
|
.spg-input__edit-button:hover {
|
|
3118
3113
|
background: var(--background-dim, #f3f3f3); }
|
|
3119
3114
|
.spg-input__edit-button:active {
|
|
@@ -3445,21 +3440,6 @@ button.spg-action-button--large {
|
|
|
3445
3440
|
.spg-question-group .spg-row:not(:first-of-type) {
|
|
3446
3441
|
margin-top: calc(1 * var(--base-unit, 8px)); }
|
|
3447
3442
|
|
|
3448
|
-
.spg-question-group .spg-question--location--left {
|
|
3449
|
-
box-sizing: border-box; }
|
|
3450
|
-
.spg-question-group .spg-question--location--left:focus-within {
|
|
3451
|
-
box-shadow: 0 0 0 1px var(--primary, #19b394); }
|
|
3452
|
-
.spg-question-group .spg-question--location--left .spg-question__header--location--left {
|
|
3453
|
-
width: auto;
|
|
3454
|
-
flex: 1;
|
|
3455
|
-
border: none;
|
|
3456
|
-
box-shadow: none; }
|
|
3457
|
-
.spg-question-group .spg-question--location--left .spg-question__content--left {
|
|
3458
|
-
width: auto;
|
|
3459
|
-
flex: 2; }
|
|
3460
|
-
.spg-question-group .spg-question--location--left .spg-question__content--left .spg-input.spg-dropdown:focus-within {
|
|
3461
|
-
box-shadow: none; }
|
|
3462
|
-
|
|
3463
3443
|
.spg-input-container {
|
|
3464
3444
|
display: flex;
|
|
3465
3445
|
justify-content: space-between;
|