survey-creator-core 1.9.101 → 1.9.102
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 +12 -2
- package/survey-creator-core.fontless.css +11 -1
- package/survey-creator-core.fontless.css.map +1 -1
- package/survey-creator-core.fontless.min.css +3 -3
- package/survey-creator-core.i18n.js +25210 -8821
- package/survey-creator-core.i18n.js.map +1 -1
- package/survey-creator-core.i18n.min.js +2 -2
- package/survey-creator-core.js +69 -34
- package/survey-creator-core.js.map +1 -1
- package/survey-creator-core.min.css +4 -4
- package/survey-creator-core.min.js +2 -2
- package/typings/creator-base.d.ts +4 -1
- package/typings/creator-settings.d.ts +2 -2
- package/typings/editorLocalization.d.ts +15 -1
- package/typings/localization/english.d.ts +15 -1
- package/typings/survey-elements-dnd.d.ts +12 -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.102",
|
|
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.102"
|
|
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.102
|
|
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.102
|
|
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
|
|
@@ -2232,6 +2232,10 @@ svc-page {
|
|
|
2232
2232
|
min-height: 50px;
|
|
2233
2233
|
}
|
|
2234
2234
|
|
|
2235
|
+
.svc-row > .sd-row.sd-page__row {
|
|
2236
|
+
margin-top: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
|
2237
|
+
}
|
|
2238
|
+
|
|
2235
2239
|
.svc-row .sd-row--multiple {
|
|
2236
2240
|
overflow: auto;
|
|
2237
2241
|
padding: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
|
@@ -4704,6 +4708,12 @@ button.spg-action-button--large {
|
|
|
4704
4708
|
overflow: hidden;
|
|
4705
4709
|
max-width: 100px;
|
|
4706
4710
|
}
|
|
4711
|
+
.spg-table__cell--header span {
|
|
4712
|
+
display: none;
|
|
4713
|
+
}
|
|
4714
|
+
.spg-table__cell--header .sv-string-viewer {
|
|
4715
|
+
display: inline;
|
|
4716
|
+
}
|
|
4707
4717
|
|
|
4708
4718
|
.spg-table__question-wrapper {
|
|
4709
4719
|
padding: calc(0.5 * var(--sjs-base-unit, var(--base-unit, 8px))) 0;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* SurveyJS Creator v1.9.
|
|
2
|
+
* SurveyJS Creator v1.9.102
|
|
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
|
|
@@ -2006,6 +2006,10 @@ svc-page {
|
|
|
2006
2006
|
min-height: 50px;
|
|
2007
2007
|
}
|
|
2008
2008
|
|
|
2009
|
+
.svc-row > .sd-row.sd-page__row {
|
|
2010
|
+
margin-top: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
|
2011
|
+
}
|
|
2012
|
+
|
|
2009
2013
|
.svc-row .sd-row--multiple {
|
|
2010
2014
|
overflow: auto;
|
|
2011
2015
|
padding: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
|
@@ -4478,6 +4482,12 @@ button.spg-action-button--large {
|
|
|
4478
4482
|
overflow: hidden;
|
|
4479
4483
|
max-width: 100px;
|
|
4480
4484
|
}
|
|
4485
|
+
.spg-table__cell--header span {
|
|
4486
|
+
display: none;
|
|
4487
|
+
}
|
|
4488
|
+
.spg-table__cell--header .sv-string-viewer {
|
|
4489
|
+
display: inline;
|
|
4490
|
+
}
|
|
4481
4491
|
|
|
4482
4492
|
.spg-table__question-wrapper {
|
|
4483
4493
|
padding: calc(0.5 * var(--sjs-base-unit, var(--base-unit, 8px))) 0;
|