survey-creator-vue 1.0.0-beta.1
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/package.json +28 -0
- package/survey-creator-vue.es.js +2924 -0
- package/survey-creator-vue.umd.js +2 -0
- package/types/App.vue.d.ts +5 -0
- package/types/Creator.vue.d.ts +16 -0
- package/types/QuestionEditor.vue.d.ts +16 -0
- package/types/StringEditor.vue.d.ts +15 -0
- package/types/SvgBundle.vue.d.ts +2 -0
- package/types/adorners/CarryForward.vue.d.ts +16 -0
- package/types/adorners/CellQuestion.vue.d.ts +17 -0
- package/types/adorners/CellQuestionDropdown.vue.d.ts +17 -0
- package/types/adorners/CustomWidget.vue.d.ts +17 -0
- package/types/adorners/Dropdown.vue.d.ts +19 -0
- package/types/adorners/Image.vue.d.ts +19 -0
- package/types/adorners/ImageItemValue.vue.d.ts +34 -0
- package/types/adorners/ItemValue.vue.d.ts +34 -0
- package/types/adorners/MatrixCell.vue.d.ts +22 -0
- package/types/adorners/Panel.vue.d.ts +17 -0
- package/types/adorners/Question.vue.d.ts +17 -0
- package/types/adorners/QuestionBase.vue.d.ts +32 -0
- package/types/adorners/QuestionDropdown.vue.d.ts +17 -0
- package/types/adorners/QuestionImage.vue.d.ts +17 -0
- package/types/adorners/Rating.vue.d.ts +25 -0
- package/types/components/ActionButton.vue.d.ts +27 -0
- package/types/creator-model.d.ts +3 -0
- package/types/custom-questions/Color.vue.d.ts +16 -0
- package/types/custom-questions/ColorItem.vue.d.ts +16 -0
- package/types/custom-questions/File.vue.d.ts +16 -0
- package/types/custom-questions/SpinEditor.vue.d.ts +16 -0
- package/types/custom-questions/TextWithReset.vue.d.ts +16 -0
- package/types/header/Logo.vue.d.ts +16 -0
- package/types/index.d.ts +3 -0
- package/types/main.d.ts +2 -0
- package/types/page-navigator/PageNavigator.vue.d.ts +18 -0
- package/types/page-navigator/PageNavigatorItem.vue.d.ts +16 -0
- package/types/property-panel/ObjectSelector.vue.d.ts +16 -0
- package/types/property-panel/PropertyGrid.vue.d.ts +16 -0
- package/types/property-panel/Search.vue.d.ts +16 -0
- package/types/questions/EmbeddedSurvey.vue.d.ts +16 -0
- package/types/questions/LinkValue.vue.d.ts +16 -0
- package/types/questions/LogicOperator.vue.d.ts +16 -0
- package/types/side-bar/SideBar.vue.d.ts +16 -0
- package/types/side-bar/SideBarTab.vue.d.ts +16 -0
- package/types/tabbed-menu/TabbedMenu.vue.d.ts +16 -0
- package/types/tabbed-menu/TabbedMenuItem.vue.d.ts +16 -0
- package/types/tabbed-menu/TabbedMenuItemWrapper.vue.d.ts +16 -0
- package/types/tabs/designer/Designer.vue.d.ts +16 -0
- package/types/tabs/designer/Page.vue.d.ts +21 -0
- package/types/tabs/designer/PageAddQuestion.vue.d.ts +16 -0
- package/types/tabs/designer/Row.vue.d.ts +30 -0
- package/types/tabs/json/JsonEditorAce.vue.d.ts +16 -0
- package/types/tabs/json/JsonEditorErrorItem.vue.d.ts +16 -0
- package/types/tabs/json/JsonEditorTextArea.vue.d.ts +16 -0
- package/types/tabs/logic/Logic.vue.d.ts +16 -0
- package/types/tabs/logic/LogicAddButton.vue.d.ts +16 -0
- package/types/tabs/preview/Simulator.vue.d.ts +16 -0
- package/types/tabs/preview/SurveyResults.vue.d.ts +16 -0
- package/types/tabs/preview/SurveyResultsRow.vue.d.ts +16 -0
- package/types/tabs/preview/Test.vue.d.ts +16 -0
- package/types/tabs/preview/TestAgain.vue.d.ts +20 -0
- package/types/tabs/theme/Theme.vue.d.ts +16 -0
- package/types/tabs/translation/Translation.vue.d.ts +16 -0
- package/types/tabs/translation/TranslationLineSkeleton.vue.d.ts +2 -0
- package/types/toolbox/AdaptiveToolbox.vue.d.ts +16 -0
- package/types/toolbox/Toolbox.vue.d.ts +16 -0
- package/types/toolbox/ToolboxCategory.vue.d.ts +18 -0
- package/types/toolbox/ToolboxItem.vue.d.ts +22 -0
- package/types/toolbox/ToolboxTool.vue.d.ts +21 -0
package/package.json
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "survey-creator-vue",
|
|
3
|
+
"version": "1.0.0-beta.1",
|
|
4
|
+
"description": "survey.js is a JavaScript Survey Library. It is a modern way to add a survey to your website. It uses JSON for survey metadata and results.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"Survey",
|
|
7
|
+
"JavaScript",
|
|
8
|
+
"Library",
|
|
9
|
+
"Vue"
|
|
10
|
+
],
|
|
11
|
+
"homepage": "https://surveyjs.io/Overview/Survey-Creator",
|
|
12
|
+
"license": "https://surveyjs.io/Licenses#SurveyCreator",
|
|
13
|
+
"main": "survey-creator-vue.umd.js",
|
|
14
|
+
"module": "survey-creator-vue.es.js",
|
|
15
|
+
"types": "types/index.d.ts",
|
|
16
|
+
"repository": {
|
|
17
|
+
"type": "git",
|
|
18
|
+
"url": "https://github.com/surveyjs/surveyjs.git"
|
|
19
|
+
},
|
|
20
|
+
"peerDependencies": {
|
|
21
|
+
"vue": "^3.2.41"
|
|
22
|
+
},
|
|
23
|
+
"dependencies": {
|
|
24
|
+
"survey-core": "*",
|
|
25
|
+
"survey-creator-core": "*",
|
|
26
|
+
"survey-vue3-ui": "*"
|
|
27
|
+
}
|
|
28
|
+
}
|