survey-creator-core 1.9.87 → 1.9.88
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 +25 -8
- package/survey-creator-core.fontless.css +24 -7
- package/survey-creator-core.fontless.css.map +1 -1
- package/survey-creator-core.fontless.min.css +4 -4
- package/survey-creator-core.i18n.js +5 -1
- package/survey-creator-core.i18n.js.map +1 -1
- package/survey-creator-core.i18n.min.js +2 -2
- package/survey-creator-core.js +89 -7
- package/survey-creator-core.js.map +1 -1
- package/survey-creator-core.min.css +5 -5
- package/survey-creator-core.min.js +2 -2
- package/typings/components/question-image.d.ts +9 -1
- package/typings/components/question.d.ts +2 -0
- package/typings/editorLocalization.d.ts +6 -0
- package/typings/localization/english.d.ts +6 -0
- package/typings/plugins/undo-redo/undo-redo-manager.d.ts +2 -0
- package/typings/toolbox.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.88",
|
|
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.88"
|
|
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.88
|
|
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.88
|
|
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
|
|
@@ -1324,12 +1324,14 @@ survey-creator,
|
|
|
1324
1324
|
.svc-string-editor .sv-string-editor {
|
|
1325
1325
|
position: relative;
|
|
1326
1326
|
outline: none;
|
|
1327
|
-
white-space: pre-wrap;
|
|
1328
1327
|
word-break: break-word;
|
|
1329
1328
|
z-index: 12; }
|
|
1330
1329
|
.svc-string-editor .sv-string-editor[aria-placeholder]:empty:before {
|
|
1331
1330
|
content: attr(aria-placeholder);
|
|
1332
1331
|
color: var(--foreground-light, #909090); }
|
|
1332
|
+
.svc-string-editor .sv-string-editor--html,
|
|
1333
|
+
.svc-string-editor .sv-string-editor:focus-within {
|
|
1334
|
+
white-space: pre-wrap; }
|
|
1333
1335
|
.svc-string-editor.svc-string-editor--hidden {
|
|
1334
1336
|
display: none; }
|
|
1335
1337
|
|
|
@@ -2169,9 +2171,16 @@ svc-question .sv-action-bar,
|
|
|
2169
2171
|
.svc-image-question-controls__button:hover use {
|
|
2170
2172
|
fill: var(--primary, #19b394); }
|
|
2171
2173
|
|
|
2172
|
-
.svc-question__content--image {
|
|
2174
|
+
.svc-question__content--image:not(.svc-question__content--empty) {
|
|
2173
2175
|
padding: calc(4 * var(--base-unit, 8px)) 0 calc(8 * var(--base-unit, 8px)) 0; }
|
|
2174
2176
|
|
|
2177
|
+
.svc-question__content--image.svc-question__content--empty .sd-file,
|
|
2178
|
+
.svc-question__content--image.svc-question__content--empty sv-ng-file-question {
|
|
2179
|
+
width: 100%; }
|
|
2180
|
+
|
|
2181
|
+
.svc-question__content--image.svc-question__content--empty .sd-question--image {
|
|
2182
|
+
display: none; }
|
|
2183
|
+
|
|
2175
2184
|
.svc-rating-question-controls {
|
|
2176
2185
|
position: absolute; }
|
|
2177
2186
|
|
|
@@ -2200,12 +2209,16 @@ svc-question .sv-action-bar,
|
|
|
2200
2209
|
display: flex;
|
|
2201
2210
|
gap: calc(1 * var(--base-unit, 8px));
|
|
2202
2211
|
align-items: center;
|
|
2203
|
-
margin-left: calc(-5 * var(--base-unit, 8px));
|
|
2204
|
-
min-width: calc(27 * var(--base-unit, 8px)); }
|
|
2212
|
+
margin-left: calc(-5 * var(--base-unit, 8px)); }
|
|
2205
2213
|
|
|
2206
2214
|
.svc-question__dropdown-choice .svc-item-value-wrapper,
|
|
2207
2215
|
.sd-selectbase .svc-item-value-wrapper {
|
|
2208
|
-
align-items: flex-start;
|
|
2216
|
+
align-items: flex-start;
|
|
2217
|
+
min-width: calc(28 * var(--base-unit, 8px)); }
|
|
2218
|
+
|
|
2219
|
+
.svc-question__dropdown-choice .svc-item-value__item,
|
|
2220
|
+
.sd-selectbase .svc-item-value__item {
|
|
2221
|
+
padding-right: calc(1 * var(--base-unit, 8px)); }
|
|
2209
2222
|
|
|
2210
2223
|
.svc-question__content .sd-selectbase__column:not(.sd-imagepicker__column):not(:first-of-type) {
|
|
2211
2224
|
margin-left: calc(5 * var(--base-unit, 8px)); }
|
|
@@ -2296,7 +2309,11 @@ svc-question .sv-action-bar,
|
|
|
2296
2309
|
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAACCAYAAABhYU3QAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAaSURBVHgBjcABDQAACAKwa2X6b1Tghxi8UQEkAAB3NR3N2gAAAABJRU5ErkJggg==); }
|
|
2297
2310
|
|
|
2298
2311
|
.sv-ranking .svc-item-value-wrapper {
|
|
2299
|
-
align-items: center;
|
|
2312
|
+
align-items: center;
|
|
2313
|
+
min-width: calc(27 * var(--base-unit, 8px)); }
|
|
2314
|
+
|
|
2315
|
+
.sv-ranking .svc-item-value__item {
|
|
2316
|
+
padding-right: 0; }
|
|
2300
2317
|
|
|
2301
2318
|
.svc-item-value__item .sv-ranking-item__content {
|
|
2302
2319
|
padding-left: 0; }
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* SurveyJS Creator v1.9.
|
|
2
|
+
* SurveyJS Creator v1.9.88
|
|
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
|
|
@@ -1098,12 +1098,14 @@ survey-creator,
|
|
|
1098
1098
|
.svc-string-editor .sv-string-editor {
|
|
1099
1099
|
position: relative;
|
|
1100
1100
|
outline: none;
|
|
1101
|
-
white-space: pre-wrap;
|
|
1102
1101
|
word-break: break-word;
|
|
1103
1102
|
z-index: 12; }
|
|
1104
1103
|
.svc-string-editor .sv-string-editor[aria-placeholder]:empty:before {
|
|
1105
1104
|
content: attr(aria-placeholder);
|
|
1106
1105
|
color: var(--foreground-light, #909090); }
|
|
1106
|
+
.svc-string-editor .sv-string-editor--html,
|
|
1107
|
+
.svc-string-editor .sv-string-editor:focus-within {
|
|
1108
|
+
white-space: pre-wrap; }
|
|
1107
1109
|
.svc-string-editor.svc-string-editor--hidden {
|
|
1108
1110
|
display: none; }
|
|
1109
1111
|
|
|
@@ -1943,9 +1945,16 @@ svc-question .sv-action-bar,
|
|
|
1943
1945
|
.svc-image-question-controls__button:hover use {
|
|
1944
1946
|
fill: var(--primary, #19b394); }
|
|
1945
1947
|
|
|
1946
|
-
.svc-question__content--image {
|
|
1948
|
+
.svc-question__content--image:not(.svc-question__content--empty) {
|
|
1947
1949
|
padding: calc(4 * var(--base-unit, 8px)) 0 calc(8 * var(--base-unit, 8px)) 0; }
|
|
1948
1950
|
|
|
1951
|
+
.svc-question__content--image.svc-question__content--empty .sd-file,
|
|
1952
|
+
.svc-question__content--image.svc-question__content--empty sv-ng-file-question {
|
|
1953
|
+
width: 100%; }
|
|
1954
|
+
|
|
1955
|
+
.svc-question__content--image.svc-question__content--empty .sd-question--image {
|
|
1956
|
+
display: none; }
|
|
1957
|
+
|
|
1949
1958
|
.svc-rating-question-controls {
|
|
1950
1959
|
position: absolute; }
|
|
1951
1960
|
|
|
@@ -1974,12 +1983,16 @@ svc-question .sv-action-bar,
|
|
|
1974
1983
|
display: flex;
|
|
1975
1984
|
gap: calc(1 * var(--base-unit, 8px));
|
|
1976
1985
|
align-items: center;
|
|
1977
|
-
margin-left: calc(-5 * var(--base-unit, 8px));
|
|
1978
|
-
min-width: calc(27 * var(--base-unit, 8px)); }
|
|
1986
|
+
margin-left: calc(-5 * var(--base-unit, 8px)); }
|
|
1979
1987
|
|
|
1980
1988
|
.svc-question__dropdown-choice .svc-item-value-wrapper,
|
|
1981
1989
|
.sd-selectbase .svc-item-value-wrapper {
|
|
1982
|
-
align-items: flex-start;
|
|
1990
|
+
align-items: flex-start;
|
|
1991
|
+
min-width: calc(28 * var(--base-unit, 8px)); }
|
|
1992
|
+
|
|
1993
|
+
.svc-question__dropdown-choice .svc-item-value__item,
|
|
1994
|
+
.sd-selectbase .svc-item-value__item {
|
|
1995
|
+
padding-right: calc(1 * var(--base-unit, 8px)); }
|
|
1983
1996
|
|
|
1984
1997
|
.svc-question__content .sd-selectbase__column:not(.sd-imagepicker__column):not(:first-of-type) {
|
|
1985
1998
|
margin-left: calc(5 * var(--base-unit, 8px)); }
|
|
@@ -2070,7 +2083,11 @@ svc-question .sv-action-bar,
|
|
|
2070
2083
|
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAACCAYAAABhYU3QAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAaSURBVHgBjcABDQAACAKwa2X6b1Tghxi8UQEkAAB3NR3N2gAAAABJRU5ErkJggg==); }
|
|
2071
2084
|
|
|
2072
2085
|
.sv-ranking .svc-item-value-wrapper {
|
|
2073
|
-
align-items: center;
|
|
2086
|
+
align-items: center;
|
|
2087
|
+
min-width: calc(27 * var(--base-unit, 8px)); }
|
|
2088
|
+
|
|
2089
|
+
.sv-ranking .svc-item-value__item {
|
|
2090
|
+
padding-right: 0; }
|
|
2074
2091
|
|
|
2075
2092
|
.svc-item-value__item .sv-ranking-item__content {
|
|
2076
2093
|
padding-left: 0; }
|