survey-creator-core 1.9.90 → 1.9.91
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 +53 -9
- package/survey-creator-core.fontless.css +52 -8
- package/survey-creator-core.fontless.css.map +1 -1
- package/survey-creator-core.fontless.min.css +5 -5
- package/survey-creator-core.i18n.js +1 -1
- package/survey-creator-core.i18n.min.js +1 -1
- package/survey-creator-core.js +721 -460
- package/survey-creator-core.js.map +1 -1
- package/survey-creator-core.min.css +6 -6
- package/survey-creator-core.min.js +3 -3
- package/typings/components/simulator.d.ts +0 -1
- package/typings/components/string-editor.d.ts +1 -0
- package/typings/components/tabs/theme-custom-questions/color-settings.d.ts +0 -4
- package/typings/components/tabs/theme-custom-questions/element-settings.d.ts +1 -0
- package/typings/components/tabs/theme-custom-questions/font-settings.d.ts +1 -0
- package/typings/components/tabs/theme-plugin.d.ts +3 -0
- package/typings/components/tabs/theme.d.ts +11 -39
- package/typings/creator-base.d.ts +2 -1
- package/typings/creator-settings.d.ts +4 -0
- package/typings/custom-questions/question-color.d.ts +10 -1
- package/typings/editorLocalization.d.ts +3 -0
- package/typings/entries/index.d.ts +2 -0
- package/typings/localization/english.d.ts +3 -0
- package/typings/property-grid-theme/property-grid.d.ts +3 -1
- package/typings/utils/utils.d.ts +4 -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.91",
|
|
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.91"
|
|
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.91
|
|
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.91
|
|
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
|
|
@@ -1519,6 +1519,9 @@ survey-creator,
|
|
|
1519
1519
|
.svc-string-editor.svc-string-editor--error:focus-within .svc-string-editor__border {
|
|
1520
1520
|
box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1), 0px 0px 0px calc(0.25 * var(--base-unit, 8px)) var(--red, #e60a3e); }
|
|
1521
1521
|
|
|
1522
|
+
.sd-boolean .sv-string-editor:focus-within {
|
|
1523
|
+
white-space: nowrap; }
|
|
1524
|
+
|
|
1522
1525
|
.sd-rating .sd-rating__item:focus-within {
|
|
1523
1526
|
border: calc(0.25 * var(--base-unit, 8px)) solid var(--primary, #19b394); }
|
|
1524
1527
|
|
|
@@ -2036,7 +2039,11 @@ svc-question {
|
|
|
2036
2039
|
-moz-user-select: none;
|
|
2037
2040
|
-webkit-user-select: none;
|
|
2038
2041
|
-ms-user-select: none;
|
|
2039
|
-
user-select: none;
|
|
2042
|
+
user-select: none;
|
|
2043
|
+
max-width: 500px;
|
|
2044
|
+
overflow: hidden;
|
|
2045
|
+
white-space: nowrap;
|
|
2046
|
+
text-overflow: ellipsis; }
|
|
2040
2047
|
|
|
2041
2048
|
.svc-dragged-element-shortcut .sv-svg-icon use {
|
|
2042
2049
|
fill: var(--primary, #19b394); }
|
|
@@ -2613,7 +2620,8 @@ svc-question .sv-action-bar,
|
|
|
2613
2620
|
display: none;
|
|
2614
2621
|
position: absolute;
|
|
2615
2622
|
top: calc(50% - 3 * var(--base-unit, 8px));
|
|
2616
|
-
left: calc(50% - 3 * var(--base-unit, 8px));
|
|
2623
|
+
left: calc(50% - 3 * var(--base-unit, 8px));
|
|
2624
|
+
z-index: 2; }
|
|
2617
2625
|
|
|
2618
2626
|
.svc-matrix-cell__question-controls-button {
|
|
2619
2627
|
display: block;
|
|
@@ -2640,6 +2648,12 @@ svc-question .sv-action-bar,
|
|
|
2640
2648
|
margin-top: calc(1 * var(--base-unit, 8px));
|
|
2641
2649
|
padding-top: 0; }
|
|
2642
2650
|
|
|
2651
|
+
.svc-matrix-cell__popup .svc-question__content {
|
|
2652
|
+
-moz-user-select: none;
|
|
2653
|
+
-webkit-user-select: none;
|
|
2654
|
+
-ms-user-select: none;
|
|
2655
|
+
user-select: none; }
|
|
2656
|
+
|
|
2643
2657
|
.svc-question__content .sd-table__cell--detail-panel .svc-question__adorner {
|
|
2644
2658
|
z-index: 13; }
|
|
2645
2659
|
|
|
@@ -3840,6 +3854,9 @@ button.spg-action-button--large {
|
|
|
3840
3854
|
align-items: center;
|
|
3841
3855
|
gap: calc(0.5 * var(--base-unit, 8px)); }
|
|
3842
3856
|
|
|
3857
|
+
.spg-color-editor__input {
|
|
3858
|
+
line-height: calc(3 * var(--base-unit, 8px)); }
|
|
3859
|
+
|
|
3843
3860
|
.spg-color-editor__color-input {
|
|
3844
3861
|
position: absolute;
|
|
3845
3862
|
height: 1px;
|
|
@@ -3848,18 +3865,37 @@ button.spg-action-button--large {
|
|
|
3848
3865
|
clip: rect(1px 1px 1px 1px);
|
|
3849
3866
|
/* IE6, IE7 */
|
|
3850
3867
|
clip: rect(1px, 1px, 1px, 1px);
|
|
3851
|
-
left:
|
|
3852
|
-
top:
|
|
3853
|
-
transform:
|
|
3868
|
+
left: 0;
|
|
3869
|
+
top: 100%;
|
|
3870
|
+
transform: translateY(-50%); }
|
|
3871
|
+
|
|
3872
|
+
.spg-color-editor__color-item {
|
|
3873
|
+
display: flex;
|
|
3874
|
+
gap: calc(2 * var(--base-unit, 8px)); }
|
|
3875
|
+
.spg-color-editor__color-item .spg-color-editor__color-swatch {
|
|
3876
|
+
margin-left: 0; }
|
|
3854
3877
|
|
|
3855
3878
|
.spg-color-editor__color-swatch {
|
|
3879
|
+
position: relative;
|
|
3856
3880
|
flex-shrink: 0;
|
|
3857
3881
|
flex-grow: 0;
|
|
3858
|
-
border: 1px solid rgba(0, 0, 0, 0.16);
|
|
3859
3882
|
border-radius: 3px;
|
|
3860
|
-
width: calc(4
|
|
3883
|
+
width: calc(4 * var(--base-unit, 8px));
|
|
3861
3884
|
height: calc(3 * var(--base-unit, 8px));
|
|
3885
|
+
box-sizing: border-box;
|
|
3886
|
+
border: 1px solid rgba(0, 0, 0, 0.16);
|
|
3862
3887
|
margin-left: calc(1.5 * var(--base-unit, 8px)); }
|
|
3888
|
+
.spg-color-editor__color-swatch .sv-svg-icon {
|
|
3889
|
+
position: absolute;
|
|
3890
|
+
width: calc(2 * var(--base-unit, 8px));
|
|
3891
|
+
height: calc(2 * var(--base-unit, 8px));
|
|
3892
|
+
left: 50%;
|
|
3893
|
+
top: 50%;
|
|
3894
|
+
transform: translate(-50%, -50%);
|
|
3895
|
+
fill: var(--background, #fff); }
|
|
3896
|
+
|
|
3897
|
+
.spg-color-editor div:last-child {
|
|
3898
|
+
display: none; }
|
|
3863
3899
|
|
|
3864
3900
|
.spg-file-edit__choose-button {
|
|
3865
3901
|
position: relative; }
|
|
@@ -3867,6 +3903,14 @@ button.spg-action-button--large {
|
|
|
3867
3903
|
.spg-link {
|
|
3868
3904
|
display: flex; }
|
|
3869
3905
|
|
|
3906
|
+
.spg-theme-builder-root .spg-paneldynamic__separator {
|
|
3907
|
+
border: none;
|
|
3908
|
+
height: calc(2 * var(--base-unit, 8px));
|
|
3909
|
+
margin: 0; }
|
|
3910
|
+
|
|
3911
|
+
.spg-theme-builder-root .spg-paneldynamic__remove-btn {
|
|
3912
|
+
display: none; }
|
|
3913
|
+
|
|
3870
3914
|
.spg-theme-builder-root .spg-row--multiple .spg-spin-editor .spg-input-container__buttons-container {
|
|
3871
3915
|
display: none; }
|
|
3872
3916
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* SurveyJS Creator v1.9.
|
|
2
|
+
* SurveyJS Creator v1.9.91
|
|
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
|
|
@@ -1293,6 +1293,9 @@ survey-creator,
|
|
|
1293
1293
|
.svc-string-editor.svc-string-editor--error:focus-within .svc-string-editor__border {
|
|
1294
1294
|
box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1), 0px 0px 0px calc(0.25 * var(--base-unit, 8px)) var(--red, #e60a3e); }
|
|
1295
1295
|
|
|
1296
|
+
.sd-boolean .sv-string-editor:focus-within {
|
|
1297
|
+
white-space: nowrap; }
|
|
1298
|
+
|
|
1296
1299
|
.sd-rating .sd-rating__item:focus-within {
|
|
1297
1300
|
border: calc(0.25 * var(--base-unit, 8px)) solid var(--primary, #19b394); }
|
|
1298
1301
|
|
|
@@ -1810,7 +1813,11 @@ svc-question {
|
|
|
1810
1813
|
-moz-user-select: none;
|
|
1811
1814
|
-webkit-user-select: none;
|
|
1812
1815
|
-ms-user-select: none;
|
|
1813
|
-
user-select: none;
|
|
1816
|
+
user-select: none;
|
|
1817
|
+
max-width: 500px;
|
|
1818
|
+
overflow: hidden;
|
|
1819
|
+
white-space: nowrap;
|
|
1820
|
+
text-overflow: ellipsis; }
|
|
1814
1821
|
|
|
1815
1822
|
.svc-dragged-element-shortcut .sv-svg-icon use {
|
|
1816
1823
|
fill: var(--primary, #19b394); }
|
|
@@ -2387,7 +2394,8 @@ svc-question .sv-action-bar,
|
|
|
2387
2394
|
display: none;
|
|
2388
2395
|
position: absolute;
|
|
2389
2396
|
top: calc(50% - 3 * var(--base-unit, 8px));
|
|
2390
|
-
left: calc(50% - 3 * var(--base-unit, 8px));
|
|
2397
|
+
left: calc(50% - 3 * var(--base-unit, 8px));
|
|
2398
|
+
z-index: 2; }
|
|
2391
2399
|
|
|
2392
2400
|
.svc-matrix-cell__question-controls-button {
|
|
2393
2401
|
display: block;
|
|
@@ -2414,6 +2422,12 @@ svc-question .sv-action-bar,
|
|
|
2414
2422
|
margin-top: calc(1 * var(--base-unit, 8px));
|
|
2415
2423
|
padding-top: 0; }
|
|
2416
2424
|
|
|
2425
|
+
.svc-matrix-cell__popup .svc-question__content {
|
|
2426
|
+
-moz-user-select: none;
|
|
2427
|
+
-webkit-user-select: none;
|
|
2428
|
+
-ms-user-select: none;
|
|
2429
|
+
user-select: none; }
|
|
2430
|
+
|
|
2417
2431
|
.svc-question__content .sd-table__cell--detail-panel .svc-question__adorner {
|
|
2418
2432
|
z-index: 13; }
|
|
2419
2433
|
|
|
@@ -3614,6 +3628,9 @@ button.spg-action-button--large {
|
|
|
3614
3628
|
align-items: center;
|
|
3615
3629
|
gap: calc(0.5 * var(--base-unit, 8px)); }
|
|
3616
3630
|
|
|
3631
|
+
.spg-color-editor__input {
|
|
3632
|
+
line-height: calc(3 * var(--base-unit, 8px)); }
|
|
3633
|
+
|
|
3617
3634
|
.spg-color-editor__color-input {
|
|
3618
3635
|
position: absolute;
|
|
3619
3636
|
height: 1px;
|
|
@@ -3622,18 +3639,37 @@ button.spg-action-button--large {
|
|
|
3622
3639
|
clip: rect(1px 1px 1px 1px);
|
|
3623
3640
|
/* IE6, IE7 */
|
|
3624
3641
|
clip: rect(1px, 1px, 1px, 1px);
|
|
3625
|
-
left:
|
|
3626
|
-
top:
|
|
3627
|
-
transform:
|
|
3642
|
+
left: 0;
|
|
3643
|
+
top: 100%;
|
|
3644
|
+
transform: translateY(-50%); }
|
|
3645
|
+
|
|
3646
|
+
.spg-color-editor__color-item {
|
|
3647
|
+
display: flex;
|
|
3648
|
+
gap: calc(2 * var(--base-unit, 8px)); }
|
|
3649
|
+
.spg-color-editor__color-item .spg-color-editor__color-swatch {
|
|
3650
|
+
margin-left: 0; }
|
|
3628
3651
|
|
|
3629
3652
|
.spg-color-editor__color-swatch {
|
|
3653
|
+
position: relative;
|
|
3630
3654
|
flex-shrink: 0;
|
|
3631
3655
|
flex-grow: 0;
|
|
3632
|
-
border: 1px solid rgba(0, 0, 0, 0.16);
|
|
3633
3656
|
border-radius: 3px;
|
|
3634
|
-
width: calc(4
|
|
3657
|
+
width: calc(4 * var(--base-unit, 8px));
|
|
3635
3658
|
height: calc(3 * var(--base-unit, 8px));
|
|
3659
|
+
box-sizing: border-box;
|
|
3660
|
+
border: 1px solid rgba(0, 0, 0, 0.16);
|
|
3636
3661
|
margin-left: calc(1.5 * var(--base-unit, 8px)); }
|
|
3662
|
+
.spg-color-editor__color-swatch .sv-svg-icon {
|
|
3663
|
+
position: absolute;
|
|
3664
|
+
width: calc(2 * var(--base-unit, 8px));
|
|
3665
|
+
height: calc(2 * var(--base-unit, 8px));
|
|
3666
|
+
left: 50%;
|
|
3667
|
+
top: 50%;
|
|
3668
|
+
transform: translate(-50%, -50%);
|
|
3669
|
+
fill: var(--background, #fff); }
|
|
3670
|
+
|
|
3671
|
+
.spg-color-editor div:last-child {
|
|
3672
|
+
display: none; }
|
|
3637
3673
|
|
|
3638
3674
|
.spg-file-edit__choose-button {
|
|
3639
3675
|
position: relative; }
|
|
@@ -3641,6 +3677,14 @@ button.spg-action-button--large {
|
|
|
3641
3677
|
.spg-link {
|
|
3642
3678
|
display: flex; }
|
|
3643
3679
|
|
|
3680
|
+
.spg-theme-builder-root .spg-paneldynamic__separator {
|
|
3681
|
+
border: none;
|
|
3682
|
+
height: calc(2 * var(--base-unit, 8px));
|
|
3683
|
+
margin: 0; }
|
|
3684
|
+
|
|
3685
|
+
.spg-theme-builder-root .spg-paneldynamic__remove-btn {
|
|
3686
|
+
display: none; }
|
|
3687
|
+
|
|
3644
3688
|
.spg-theme-builder-root .spg-row--multiple .spg-spin-editor .spg-input-container__buttons-container {
|
|
3645
3689
|
display: none; }
|
|
3646
3690
|
|