survey-creator-core 1.9.108 → 1.9.109
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 +14 -14
- package/survey-creator-core.fontless.css +13 -13
- package/survey-creator-core.fontless.css.map +1 -1
- package/survey-creator-core.fontless.min.css +37 -37
- package/survey-creator-core.i18n.js +1 -1
- package/survey-creator-core.i18n.min.js +1 -1
- package/survey-creator-core.js +14 -14
- package/survey-creator-core.js.map +1 -1
- package/survey-creator-core.min.css +38 -38
- package/survey-creator-core.min.js +3 -3
- package/typings/creator-base.d.ts +10 -10
package/survey-creator-core.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* SurveyJS Creator v1.9.
|
|
2
|
+
* SurveyJS Creator v1.9.109
|
|
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
|
|
@@ -130,7 +130,7 @@ License: MIT
|
|
|
130
130
|
/***/ (function(module, exports, __webpack_require__) {
|
|
131
131
|
|
|
132
132
|
/*!
|
|
133
|
-
* surveyjs - Survey JavaScript library v1.9.
|
|
133
|
+
* surveyjs - Survey JavaScript library v1.9.109
|
|
134
134
|
* Copyright (c) 2015-2023 Devsoft Baltic OÜ - http://surveyjs.io/
|
|
135
135
|
* License: MIT (http://www.opensource.org/licenses/mit-license.php)
|
|
136
136
|
*/
|
|
@@ -18603,45 +18603,45 @@ var CreatorBase = /** @class */ (function (_super) {
|
|
|
18603
18603
|
*
|
|
18604
18604
|
* Depending on the `options.type` value, the `options` object contains parameters listed below:
|
|
18605
18605
|
*
|
|
18606
|
-
* `options.type`: `"ADDED_FROM_TOOLBOX"
|
|
18606
|
+
* `options.type`: `"ADDED_FROM_TOOLBOX"`
|
|
18607
18607
|
* - `options.question` - An added question.
|
|
18608
18608
|
*
|
|
18609
|
-
* `options.type`: `"PAGE_ADDED"
|
|
18609
|
+
* `options.type`: `"PAGE_ADDED"`
|
|
18610
18610
|
* - `options.newValue` - An added page.
|
|
18611
18611
|
*
|
|
18612
|
-
* `options.type`: `"PAGE_MOVED"
|
|
18612
|
+
* `options.type`: `"PAGE_MOVED"`
|
|
18613
18613
|
* - `options.page` - A moved page.
|
|
18614
18614
|
* - `options.indexFrom` - A previous index.
|
|
18615
18615
|
* - `options.indexTo` - A current index.
|
|
18616
18616
|
*
|
|
18617
|
-
* `options.type`: `"QUESTION_CONVERTED"
|
|
18617
|
+
* `options.type`: `"QUESTION_CONVERTED"`
|
|
18618
18618
|
* - `options.className` - The name of a class to which a question has been converted.
|
|
18619
18619
|
* - `options.oldValue` - An object of a previous class.
|
|
18620
18620
|
* - `options.newValue` - An object of a class specified by `options.className`.
|
|
18621
18621
|
*
|
|
18622
|
-
* `options.type`: `"QUESTION_CHANGED_BY_EDITOR"
|
|
18622
|
+
* `options.type`: `"QUESTION_CHANGED_BY_EDITOR"`
|
|
18623
18623
|
* - `options.question` - A question that has been edited in a pop-up editor.
|
|
18624
18624
|
*
|
|
18625
|
-
* `options.type`: `"PROPERTY_CHANGED"
|
|
18625
|
+
* `options.type`: `"PROPERTY_CHANGED"`
|
|
18626
18626
|
* - `options.name` - The name of the changed property.
|
|
18627
18627
|
* - `options.target` - An object that contains the changed property.
|
|
18628
18628
|
* - `options.oldValue` - A previous value of the changed property.
|
|
18629
18629
|
* - `options.newValue` - A new value of the changed property.
|
|
18630
18630
|
*
|
|
18631
|
-
* `options.type`: `"ELEMENT_REORDERED"
|
|
18631
|
+
* `options.type`: `"ELEMENT_REORDERED"`
|
|
18632
18632
|
* - `options.arrayName` - The name of the changed array.
|
|
18633
18633
|
* - `options.parent` - An object that contains the changed array.
|
|
18634
18634
|
* - `options.element` - A reordered element.
|
|
18635
18635
|
* - `options.indexFrom` - A previous index.
|
|
18636
18636
|
* - `options.indexTo` - A current index.
|
|
18637
18637
|
*
|
|
18638
|
-
* `options.type`: `"OBJECT_DELETED"
|
|
18638
|
+
* `options.type`: `"OBJECT_DELETED"`
|
|
18639
18639
|
* - `options.target` - A deleted object.
|
|
18640
18640
|
*
|
|
18641
|
-
* `options.type`: `"VIEW_TYPE_CHANGED"
|
|
18641
|
+
* `options.type`: `"VIEW_TYPE_CHANGED"`
|
|
18642
18642
|
* - `options.newType` - A current view: `"editor"` or `"designer"`.
|
|
18643
18643
|
*
|
|
18644
|
-
* `options.type`: `"DO_DROP"
|
|
18644
|
+
* `options.type`: `"DO_DROP"`
|
|
18645
18645
|
* - `options.page` - A parent page of the dragged element.
|
|
18646
18646
|
* - `options.source` - A dragged element.
|
|
18647
18647
|
* - `options.target` - A drop target.
|
|
@@ -23834,7 +23834,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
23834
23834
|
/* harmony import */ var survey_core__WEBPACK_IMPORTED_MODULE_71__ = __webpack_require__(/*! survey-core */ "survey-core");
|
|
23835
23835
|
/* harmony import */ var survey_core__WEBPACK_IMPORTED_MODULE_71___default = /*#__PURE__*/__webpack_require__.n(survey_core__WEBPACK_IMPORTED_MODULE_71__);
|
|
23836
23836
|
var Version;
|
|
23837
|
-
Version = "" + "1.9.
|
|
23837
|
+
Version = "" + "1.9.109";
|
|
23838
23838
|
//should be loaded before other styles for easier override
|
|
23839
23839
|
__webpack_require__(/*! ../utils/context-button.scss */ "./src/utils/context-button.scss");
|
|
23840
23840
|
|
|
@@ -23924,7 +23924,7 @@ __webpack_require__(/*! ../utils/design.scss */ "./src/utils/design.scss");
|
|
|
23924
23924
|
__webpack_require__(/*! ../utils/layout.scss */ "./src/utils/layout.scss");
|
|
23925
23925
|
|
|
23926
23926
|
survey_core__WEBPACK_IMPORTED_MODULE_71__["settings"].supportCreatorV2 = true;
|
|
23927
|
-
Object(survey_core__WEBPACK_IMPORTED_MODULE_71__["checkLibraryVersion"])("" + "1.9.
|
|
23927
|
+
Object(survey_core__WEBPACK_IMPORTED_MODULE_71__["checkLibraryVersion"])("" + "1.9.109", "survey-creator-core");
|
|
23928
23928
|
|
|
23929
23929
|
|
|
23930
23930
|
/***/ }),
|