survey-creator-core 1.9.96 → 1.9.97
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 +1 -1
- package/survey-creator-core.i18n.min.js +1 -1
- package/survey-creator-core.js +355 -132
- 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/components/string-editor.d.ts +1 -1
- package/typings/components/tabs/logic-theme.d.ts +3 -0
- package/typings/components/tabs/theme.d.ts +6 -1
- package/typings/components/tabs/translation-theme.d.ts +0 -1
- package/typings/creator-base.d.ts +14 -3
- package/typings/creator-settings.d.ts +1 -0
- package/typings/custom-questions/question-spin-editor.d.ts +1 -0
- package/typings/editorLocalization.d.ts +4 -0
- package/typings/localization/english.d.ts +4 -0
- package/typings/plugins/undo-redo/undo-redo-controller.d.ts +1 -0
- package/typings/plugins/undo-redo/undo-redo-manager.d.ts +7 -0
- package/typings/property-grid/index.d.ts +2 -0
- package/typings/property-grid/matrices.d.ts +1 -0
- package/typings/property-grid-theme/property-grid.d.ts +4 -1
- package/typings/textWorker.d.ts +33 -6
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.97",
|
|
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.97"
|
|
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.97
|
|
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.97
|
|
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
|
|
@@ -1227,6 +1227,7 @@ svc-tab-designer {
|
|
|
1227
1227
|
flex-grow: 1;
|
|
1228
1228
|
height: 100%;
|
|
1229
1229
|
overflow-y: scroll;
|
|
1230
|
+
position: static;
|
|
1230
1231
|
}
|
|
1231
1232
|
|
|
1232
1233
|
.svc-tab-designer--with-place-holder .svc-tab-designer_content {
|
|
@@ -4293,6 +4294,10 @@ button.spg-action-button--large {
|
|
|
4293
4294
|
line-height: unset;
|
|
4294
4295
|
}
|
|
4295
4296
|
|
|
4297
|
+
.spg-dropdown_chevron-button {
|
|
4298
|
+
line-height: normal;
|
|
4299
|
+
}
|
|
4300
|
+
|
|
4296
4301
|
.spg-comment {
|
|
4297
4302
|
height: calc(9 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
|
4298
4303
|
max-width: 100%;
|
|
@@ -4593,12 +4598,17 @@ button.spg-action-button--large {
|
|
|
4593
4598
|
box-shadow: inset 0 0 0 2px var(--sjs-primary-backcolor, var(--primary, #19b394));
|
|
4594
4599
|
}
|
|
4595
4600
|
|
|
4601
|
+
.spg-table__cell:not(.spg-table__cell--detail-panel) .spg-dropdown_chevron-button {
|
|
4602
|
+
display: none;
|
|
4603
|
+
}
|
|
4604
|
+
|
|
4596
4605
|
.spg-table__cell:not(.spg-table__cell--detail-panel) .spg-dropdown {
|
|
4597
4606
|
width: max-content;
|
|
4598
4607
|
padding-right: calc(4 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
|
4599
4608
|
background-size: calc(3 * var(--sjs-base-unit, var(--base-unit, 8px))) calc(3 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
|
4600
4609
|
background-position: right calc(0.5 * var(--sjs-base-unit, var(--base-unit, 8px))) top 50%, 0 0;
|
|
4601
4610
|
background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 15L17 10H7L12 15Z' fill='%2390909080'/%3E%3C/svg%3E%0A");
|
|
4611
|
+
background-repeat: no-repeat;
|
|
4602
4612
|
}
|
|
4603
4613
|
|
|
4604
4614
|
.spg-table__cell:not(.spg-table__cell--detail-panel):first-of-type .spg-text {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* SurveyJS Creator v1.9.
|
|
2
|
+
* SurveyJS Creator v1.9.97
|
|
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
|
|
@@ -1001,6 +1001,7 @@ svc-tab-designer {
|
|
|
1001
1001
|
flex-grow: 1;
|
|
1002
1002
|
height: 100%;
|
|
1003
1003
|
overflow-y: scroll;
|
|
1004
|
+
position: static;
|
|
1004
1005
|
}
|
|
1005
1006
|
|
|
1006
1007
|
.svc-tab-designer--with-place-holder .svc-tab-designer_content {
|
|
@@ -4067,6 +4068,10 @@ button.spg-action-button--large {
|
|
|
4067
4068
|
line-height: unset;
|
|
4068
4069
|
}
|
|
4069
4070
|
|
|
4071
|
+
.spg-dropdown_chevron-button {
|
|
4072
|
+
line-height: normal;
|
|
4073
|
+
}
|
|
4074
|
+
|
|
4070
4075
|
.spg-comment {
|
|
4071
4076
|
height: calc(9 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
|
4072
4077
|
max-width: 100%;
|
|
@@ -4367,12 +4372,17 @@ button.spg-action-button--large {
|
|
|
4367
4372
|
box-shadow: inset 0 0 0 2px var(--sjs-primary-backcolor, var(--primary, #19b394));
|
|
4368
4373
|
}
|
|
4369
4374
|
|
|
4375
|
+
.spg-table__cell:not(.spg-table__cell--detail-panel) .spg-dropdown_chevron-button {
|
|
4376
|
+
display: none;
|
|
4377
|
+
}
|
|
4378
|
+
|
|
4370
4379
|
.spg-table__cell:not(.spg-table__cell--detail-panel) .spg-dropdown {
|
|
4371
4380
|
width: max-content;
|
|
4372
4381
|
padding-right: calc(4 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
|
4373
4382
|
background-size: calc(3 * var(--sjs-base-unit, var(--base-unit, 8px))) calc(3 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
|
4374
4383
|
background-position: right calc(0.5 * var(--sjs-base-unit, var(--base-unit, 8px))) top 50%, 0 0;
|
|
4375
4384
|
background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 15L17 10H7L12 15Z' fill='%2390909080'/%3E%3C/svg%3E%0A");
|
|
4385
|
+
background-repeat: no-repeat;
|
|
4376
4386
|
}
|
|
4377
4387
|
|
|
4378
4388
|
.spg-table__cell:not(.spg-table__cell--detail-panel):first-of-type .spg-text {
|