survey-react 1.9.121 → 1.9.122
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/README.md +5 -1
- package/defaultV2.css +56 -1
- package/defaultV2.css.map +1 -1
- package/defaultV2.min.css +2 -2
- package/modern.css +1 -1
- package/modern.min.css +1 -1
- package/package.json +1 -1
- package/survey.css +1 -1
- package/survey.min.css +1 -1
- package/survey.react.d.ts +58 -35
- package/survey.react.js +170 -82
- package/survey.react.js.map +1 -1
- package/survey.react.min.js +3 -3
package/README.md
CHANGED
@@ -1,5 +1,9 @@
|
|
1
1
|
# SurveyJS Form Library for React
|
2
2
|
|
3
|
+
|
4
|
+
https://github.com/surveyjs/survey-library/assets/22315929/525f2ba6-21e8-4e82-a836-887fb2be4af3
|
5
|
+
|
6
|
+
|
3
7
|
SurveyJS Form Library is a free and open-source MIT-licensed JavaScript form builder library that allows you to design dynamic, data-driven, multi-language survey forms and run them in your web applications.
|
4
8
|
|
5
9
|
> **NOTE**: This package contains a legacy Knockout-dependent version of SurveyJS Form Library for React. We recommend using a new [native implementation of SurveyJS React Form Library](https://www.npmjs.com/package/survey-react-ui). For information on how to integrate it into your application, refer to the following tutorial: [Add a Survey to a React Application](https://surveyjs.io/form-library/documentation/get-started-react).
|
@@ -17,4 +21,4 @@ Refer to instructions in the root README file: [Build the SurveyJS Form Library
|
|
17
21
|
|
18
22
|
## Licensing
|
19
23
|
|
20
|
-
SurveyJS Form Library is distributed under the [MIT license](https://github.com/surveyjs/survey-library/blob/master/LICENSE).
|
24
|
+
SurveyJS Form Library is distributed under the [MIT license](https://github.com/surveyjs/survey-library/blob/master/LICENSE).
|
package/defaultV2.css
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* surveyjs - Survey JavaScript library v1.9.
|
2
|
+
* surveyjs - Survey JavaScript library v1.9.122
|
3
3
|
* Copyright (c) 2015-2023 Devsoft Baltic OÜ - http://surveyjs.io/
|
4
4
|
* License: MIT (http://www.opensource.org/licenses/mit-license.php)
|
5
5
|
*/
|
@@ -3337,6 +3337,61 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
3337
3337
|
flex-wrap: wrap;
|
3338
3338
|
min-width: 0;
|
3339
3339
|
}
|
3340
|
+
.sd-rating.sd-rating--labels-top fieldset {
|
3341
|
+
padding-top: calc(4.5 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
3342
|
+
position: relative;
|
3343
|
+
}
|
3344
|
+
.sd-rating.sd-rating--labels-top fieldset .sd-rating__min-text {
|
3345
|
+
position: absolute;
|
3346
|
+
margin: 0;
|
3347
|
+
left: 0;
|
3348
|
+
top: 0;
|
3349
|
+
border: 0;
|
3350
|
+
}
|
3351
|
+
.sd-rating.sd-rating--labels-top fieldset .sd-rating__max-text {
|
3352
|
+
position: absolute;
|
3353
|
+
margin: 0;
|
3354
|
+
right: 0;
|
3355
|
+
top: 0;
|
3356
|
+
border: 0;
|
3357
|
+
}
|
3358
|
+
.sd-rating.sd-rating--labels-bottom fieldset {
|
3359
|
+
padding-bottom: calc(4.5 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
3360
|
+
position: relative;
|
3361
|
+
}
|
3362
|
+
.sd-rating.sd-rating--labels-bottom fieldset .sd-rating__min-text {
|
3363
|
+
position: absolute;
|
3364
|
+
margin: 0;
|
3365
|
+
left: 0;
|
3366
|
+
bottom: 0;
|
3367
|
+
border: 0;
|
3368
|
+
}
|
3369
|
+
.sd-rating.sd-rating--labels-bottom fieldset .sd-rating__max-text {
|
3370
|
+
position: absolute;
|
3371
|
+
margin: 0;
|
3372
|
+
right: 0;
|
3373
|
+
bottom: 0;
|
3374
|
+
border: 0;
|
3375
|
+
}
|
3376
|
+
.sd-rating.sd-rating--labels-diagonal fieldset {
|
3377
|
+
padding-top: calc(4.5 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
3378
|
+
padding-bottom: calc(4.5 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
3379
|
+
position: relative;
|
3380
|
+
}
|
3381
|
+
.sd-rating.sd-rating--labels-diagonal fieldset .sd-rating__min-text {
|
3382
|
+
position: absolute;
|
3383
|
+
margin: 0;
|
3384
|
+
left: 0;
|
3385
|
+
top: 0;
|
3386
|
+
border: 0;
|
3387
|
+
}
|
3388
|
+
.sd-rating.sd-rating--labels-diagonal fieldset .sd-rating__max-text {
|
3389
|
+
position: absolute;
|
3390
|
+
margin: 0;
|
3391
|
+
right: 0;
|
3392
|
+
bottom: 0;
|
3393
|
+
border: 0;
|
3394
|
+
}
|
3340
3395
|
|
3341
3396
|
.sd-rating--small {
|
3342
3397
|
min-height: calc(3 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|