survey-creator-core
Version:
A framework-independent core package of the SurveyJS Survey Creator component. With Survey Creator, you can visually design complex, interactive JSON forms and surveys in a drag-and-drop interface.
68 lines (62 loc) • 1.77 kB
JavaScript
/*!
* SurveyJS Creator v2.5.4
* (c) 2015-2025 Devsoft Baltic OÜ - http://surveyjs.io/
* Github: https://github.com/surveyjs/survey-creator
* License: https://surveyjs.io/Licenses#SurveyCreator
*/
var Basic = {
presetName: "basic",
json: {
"tabs": {
"items": [
{
"name": "designer",
"iconName": "icon-config"
},
{
"name": "preview",
"iconName": "icon-preview"
},
{
"name": "json",
"iconName": "icon-codeeditor-24x24"
}
],
"activeTab": "designer"
},
}
};
var Advanced = {
presetName: "advanced",
json: {
"tabs": {
"items": [
{
"name": "designer",
"iconName": "icon-config"
},
{
"name": "preview",
"iconName": "icon-preview"
},
{
"name": "logic",
"iconName": "icon-logic-24x24"
},
{
"name": "json",
"iconName": "icon-codeeditor-24x24"
}
],
"activeTab": "designer"
},
}
};
var Expert = {
presetName: "expert",
json: {}
};
var __surveyjs_internal_configs_hash = true;
var index = { Basic: Basic, Advanced: Advanced, Expert: Expert, __surveyjs_internal_configs_hash: __surveyjs_internal_configs_hash };
export { Advanced, Basic, Expert, __surveyjs_internal_configs_hash, index as default };
//# sourceMappingURL=index.mjs.map