survey-creator-core 1.9.91 → 1.9.93
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 +63 -13
- package/survey-creator-core.fontless.css +62 -12
- package/survey-creator-core.fontless.css.map +1 -1
- package/survey-creator-core.fontless.min.css +3 -3
- package/survey-creator-core.i18n.js +1 -1
- package/survey-creator-core.i18n.min.js +1 -1
- package/survey-creator-core.js +201 -48
- package/survey-creator-core.js.map +1 -1
- package/survey-creator-core.min.css +4 -4
- package/survey-creator-core.min.js +3 -3
- package/typings/components/action-container-view-model.d.ts +1 -0
- package/typings/components/question.d.ts +8 -1
- package/typings/components/tabs/theme-plugin.d.ts +1 -0
- package/typings/components/tabs/theme.d.ts +1 -0
- package/typings/creator-base.d.ts +2 -0
- package/typings/editorLocalization.d.ts +4 -1
- package/typings/localization/english.d.ts +4 -1
- package/typings/plugins/undo-redo/undo-redo-manager.d.ts +1 -1
- package/typings/property-grid/condition-survey.d.ts +1 -1
- package/typings/property-grid/index.d.ts +2 -0
- package/typings/property-grid-theme/property-grid.d.ts +1 -0
- package/typings/questionconverter.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.93",
|
|
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.
|
|
32
|
+
"survey-core": "1.9.93"
|
|
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.93
|
|
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.93
|
|
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
|
|
@@ -1912,6 +1912,29 @@ svc-page {
|
|
|
1912
1912
|
.sd-panel__content .svc-row--drag-over-bottom:after {
|
|
1913
1913
|
bottom: -6px; }
|
|
1914
1914
|
|
|
1915
|
+
.svc-carry-forward-panel {
|
|
1916
|
+
box-sizing: border-box;
|
|
1917
|
+
width: 100%;
|
|
1918
|
+
padding: calc(4 * var(--base-unit, 8px)) calc(8 * var(--base-unit, 8px));
|
|
1919
|
+
margin-top: calc(2 * var(--base-unit, 8px));
|
|
1920
|
+
border-radius: calc(1 * var(--base-unit, 8px));
|
|
1921
|
+
background-color: #F8F8F8;
|
|
1922
|
+
text-align: center;
|
|
1923
|
+
font-weight: 400;
|
|
1924
|
+
font-size: calc(2 * var(--base-unit, 8px));
|
|
1925
|
+
line-height: calc(3 * var(--base-unit, 8px));
|
|
1926
|
+
color: rgba(0, 0, 0, 0.45); }
|
|
1927
|
+
|
|
1928
|
+
.svc-carry-forward-panel__link .svc-action-button {
|
|
1929
|
+
padding: 0;
|
|
1930
|
+
border: none;
|
|
1931
|
+
font-weight: inherit;
|
|
1932
|
+
color: inherit;
|
|
1933
|
+
text-decoration: underline;
|
|
1934
|
+
cursor: pointer; }
|
|
1935
|
+
.svc-carry-forward-panel__link .svc-action-button:hover, .svc-carry-forward-panel__link .svc-action-button:focus {
|
|
1936
|
+
background-color: transparent; }
|
|
1937
|
+
|
|
1915
1938
|
svc-question {
|
|
1916
1939
|
display: block;
|
|
1917
1940
|
position: absolute;
|
|
@@ -1947,9 +1970,6 @@ svc-question {
|
|
|
1947
1970
|
border: 2px solid transparent;
|
|
1948
1971
|
outline: none; }
|
|
1949
1972
|
|
|
1950
|
-
.svc-question__content .sd-element__header .sd-description {
|
|
1951
|
-
margin-top: 0; }
|
|
1952
|
-
|
|
1953
1973
|
.svc-question__content .sd-selectbase:not(.sd-imagepicker) {
|
|
1954
1974
|
overflow-x: auto;
|
|
1955
1975
|
padding-left: calc(5 * var(--base-unit, 8px));
|
|
@@ -3310,6 +3330,11 @@ svc-toolbox {
|
|
|
3310
3330
|
padding: calc(1 * var(--base-unit, 8px));
|
|
3311
3331
|
box-sizing: border-box;
|
|
3312
3332
|
border: none;
|
|
3333
|
+
color: var(--primary, #19b394);
|
|
3334
|
+
font-weight: 600;
|
|
3335
|
+
font-size: calc(2 * var(--base-unit, 8px));
|
|
3336
|
+
line-height: calc(3 * var(--base-unit, 8px));
|
|
3337
|
+
font-family: var(--font-family);
|
|
3313
3338
|
border-radius: calc(12.5 * var(--base-unit, 8px));
|
|
3314
3339
|
background-color: transparent;
|
|
3315
3340
|
cursor: pointer; }
|
|
@@ -3325,10 +3350,12 @@ svc-toolbox {
|
|
|
3325
3350
|
.spg-action-button__icon use {
|
|
3326
3351
|
fill: var(--foreground-light, #909090); }
|
|
3327
3352
|
|
|
3328
|
-
.spg-action-button--danger
|
|
3329
|
-
|
|
3330
|
-
.spg-action-button--danger:hover
|
|
3331
|
-
|
|
3353
|
+
.spg-action-button--danger {
|
|
3354
|
+
color: var(--red, #e60a3e); }
|
|
3355
|
+
.spg-action-button--danger:hover, .spg-action-button--danger:focus {
|
|
3356
|
+
background-color: var(--red-light, rgba(229, 10, 62, 0.1)); }
|
|
3357
|
+
.spg-action-button--danger:hover use, .spg-action-button--danger:focus use {
|
|
3358
|
+
fill: var(--red, #e60a3e); }
|
|
3332
3359
|
|
|
3333
3360
|
button.spg-action-button--large {
|
|
3334
3361
|
padding: calc(0.5 * var(--base-unit, 8px)) calc(2 * var(--base-unit, 8px)); }
|
|
@@ -3344,6 +3371,9 @@ button.spg-action-button--large {
|
|
|
3344
3371
|
.spg-action-button:active {
|
|
3345
3372
|
opacity: 0.5; }
|
|
3346
3373
|
|
|
3374
|
+
.spg-action-button--text {
|
|
3375
|
+
padding: calc(0.5 * var(--base-unit, 8px)) calc(2 * var(--base-unit, 8px)); }
|
|
3376
|
+
|
|
3347
3377
|
.spg-question {
|
|
3348
3378
|
display: flex;
|
|
3349
3379
|
flex-direction: column;
|
|
@@ -3400,6 +3430,9 @@ button.spg-action-button--large {
|
|
|
3400
3430
|
.spg-row-narrow__question {
|
|
3401
3431
|
margin-top: calc(-2 * var(--base-unit, 8px)); }
|
|
3402
3432
|
|
|
3433
|
+
.spg-row--multiple > div > .spg-row-narrow__question {
|
|
3434
|
+
margin-top: calc(-1 * var(--base-unit, 8px)); }
|
|
3435
|
+
|
|
3403
3436
|
.spg-question--location--left {
|
|
3404
3437
|
flex-direction: row;
|
|
3405
3438
|
background: var(--background, #fff);
|
|
@@ -3905,11 +3938,14 @@ button.spg-action-button--large {
|
|
|
3905
3938
|
|
|
3906
3939
|
.spg-theme-builder-root .spg-paneldynamic__separator {
|
|
3907
3940
|
border: none;
|
|
3908
|
-
|
|
3909
|
-
|
|
3941
|
+
margin: 0;
|
|
3942
|
+
height: calc(2 * var(--base-unit, 8px)); }
|
|
3910
3943
|
|
|
3911
|
-
.spg-theme-builder-root .spg-
|
|
3912
|
-
|
|
3944
|
+
.spg-theme-builder-root .spg-panel__footer {
|
|
3945
|
+
margin: calc(1 * var(--base-unit, 8px)) auto 0; }
|
|
3946
|
+
|
|
3947
|
+
.spg-theme-builder-root .spg-paneldynamic__add-btn {
|
|
3948
|
+
margin: 0 auto; }
|
|
3913
3949
|
|
|
3914
3950
|
.spg-theme-builder-root .spg-row--multiple .spg-spin-editor .spg-input-container__buttons-container {
|
|
3915
3951
|
display: none; }
|
|
@@ -3973,6 +4009,20 @@ button.spg-action-button--large {
|
|
|
3973
4009
|
.spg-theme-builder-root .spg-panel__content .spg-row:last-of-type .spg-panel__content::after {
|
|
3974
4010
|
content: none; }
|
|
3975
4011
|
|
|
4012
|
+
.spg-boolean-wrapper--overriding.spg-boolean-wrapper--overriding {
|
|
4013
|
+
min-width: 0;
|
|
4014
|
+
flex: 0 0 max-content; }
|
|
4015
|
+
|
|
4016
|
+
.spg-link-wrapper--overriding {
|
|
4017
|
+
align-self: end; }
|
|
4018
|
+
.spg-link-wrapper--overriding .svc-action-button {
|
|
4019
|
+
text-decoration: underline;
|
|
4020
|
+
padding: 0;
|
|
4021
|
+
border: none;
|
|
4022
|
+
margin: 0; }
|
|
4023
|
+
.spg-link-wrapper--overriding .svc-action-button:focus, .spg-link-wrapper--overriding .svc-action-button:hover {
|
|
4024
|
+
background-color: transparent; }
|
|
4025
|
+
|
|
3976
4026
|
.spg-root-modern {
|
|
3977
4027
|
width: 100%;
|
|
3978
4028
|
border-right: 1px solid var(--border, #d6d6d6);
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* SurveyJS Creator v1.9.
|
|
2
|
+
* SurveyJS Creator v1.9.93
|
|
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
|
|
@@ -1686,6 +1686,29 @@ svc-page {
|
|
|
1686
1686
|
.sd-panel__content .svc-row--drag-over-bottom:after {
|
|
1687
1687
|
bottom: -6px; }
|
|
1688
1688
|
|
|
1689
|
+
.svc-carry-forward-panel {
|
|
1690
|
+
box-sizing: border-box;
|
|
1691
|
+
width: 100%;
|
|
1692
|
+
padding: calc(4 * var(--base-unit, 8px)) calc(8 * var(--base-unit, 8px));
|
|
1693
|
+
margin-top: calc(2 * var(--base-unit, 8px));
|
|
1694
|
+
border-radius: calc(1 * var(--base-unit, 8px));
|
|
1695
|
+
background-color: #F8F8F8;
|
|
1696
|
+
text-align: center;
|
|
1697
|
+
font-weight: 400;
|
|
1698
|
+
font-size: calc(2 * var(--base-unit, 8px));
|
|
1699
|
+
line-height: calc(3 * var(--base-unit, 8px));
|
|
1700
|
+
color: rgba(0, 0, 0, 0.45); }
|
|
1701
|
+
|
|
1702
|
+
.svc-carry-forward-panel__link .svc-action-button {
|
|
1703
|
+
padding: 0;
|
|
1704
|
+
border: none;
|
|
1705
|
+
font-weight: inherit;
|
|
1706
|
+
color: inherit;
|
|
1707
|
+
text-decoration: underline;
|
|
1708
|
+
cursor: pointer; }
|
|
1709
|
+
.svc-carry-forward-panel__link .svc-action-button:hover, .svc-carry-forward-panel__link .svc-action-button:focus {
|
|
1710
|
+
background-color: transparent; }
|
|
1711
|
+
|
|
1689
1712
|
svc-question {
|
|
1690
1713
|
display: block;
|
|
1691
1714
|
position: absolute;
|
|
@@ -1721,9 +1744,6 @@ svc-question {
|
|
|
1721
1744
|
border: 2px solid transparent;
|
|
1722
1745
|
outline: none; }
|
|
1723
1746
|
|
|
1724
|
-
.svc-question__content .sd-element__header .sd-description {
|
|
1725
|
-
margin-top: 0; }
|
|
1726
|
-
|
|
1727
1747
|
.svc-question__content .sd-selectbase:not(.sd-imagepicker) {
|
|
1728
1748
|
overflow-x: auto;
|
|
1729
1749
|
padding-left: calc(5 * var(--base-unit, 8px));
|
|
@@ -3084,6 +3104,11 @@ svc-toolbox {
|
|
|
3084
3104
|
padding: calc(1 * var(--base-unit, 8px));
|
|
3085
3105
|
box-sizing: border-box;
|
|
3086
3106
|
border: none;
|
|
3107
|
+
color: var(--primary, #19b394);
|
|
3108
|
+
font-weight: 600;
|
|
3109
|
+
font-size: calc(2 * var(--base-unit, 8px));
|
|
3110
|
+
line-height: calc(3 * var(--base-unit, 8px));
|
|
3111
|
+
font-family: var(--font-family);
|
|
3087
3112
|
border-radius: calc(12.5 * var(--base-unit, 8px));
|
|
3088
3113
|
background-color: transparent;
|
|
3089
3114
|
cursor: pointer; }
|
|
@@ -3099,10 +3124,12 @@ svc-toolbox {
|
|
|
3099
3124
|
.spg-action-button__icon use {
|
|
3100
3125
|
fill: var(--foreground-light, #909090); }
|
|
3101
3126
|
|
|
3102
|
-
.spg-action-button--danger
|
|
3103
|
-
|
|
3104
|
-
.spg-action-button--danger:hover
|
|
3105
|
-
|
|
3127
|
+
.spg-action-button--danger {
|
|
3128
|
+
color: var(--red, #e60a3e); }
|
|
3129
|
+
.spg-action-button--danger:hover, .spg-action-button--danger:focus {
|
|
3130
|
+
background-color: var(--red-light, rgba(229, 10, 62, 0.1)); }
|
|
3131
|
+
.spg-action-button--danger:hover use, .spg-action-button--danger:focus use {
|
|
3132
|
+
fill: var(--red, #e60a3e); }
|
|
3106
3133
|
|
|
3107
3134
|
button.spg-action-button--large {
|
|
3108
3135
|
padding: calc(0.5 * var(--base-unit, 8px)) calc(2 * var(--base-unit, 8px)); }
|
|
@@ -3118,6 +3145,9 @@ button.spg-action-button--large {
|
|
|
3118
3145
|
.spg-action-button:active {
|
|
3119
3146
|
opacity: 0.5; }
|
|
3120
3147
|
|
|
3148
|
+
.spg-action-button--text {
|
|
3149
|
+
padding: calc(0.5 * var(--base-unit, 8px)) calc(2 * var(--base-unit, 8px)); }
|
|
3150
|
+
|
|
3121
3151
|
.spg-question {
|
|
3122
3152
|
display: flex;
|
|
3123
3153
|
flex-direction: column;
|
|
@@ -3174,6 +3204,9 @@ button.spg-action-button--large {
|
|
|
3174
3204
|
.spg-row-narrow__question {
|
|
3175
3205
|
margin-top: calc(-2 * var(--base-unit, 8px)); }
|
|
3176
3206
|
|
|
3207
|
+
.spg-row--multiple > div > .spg-row-narrow__question {
|
|
3208
|
+
margin-top: calc(-1 * var(--base-unit, 8px)); }
|
|
3209
|
+
|
|
3177
3210
|
.spg-question--location--left {
|
|
3178
3211
|
flex-direction: row;
|
|
3179
3212
|
background: var(--background, #fff);
|
|
@@ -3679,11 +3712,14 @@ button.spg-action-button--large {
|
|
|
3679
3712
|
|
|
3680
3713
|
.spg-theme-builder-root .spg-paneldynamic__separator {
|
|
3681
3714
|
border: none;
|
|
3682
|
-
|
|
3683
|
-
|
|
3715
|
+
margin: 0;
|
|
3716
|
+
height: calc(2 * var(--base-unit, 8px)); }
|
|
3684
3717
|
|
|
3685
|
-
.spg-theme-builder-root .spg-
|
|
3686
|
-
|
|
3718
|
+
.spg-theme-builder-root .spg-panel__footer {
|
|
3719
|
+
margin: calc(1 * var(--base-unit, 8px)) auto 0; }
|
|
3720
|
+
|
|
3721
|
+
.spg-theme-builder-root .spg-paneldynamic__add-btn {
|
|
3722
|
+
margin: 0 auto; }
|
|
3687
3723
|
|
|
3688
3724
|
.spg-theme-builder-root .spg-row--multiple .spg-spin-editor .spg-input-container__buttons-container {
|
|
3689
3725
|
display: none; }
|
|
@@ -3747,6 +3783,20 @@ button.spg-action-button--large {
|
|
|
3747
3783
|
.spg-theme-builder-root .spg-panel__content .spg-row:last-of-type .spg-panel__content::after {
|
|
3748
3784
|
content: none; }
|
|
3749
3785
|
|
|
3786
|
+
.spg-boolean-wrapper--overriding.spg-boolean-wrapper--overriding {
|
|
3787
|
+
min-width: 0;
|
|
3788
|
+
flex: 0 0 max-content; }
|
|
3789
|
+
|
|
3790
|
+
.spg-link-wrapper--overriding {
|
|
3791
|
+
align-self: end; }
|
|
3792
|
+
.spg-link-wrapper--overriding .svc-action-button {
|
|
3793
|
+
text-decoration: underline;
|
|
3794
|
+
padding: 0;
|
|
3795
|
+
border: none;
|
|
3796
|
+
margin: 0; }
|
|
3797
|
+
.spg-link-wrapper--overriding .svc-action-button:focus, .spg-link-wrapper--overriding .svc-action-button:hover {
|
|
3798
|
+
background-color: transparent; }
|
|
3799
|
+
|
|
3750
3800
|
.spg-root-modern {
|
|
3751
3801
|
width: 100%;
|
|
3752
3802
|
border-right: 1px solid var(--border, #d6d6d6);
|