├── .babelrc ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .postcssrc.js ├── CHANGELOG.md ├── LICENSE ├── README.md ├── config ├── dev.env.js ├── index.js ├── prod.env.js └── test.env.js ├── debug.log ├── demo-screenshot ├── 01.png ├── 03.png ├── 1.gif └── update_12_10.png ├── gulpfile.js ├── index.html ├── package.json ├── src ├── App.vue ├── assets │ ├── img │ │ ├── avatar.png │ │ ├── copy-active.png │ │ ├── copy.png │ │ ├── delete-active.png │ │ ├── delete.png │ │ ├── form-design │ │ │ ├── checkbox.png │ │ │ ├── datetime.png │ │ │ ├── grid.png │ │ │ ├── img.png │ │ │ ├── input.png │ │ │ ├── number.png │ │ │ ├── radio.png │ │ │ ├── select.png │ │ │ ├── switch.png │ │ │ ├── textarea.png │ │ │ ├── title.png │ │ │ └── 日期.png │ │ └── login_bg.jpg │ └── scss │ │ ├── _base.scss │ │ ├── _normalize.scss │ │ ├── _variables.scss │ │ └── index.scss ├── components │ ├── common │ │ ├── ApprovalPanel.vue │ │ ├── DocumentPanel.vue │ │ └── FormPreview.vue │ ├── form-design │ │ ├── Cell.vue │ │ ├── FDCheckbox.vue │ │ ├── FDDateTime.vue │ │ ├── FDGrid.vue │ │ ├── FDGridPanel.vue │ │ ├── FDIdea.vue │ │ ├── FDImg.vue │ │ ├── FDInput.vue │ │ ├── FDMenu.vue │ │ ├── FDNumber.vue │ │ ├── FDRadio.vue │ │ ├── FDSelect.vue │ │ ├── FDSwitch.vue │ │ ├── FDTextArea.vue │ │ ├── FDTitle.vue │ │ ├── GridCell.vue │ │ ├── Panel.vue │ │ ├── Test.vue │ │ ├── nested.vue │ │ ├── nestedExample.vue │ │ ├── raw-displayer.vue │ │ └── view │ │ │ ├── Document copy.vue │ │ │ ├── Document.vue │ │ │ ├── FormItem.vue │ │ │ ├── FormList.vue │ │ │ └── Material.vue │ ├── icon-svg │ │ └── index.vue │ └── table-tree-column │ │ └── index.vue ├── element-ui-theme │ ├── element-#0BB2D4 │ │ ├── fonts │ │ │ ├── element-icons.ttf │ │ │ └── element-icons.woff │ │ └── index.css │ ├── element-#11C26D │ │ ├── fonts │ │ │ ├── element-icons.ttf │ │ │ └── element-icons.woff │ │ └── index.css │ ├── element-#17B3A3 │ │ ├── fonts │ │ │ ├── element-icons.ttf │ │ │ └── element-icons.woff │ │ └── index.css │ ├── element-#3E8EF7 │ │ ├── fonts │ │ │ ├── element-icons.ttf │ │ │ └── element-icons.woff │ │ └── index.css │ ├── element-#667AFA │ │ ├── fonts │ │ │ ├── element-icons.ttf │ │ │ └── element-icons.woff │ │ └── index.css │ ├── element-#757575 │ │ ├── fonts │ │ │ ├── element-icons.ttf │ │ │ └── element-icons.woff │ │ └── index.css │ ├── element-#9463F7 │ │ ├── fonts │ │ │ ├── element-icons.ttf │ │ │ └── element-icons.woff │ │ └── index.css │ ├── element-#997B71 │ │ ├── fonts │ │ │ ├── element-icons.ttf │ │ │ └── element-icons.woff │ │ └── index.css │ ├── element-#EB6709 │ │ ├── fonts │ │ │ ├── element-icons.ttf │ │ │ └── element-icons.woff │ │ └── index.css │ ├── element-#F74584 │ │ ├── fonts │ │ │ ├── element-icons.ttf │ │ │ └── element-icons.woff │ │ └── index.css │ ├── element-#FCB900 │ │ ├── fonts │ │ │ ├── element-icons.ttf │ │ │ └── element-icons.woff │ │ └── index.css │ ├── element-#FF4C52 │ │ ├── fonts │ │ │ ├── element-icons.ttf │ │ │ └── element-icons.woff │ │ └── index.css │ └── index.js ├── element-ui │ └── index.js ├── icons │ ├── iconfont.js │ ├── index.js │ └── svg │ │ ├── icon-admin.svg │ │ ├── icon-bianji.svg │ │ ├── icon-config.svg │ │ ├── icon-dangdifill.svg │ │ ├── icon-daohang.svg │ │ ├── icon-duanxin.svg │ │ ├── icon-editor.svg │ │ ├── icon-geren.svg │ │ ├── icon-jiesuo.svg │ │ ├── icon-job.svg │ │ ├── icon-log.svg │ │ ├── icon-menu.svg │ │ ├── icon-mudedi.svg │ │ ├── icon-oss.svg │ │ ├── icon-pinglun.svg │ │ ├── icon-role.svg │ │ ├── icon-shanchu.svg │ │ ├── icon-shezhi.svg │ │ ├── icon-shoucang.svg │ │ ├── icon-shoucangfill.svg │ │ ├── icon-shouye.svg │ │ ├── icon-sousuo.svg │ │ ├── icon-sql.svg │ │ ├── icon-suoding.svg │ │ ├── icon-system.svg │ │ ├── icon-tixing.svg │ │ ├── icon-tubiao.svg │ │ ├── icon-xiangqu.svg │ │ ├── icon-xiangqufill.svg │ │ ├── icon-zhedie.svg │ │ └── icon-zonghe.svg ├── main.js ├── mock │ ├── index.js │ └── modules │ │ ├── common.js │ │ ├── job-schedule.js │ │ ├── oss.js │ │ ├── sys-config.js │ │ ├── sys-log.js │ │ ├── sys-menu.js │ │ ├── sys-role.js │ │ └── sys-user.js ├── router │ ├── import-development.js │ ├── import-production.js │ └── index.js ├── store │ ├── index.js │ └── modules │ │ ├── common.js │ │ ├── formDesign.js │ │ └── user.js ├── utils │ ├── bus.js │ ├── common.js │ ├── httpRequest.js │ ├── index.js │ └── validate.js └── views │ ├── common │ ├── 404.vue │ ├── home.vue │ ├── login.vue │ └── theme.vue │ ├── demo │ ├── FlowEditor.vue │ ├── echarts.vue │ └── ueditor.vue │ ├── main-content.vue │ ├── main-navbar-update-password.vue │ ├── main-navbar.vue │ ├── main-sidebar-sub-menu.vue │ ├── main-sidebar.vue │ ├── main.vue │ └── modules │ ├── job │ ├── schedule-add-or-update.vue │ ├── schedule-log.vue │ └── schedule.vue │ ├── oss │ ├── oss-config.vue │ ├── oss-upload.vue │ └── oss.vue │ └── sys │ ├── config-add-or-update.vue │ ├── config.vue │ ├── log.vue │ ├── menu-add-or-update.vue │ ├── menu.vue │ ├── role-add-or-update.vue │ ├── role.vue │ ├── user-add-or-update.vue │ └── user.vue ├── static ├── base.css ├── config │ ├── index-prod.js │ ├── index-qa.js │ ├── index-uat.js │ ├── index.js │ └── init.js ├── flow-editor │ └── demo │ │ ├── css │ │ ├── dmp │ │ │ ├── admin │ │ │ │ ├── admin.css │ │ │ │ └── pub.css │ │ │ ├── index │ │ │ │ ├── index.css │ │ │ │ └── pub.css │ │ │ └── login │ │ │ │ └── login.css │ │ └── font-awesome │ │ │ ├── css │ │ │ ├── font-awesome.css │ │ │ └── font-awesome.min.css │ │ │ └── fonts │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ │ ├── html │ │ └── index │ │ │ └── flow │ │ │ ├── flow.html │ │ │ ├── flowEdit.html │ │ │ └── flowLog.html │ │ ├── img │ │ ├── form-design │ │ │ ├── 下拉选择.png │ │ │ ├── 加号.png │ │ │ ├── 单行文本.png │ │ │ ├── 单选框.png │ │ │ ├── 图片上传.png │ │ │ ├── 多行文本.png │ │ │ ├── 多选框.png │ │ │ ├── 布局.png │ │ │ ├── 开关.png │ │ │ ├── 日期.png │ │ │ ├── 时间选择器.png │ │ │ ├── 计数标签.png │ │ │ └── 评分.png │ │ ├── login │ │ │ └── login-bg.png │ │ ├── logo │ │ │ ├── logo1.png │ │ │ └── logo2.png │ │ └── node │ │ │ ├── control.png │ │ │ ├── data-source.png │ │ │ ├── output.png │ │ │ ├── plus.png │ │ │ ├── query.png │ │ │ ├── start.png │ │ │ └── sub.png │ │ └── js │ │ ├── dmp │ │ ├── index │ │ │ ├── flow │ │ │ │ └── flow.js │ │ │ └── index.js │ │ └── pub │ │ │ └── pub.js │ │ ├── layui │ │ └── examples │ │ │ ├── admin.html │ │ │ ├── all.html │ │ │ ├── button.html │ │ │ ├── carousel.html │ │ │ ├── code.html │ │ │ ├── element.html │ │ │ ├── extend.html │ │ │ ├── flow.html │ │ │ ├── form.html │ │ │ ├── js │ │ │ ├── child │ │ │ │ └── test.js │ │ │ └── index.js │ │ │ ├── json │ │ │ ├── table │ │ │ │ ├── demo1.json │ │ │ │ └── demo2.json │ │ │ └── upload │ │ │ │ └── demoLayEdit.json │ │ │ ├── laydate.html │ │ │ ├── layedit.html │ │ │ ├── layer.html │ │ │ ├── layout.html │ │ │ ├── laypage.html │ │ │ ├── responsive.html │ │ │ ├── table.html │ │ │ ├── tree.html │ │ │ ├── upload.html │ │ │ ├── util.html │ │ │ └── xingzuo.html │ │ └── plugin │ │ ├── flow │ │ ├── analytics.js │ │ ├── collaboration.js │ │ ├── designer.core.js │ │ ├── designer.css │ │ ├── designer.events.js │ │ ├── designer.methods.js │ │ ├── designer.ui.js │ │ ├── export.js │ │ ├── global.css │ │ ├── images │ │ │ ├── common-16.png │ │ │ ├── search_ico.png │ │ │ ├── sprite.png │ │ │ └── sprite_disabled.png │ │ ├── jquery.js │ │ ├── schema.js │ │ ├── themes.js │ │ ├── ui.css │ │ └── util.js │ │ └── jquery │ │ ├── canvasparticle.js │ │ ├── head.min.js │ │ └── scrollbar.js ├── font │ ├── demo.css │ ├── demo_index.html │ ├── iconfont.css │ ├── iconfont.eot │ ├── iconfont.js │ ├── iconfont.svg │ ├── iconfont.ttf │ ├── iconfont.woff │ └── iconfont.woff2 ├── img │ ├── favicon.ico │ └── form-design │ │ ├── checkbox.png │ │ ├── datetime.png │ │ ├── grid.png │ │ ├── img.png │ │ ├── input.png │ │ ├── number.png │ │ ├── radio.png │ │ ├── select.png │ │ ├── switch.png │ │ ├── textarea.png │ │ ├── title.png │ │ └── 日期.png ├── normalize.css ├── plugins │ ├── echarts-3.8.5 │ │ └── echarts.common.min.js │ ├── mock-1.0.0-beta3 │ │ └── mock-min.js │ └── ueditor-1.4.3.3 │ │ ├── dialogs │ │ ├── anchor │ │ │ └── anchor.html │ │ ├── attachment │ │ │ ├── attachment.css │ │ │ ├── attachment.html │ │ │ ├── attachment.js │ │ │ ├── fileTypeImages │ │ │ │ ├── icon_chm.gif │ │ │ │ ├── icon_default.png │ │ │ │ ├── icon_doc.gif │ │ │ │ ├── icon_exe.gif │ │ │ │ ├── icon_jpg.gif │ │ │ │ ├── icon_mp3.gif │ │ │ │ ├── icon_mv.gif │ │ │ │ ├── icon_pdf.gif │ │ │ │ ├── icon_ppt.gif │ │ │ │ ├── icon_psd.gif │ │ │ │ ├── icon_rar.gif │ │ │ │ ├── icon_txt.gif │ │ │ │ └── icon_xls.gif │ │ │ └── images │ │ │ │ ├── alignicon.gif │ │ │ │ ├── alignicon.png │ │ │ │ ├── bg.png │ │ │ │ ├── file-icons.gif │ │ │ │ ├── file-icons.png │ │ │ │ ├── icons.gif │ │ │ │ ├── icons.png │ │ │ │ ├── image.png │ │ │ │ ├── progress.png │ │ │ │ ├── success.gif │ │ │ │ └── success.png │ │ ├── background │ │ │ ├── background.css │ │ │ ├── background.html │ │ │ ├── background.js │ │ │ └── images │ │ │ │ ├── bg.png │ │ │ │ └── success.png │ │ ├── charts │ │ │ ├── chart.config.js │ │ │ ├── charts.css │ │ │ ├── charts.html │ │ │ ├── charts.js │ │ │ └── images │ │ │ │ ├── charts0.png │ │ │ │ ├── charts1.png │ │ │ │ ├── charts2.png │ │ │ │ ├── charts3.png │ │ │ │ ├── charts4.png │ │ │ │ └── charts5.png │ │ ├── emotion │ │ │ ├── emotion.css │ │ │ ├── emotion.html │ │ │ ├── emotion.js │ │ │ └── images │ │ │ │ ├── 0.gif │ │ │ │ ├── bface.gif │ │ │ │ ├── cface.gif │ │ │ │ ├── fface.gif │ │ │ │ ├── jxface2.gif │ │ │ │ ├── neweditor-tab-bg.png │ │ │ │ ├── tface.gif │ │ │ │ ├── wface.gif │ │ │ │ └── yface.gif │ │ ├── gmap │ │ │ └── gmap.html │ │ ├── help │ │ │ ├── help.css │ │ │ ├── help.html │ │ │ └── help.js │ │ ├── image │ │ │ ├── image.css │ │ │ ├── image.html │ │ │ ├── image.js │ │ │ └── images │ │ │ │ ├── alignicon.jpg │ │ │ │ ├── bg.png │ │ │ │ ├── icons.gif │ │ │ │ ├── icons.png │ │ │ │ ├── image.png │ │ │ │ ├── progress.png │ │ │ │ ├── success.gif │ │ │ │ └── success.png │ │ ├── insertframe │ │ │ └── insertframe.html │ │ ├── internal.js │ │ ├── link │ │ │ └── link.html │ │ ├── map │ │ │ ├── map.html │ │ │ └── show.html │ │ ├── music │ │ │ ├── music.css │ │ │ ├── music.html │ │ │ └── music.js │ │ ├── preview │ │ │ └── preview.html │ │ ├── scrawl │ │ │ ├── images │ │ │ │ ├── addimg.png │ │ │ │ ├── brush.png │ │ │ │ ├── delimg.png │ │ │ │ ├── delimgH.png │ │ │ │ ├── empty.png │ │ │ │ ├── emptyH.png │ │ │ │ ├── eraser.png │ │ │ │ ├── redo.png │ │ │ │ ├── redoH.png │ │ │ │ ├── scale.png │ │ │ │ ├── scaleH.png │ │ │ │ ├── size.png │ │ │ │ ├── undo.png │ │ │ │ └── undoH.png │ │ │ ├── scrawl.css │ │ │ ├── scrawl.html │ │ │ └── scrawl.js │ │ ├── searchreplace │ │ │ ├── searchreplace.html │ │ │ └── searchreplace.js │ │ ├── snapscreen │ │ │ └── snapscreen.html │ │ ├── spechars │ │ │ ├── spechars.html │ │ │ └── spechars.js │ │ ├── table │ │ │ ├── dragicon.png │ │ │ ├── edittable.css │ │ │ ├── edittable.html │ │ │ ├── edittable.js │ │ │ ├── edittd.html │ │ │ └── edittip.html │ │ ├── template │ │ │ ├── config.js │ │ │ ├── images │ │ │ │ ├── bg.gif │ │ │ │ ├── pre0.png │ │ │ │ ├── pre1.png │ │ │ │ ├── pre2.png │ │ │ │ ├── pre3.png │ │ │ │ └── pre4.png │ │ │ ├── template.css │ │ │ ├── template.html │ │ │ └── template.js │ │ ├── video │ │ │ ├── images │ │ │ │ ├── bg.png │ │ │ │ ├── center_focus.jpg │ │ │ │ ├── file-icons.gif │ │ │ │ ├── file-icons.png │ │ │ │ ├── icons.gif │ │ │ │ ├── icons.png │ │ │ │ ├── image.png │ │ │ │ ├── left_focus.jpg │ │ │ │ ├── none_focus.jpg │ │ │ │ ├── progress.png │ │ │ │ ├── right_focus.jpg │ │ │ │ ├── success.gif │ │ │ │ └── success.png │ │ │ ├── video.css │ │ │ ├── video.html │ │ │ └── video.js │ │ ├── webapp │ │ │ └── webapp.html │ │ └── wordimage │ │ │ ├── fClipboard_ueditor.swf │ │ │ ├── imageUploader.swf │ │ │ ├── tangram.js │ │ │ ├── wordimage.html │ │ │ └── wordimage.js │ │ ├── lang │ │ ├── en │ │ │ ├── en.js │ │ │ └── images │ │ │ │ ├── addimage.png │ │ │ │ ├── alldeletebtnhoverskin.png │ │ │ │ ├── alldeletebtnupskin.png │ │ │ │ ├── background.png │ │ │ │ ├── button.png │ │ │ │ ├── copy.png │ │ │ │ ├── deletedisable.png │ │ │ │ ├── deleteenable.png │ │ │ │ ├── listbackground.png │ │ │ │ ├── localimage.png │ │ │ │ ├── music.png │ │ │ │ ├── rotateleftdisable.png │ │ │ │ ├── rotateleftenable.png │ │ │ │ ├── rotaterightdisable.png │ │ │ │ ├── rotaterightenable.png │ │ │ │ └── upload.png │ │ └── zh-cn │ │ │ ├── images │ │ │ ├── copy.png │ │ │ ├── localimage.png │ │ │ ├── music.png │ │ │ └── upload.png │ │ │ └── zh-cn.js │ │ ├── themes │ │ ├── default │ │ │ ├── css │ │ │ │ ├── ueditor.css │ │ │ │ └── ueditor.min.css │ │ │ ├── dialogbase.css │ │ │ └── images │ │ │ │ ├── anchor.gif │ │ │ │ ├── arrow.png │ │ │ │ ├── arrow_down.png │ │ │ │ ├── arrow_up.png │ │ │ │ ├── button-bg.gif │ │ │ │ ├── cancelbutton.gif │ │ │ │ ├── charts.png │ │ │ │ ├── cursor_h.gif │ │ │ │ ├── cursor_h.png │ │ │ │ ├── cursor_v.gif │ │ │ │ ├── cursor_v.png │ │ │ │ ├── dialog-title-bg.png │ │ │ │ ├── filescan.png │ │ │ │ ├── highlighted.gif │ │ │ │ ├── icons-all.gif │ │ │ │ ├── icons.gif │ │ │ │ ├── icons.png │ │ │ │ ├── loaderror.png │ │ │ │ ├── loading.gif │ │ │ │ ├── lock.gif │ │ │ │ ├── neweditor-tab-bg.png │ │ │ │ ├── pagebreak.gif │ │ │ │ ├── scale.png │ │ │ │ ├── sortable.png │ │ │ │ ├── spacer.gif │ │ │ │ ├── sparator_v.png │ │ │ │ ├── table-cell-align.png │ │ │ │ ├── tangram-colorpicker.png │ │ │ │ ├── toolbar_bg.png │ │ │ │ ├── unhighlighted.gif │ │ │ │ ├── upload.png │ │ │ │ ├── videologo.gif │ │ │ │ ├── word.gif │ │ │ │ └── wordpaste.png │ │ └── iframe.css │ │ ├── third-party │ │ ├── SyntaxHighlighter │ │ │ ├── shCore.js │ │ │ └── shCoreDefault.css │ │ ├── codemirror │ │ │ ├── codemirror.css │ │ │ └── codemirror.js │ │ ├── highcharts │ │ │ ├── adapters │ │ │ │ ├── mootools-adapter.js │ │ │ │ ├── mootools-adapter.src.js │ │ │ │ ├── prototype-adapter.js │ │ │ │ ├── prototype-adapter.src.js │ │ │ │ ├── standalone-framework.js │ │ │ │ └── standalone-framework.src.js │ │ │ ├── highcharts-more.js │ │ │ ├── highcharts-more.src.js │ │ │ ├── highcharts.js │ │ │ ├── highcharts.src.js │ │ │ ├── modules │ │ │ │ ├── annotations.js │ │ │ │ ├── annotations.src.js │ │ │ │ ├── canvas-tools.js │ │ │ │ ├── canvas-tools.src.js │ │ │ │ ├── data.js │ │ │ │ ├── data.src.js │ │ │ │ ├── drilldown.js │ │ │ │ ├── drilldown.src.js │ │ │ │ ├── exporting.js │ │ │ │ ├── exporting.src.js │ │ │ │ ├── funnel.js │ │ │ │ ├── funnel.src.js │ │ │ │ ├── heatmap.js │ │ │ │ ├── heatmap.src.js │ │ │ │ ├── map.js │ │ │ │ ├── map.src.js │ │ │ │ ├── no-data-to-display.js │ │ │ │ └── no-data-to-display.src.js │ │ │ └── themes │ │ │ │ ├── dark-blue.js │ │ │ │ ├── dark-green.js │ │ │ │ ├── gray.js │ │ │ │ ├── grid.js │ │ │ │ └── skies.js │ │ ├── jquery-1.10.2.js │ │ ├── jquery-1.10.2.min.js │ │ ├── jquery-1.10.2.min.map │ │ ├── snapscreen │ │ │ └── UEditorSnapscreen.exe │ │ ├── video-js │ │ │ ├── font │ │ │ │ ├── vjs.eot │ │ │ │ ├── vjs.svg │ │ │ │ ├── vjs.ttf │ │ │ │ └── vjs.woff │ │ │ ├── video-js.css │ │ │ ├── video-js.min.css │ │ │ ├── video-js.swf │ │ │ ├── video.dev.js │ │ │ └── video.js │ │ ├── webuploader │ │ │ ├── Uploader.swf │ │ │ ├── webuploader.css │ │ │ ├── webuploader.custom.js │ │ │ ├── webuploader.custom.min.js │ │ │ ├── webuploader.flashonly.js │ │ │ ├── webuploader.flashonly.min.js │ │ │ ├── webuploader.html5only.js │ │ │ ├── webuploader.html5only.min.js │ │ │ ├── webuploader.js │ │ │ ├── webuploader.min.js │ │ │ ├── webuploader.withoutimage.js │ │ │ └── webuploader.withoutimage.min.js │ │ ├── xss.min.js │ │ └── zeroclipboard │ │ │ ├── ZeroClipboard.js │ │ │ ├── ZeroClipboard.min.js │ │ │ └── ZeroClipboard.swf │ │ ├── ueditor.all.min.js │ │ ├── ueditor.config.js │ │ └── ueditor.parse.min.js └── reset.css └── test ├── e2e ├── custom-assertions │ └── elementCount.js ├── nightwatch.conf.js ├── runner.js └── specs │ └── test.js └── unit ├── .eslintrc ├── jest.conf.js ├── setup.js └── specs └── HelloWorld.spec.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/.gitignore -------------------------------------------------------------------------------- /.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/.postcssrc.js -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/README.md -------------------------------------------------------------------------------- /config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/config/dev.env.js -------------------------------------------------------------------------------- /config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/config/index.js -------------------------------------------------------------------------------- /config/prod.env.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | module.exports = { 3 | NODE_ENV: '"production"' 4 | } 5 | -------------------------------------------------------------------------------- /config/test.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/config/test.env.js -------------------------------------------------------------------------------- /debug.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/debug.log -------------------------------------------------------------------------------- /demo-screenshot/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/demo-screenshot/01.png -------------------------------------------------------------------------------- /demo-screenshot/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/demo-screenshot/03.png -------------------------------------------------------------------------------- /demo-screenshot/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/demo-screenshot/1.gif -------------------------------------------------------------------------------- /demo-screenshot/update_12_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/demo-screenshot/update_12_10.png -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/gulpfile.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/package.json -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/assets/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/assets/img/avatar.png -------------------------------------------------------------------------------- /src/assets/img/copy-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/assets/img/copy-active.png -------------------------------------------------------------------------------- /src/assets/img/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/assets/img/copy.png -------------------------------------------------------------------------------- /src/assets/img/delete-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/assets/img/delete-active.png -------------------------------------------------------------------------------- /src/assets/img/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/assets/img/delete.png -------------------------------------------------------------------------------- /src/assets/img/form-design/checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/assets/img/form-design/checkbox.png -------------------------------------------------------------------------------- /src/assets/img/form-design/datetime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/assets/img/form-design/datetime.png -------------------------------------------------------------------------------- /src/assets/img/form-design/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/assets/img/form-design/grid.png -------------------------------------------------------------------------------- /src/assets/img/form-design/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/assets/img/form-design/img.png -------------------------------------------------------------------------------- /src/assets/img/form-design/input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/assets/img/form-design/input.png -------------------------------------------------------------------------------- /src/assets/img/form-design/number.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/assets/img/form-design/number.png -------------------------------------------------------------------------------- /src/assets/img/form-design/radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/assets/img/form-design/radio.png -------------------------------------------------------------------------------- /src/assets/img/form-design/select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/assets/img/form-design/select.png -------------------------------------------------------------------------------- /src/assets/img/form-design/switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/assets/img/form-design/switch.png -------------------------------------------------------------------------------- /src/assets/img/form-design/textarea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/assets/img/form-design/textarea.png -------------------------------------------------------------------------------- /src/assets/img/form-design/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/assets/img/form-design/title.png -------------------------------------------------------------------------------- /src/assets/img/form-design/日期.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/assets/img/form-design/日期.png -------------------------------------------------------------------------------- /src/assets/img/login_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/assets/img/login_bg.jpg -------------------------------------------------------------------------------- /src/assets/scss/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/assets/scss/_base.scss -------------------------------------------------------------------------------- /src/assets/scss/_normalize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/assets/scss/_normalize.scss -------------------------------------------------------------------------------- /src/assets/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/assets/scss/_variables.scss -------------------------------------------------------------------------------- /src/assets/scss/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/assets/scss/index.scss -------------------------------------------------------------------------------- /src/components/common/ApprovalPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/components/common/ApprovalPanel.vue -------------------------------------------------------------------------------- /src/components/common/DocumentPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/components/common/DocumentPanel.vue -------------------------------------------------------------------------------- /src/components/common/FormPreview.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/components/common/FormPreview.vue -------------------------------------------------------------------------------- /src/components/form-design/Cell.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/components/form-design/Cell.vue -------------------------------------------------------------------------------- /src/components/form-design/FDCheckbox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/components/form-design/FDCheckbox.vue -------------------------------------------------------------------------------- /src/components/form-design/FDDateTime.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/components/form-design/FDDateTime.vue -------------------------------------------------------------------------------- /src/components/form-design/FDGrid.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/components/form-design/FDGrid.vue -------------------------------------------------------------------------------- /src/components/form-design/FDGridPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/components/form-design/FDGridPanel.vue -------------------------------------------------------------------------------- /src/components/form-design/FDIdea.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/components/form-design/FDIdea.vue -------------------------------------------------------------------------------- /src/components/form-design/FDImg.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/components/form-design/FDImg.vue -------------------------------------------------------------------------------- /src/components/form-design/FDInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/components/form-design/FDInput.vue -------------------------------------------------------------------------------- /src/components/form-design/FDMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/components/form-design/FDMenu.vue -------------------------------------------------------------------------------- /src/components/form-design/FDNumber.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/components/form-design/FDNumber.vue -------------------------------------------------------------------------------- /src/components/form-design/FDRadio.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/components/form-design/FDRadio.vue -------------------------------------------------------------------------------- /src/components/form-design/FDSelect.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/components/form-design/FDSelect.vue -------------------------------------------------------------------------------- /src/components/form-design/FDSwitch.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/components/form-design/FDSwitch.vue -------------------------------------------------------------------------------- /src/components/form-design/FDTextArea.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/components/form-design/FDTextArea.vue -------------------------------------------------------------------------------- /src/components/form-design/FDTitle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/components/form-design/FDTitle.vue -------------------------------------------------------------------------------- /src/components/form-design/GridCell.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/components/form-design/GridCell.vue -------------------------------------------------------------------------------- /src/components/form-design/Panel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/components/form-design/Panel.vue -------------------------------------------------------------------------------- /src/components/form-design/Test.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/components/form-design/Test.vue -------------------------------------------------------------------------------- /src/components/form-design/nested.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/components/form-design/nested.vue -------------------------------------------------------------------------------- /src/components/form-design/nestedExample.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/components/form-design/nestedExample.vue -------------------------------------------------------------------------------- /src/components/form-design/raw-displayer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/components/form-design/raw-displayer.vue -------------------------------------------------------------------------------- /src/components/form-design/view/Document copy.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/components/form-design/view/Document copy.vue -------------------------------------------------------------------------------- /src/components/form-design/view/Document.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/components/form-design/view/Document.vue -------------------------------------------------------------------------------- /src/components/form-design/view/FormItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/components/form-design/view/FormItem.vue -------------------------------------------------------------------------------- /src/components/form-design/view/FormList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/components/form-design/view/FormList.vue -------------------------------------------------------------------------------- /src/components/form-design/view/Material.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/components/form-design/view/Material.vue -------------------------------------------------------------------------------- /src/components/icon-svg/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/components/icon-svg/index.vue -------------------------------------------------------------------------------- /src/components/table-tree-column/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/components/table-tree-column/index.vue -------------------------------------------------------------------------------- /src/element-ui-theme/element-#0BB2D4/fonts/element-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/element-ui-theme/element-#0BB2D4/fonts/element-icons.ttf -------------------------------------------------------------------------------- /src/element-ui-theme/element-#0BB2D4/fonts/element-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/element-ui-theme/element-#0BB2D4/fonts/element-icons.woff -------------------------------------------------------------------------------- /src/element-ui-theme/element-#0BB2D4/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/element-ui-theme/element-#0BB2D4/index.css -------------------------------------------------------------------------------- /src/element-ui-theme/element-#11C26D/fonts/element-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/element-ui-theme/element-#11C26D/fonts/element-icons.ttf -------------------------------------------------------------------------------- /src/element-ui-theme/element-#11C26D/fonts/element-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/element-ui-theme/element-#11C26D/fonts/element-icons.woff -------------------------------------------------------------------------------- /src/element-ui-theme/element-#11C26D/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/element-ui-theme/element-#11C26D/index.css -------------------------------------------------------------------------------- /src/element-ui-theme/element-#17B3A3/fonts/element-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/element-ui-theme/element-#17B3A3/fonts/element-icons.ttf -------------------------------------------------------------------------------- /src/element-ui-theme/element-#17B3A3/fonts/element-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/element-ui-theme/element-#17B3A3/fonts/element-icons.woff -------------------------------------------------------------------------------- /src/element-ui-theme/element-#17B3A3/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/element-ui-theme/element-#17B3A3/index.css -------------------------------------------------------------------------------- /src/element-ui-theme/element-#3E8EF7/fonts/element-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/element-ui-theme/element-#3E8EF7/fonts/element-icons.ttf -------------------------------------------------------------------------------- /src/element-ui-theme/element-#3E8EF7/fonts/element-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/element-ui-theme/element-#3E8EF7/fonts/element-icons.woff -------------------------------------------------------------------------------- /src/element-ui-theme/element-#3E8EF7/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/element-ui-theme/element-#3E8EF7/index.css -------------------------------------------------------------------------------- /src/element-ui-theme/element-#667AFA/fonts/element-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/element-ui-theme/element-#667AFA/fonts/element-icons.ttf -------------------------------------------------------------------------------- /src/element-ui-theme/element-#667AFA/fonts/element-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/element-ui-theme/element-#667AFA/fonts/element-icons.woff -------------------------------------------------------------------------------- /src/element-ui-theme/element-#667AFA/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/element-ui-theme/element-#667AFA/index.css -------------------------------------------------------------------------------- /src/element-ui-theme/element-#757575/fonts/element-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/element-ui-theme/element-#757575/fonts/element-icons.ttf -------------------------------------------------------------------------------- /src/element-ui-theme/element-#757575/fonts/element-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/element-ui-theme/element-#757575/fonts/element-icons.woff -------------------------------------------------------------------------------- /src/element-ui-theme/element-#757575/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/element-ui-theme/element-#757575/index.css -------------------------------------------------------------------------------- /src/element-ui-theme/element-#9463F7/fonts/element-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/element-ui-theme/element-#9463F7/fonts/element-icons.ttf -------------------------------------------------------------------------------- /src/element-ui-theme/element-#9463F7/fonts/element-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/element-ui-theme/element-#9463F7/fonts/element-icons.woff -------------------------------------------------------------------------------- /src/element-ui-theme/element-#9463F7/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/element-ui-theme/element-#9463F7/index.css -------------------------------------------------------------------------------- /src/element-ui-theme/element-#997B71/fonts/element-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/element-ui-theme/element-#997B71/fonts/element-icons.ttf -------------------------------------------------------------------------------- /src/element-ui-theme/element-#997B71/fonts/element-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/element-ui-theme/element-#997B71/fonts/element-icons.woff -------------------------------------------------------------------------------- /src/element-ui-theme/element-#997B71/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/element-ui-theme/element-#997B71/index.css -------------------------------------------------------------------------------- /src/element-ui-theme/element-#EB6709/fonts/element-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/element-ui-theme/element-#EB6709/fonts/element-icons.ttf -------------------------------------------------------------------------------- /src/element-ui-theme/element-#EB6709/fonts/element-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/element-ui-theme/element-#EB6709/fonts/element-icons.woff -------------------------------------------------------------------------------- /src/element-ui-theme/element-#EB6709/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/element-ui-theme/element-#EB6709/index.css -------------------------------------------------------------------------------- /src/element-ui-theme/element-#F74584/fonts/element-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/element-ui-theme/element-#F74584/fonts/element-icons.ttf -------------------------------------------------------------------------------- /src/element-ui-theme/element-#F74584/fonts/element-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/element-ui-theme/element-#F74584/fonts/element-icons.woff -------------------------------------------------------------------------------- /src/element-ui-theme/element-#F74584/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/element-ui-theme/element-#F74584/index.css -------------------------------------------------------------------------------- /src/element-ui-theme/element-#FCB900/fonts/element-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/element-ui-theme/element-#FCB900/fonts/element-icons.ttf -------------------------------------------------------------------------------- /src/element-ui-theme/element-#FCB900/fonts/element-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/element-ui-theme/element-#FCB900/fonts/element-icons.woff -------------------------------------------------------------------------------- /src/element-ui-theme/element-#FCB900/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/element-ui-theme/element-#FCB900/index.css -------------------------------------------------------------------------------- /src/element-ui-theme/element-#FF4C52/fonts/element-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/element-ui-theme/element-#FF4C52/fonts/element-icons.ttf -------------------------------------------------------------------------------- /src/element-ui-theme/element-#FF4C52/fonts/element-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/element-ui-theme/element-#FF4C52/fonts/element-icons.woff -------------------------------------------------------------------------------- /src/element-ui-theme/element-#FF4C52/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/element-ui-theme/element-#FF4C52/index.css -------------------------------------------------------------------------------- /src/element-ui-theme/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/element-ui-theme/index.js -------------------------------------------------------------------------------- /src/element-ui/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/element-ui/index.js -------------------------------------------------------------------------------- /src/icons/iconfont.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/icons/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/icons/index.js -------------------------------------------------------------------------------- /src/icons/svg/icon-admin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/icons/svg/icon-admin.svg -------------------------------------------------------------------------------- /src/icons/svg/icon-bianji.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/icons/svg/icon-bianji.svg -------------------------------------------------------------------------------- /src/icons/svg/icon-config.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/icons/svg/icon-config.svg -------------------------------------------------------------------------------- /src/icons/svg/icon-dangdifill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/icons/svg/icon-dangdifill.svg -------------------------------------------------------------------------------- /src/icons/svg/icon-daohang.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/icons/svg/icon-daohang.svg -------------------------------------------------------------------------------- /src/icons/svg/icon-duanxin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/icons/svg/icon-duanxin.svg -------------------------------------------------------------------------------- /src/icons/svg/icon-editor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/icons/svg/icon-editor.svg -------------------------------------------------------------------------------- /src/icons/svg/icon-geren.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/icons/svg/icon-geren.svg -------------------------------------------------------------------------------- /src/icons/svg/icon-jiesuo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/icons/svg/icon-jiesuo.svg -------------------------------------------------------------------------------- /src/icons/svg/icon-job.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/icons/svg/icon-job.svg -------------------------------------------------------------------------------- /src/icons/svg/icon-log.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/icons/svg/icon-log.svg -------------------------------------------------------------------------------- /src/icons/svg/icon-menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/icons/svg/icon-menu.svg -------------------------------------------------------------------------------- /src/icons/svg/icon-mudedi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/icons/svg/icon-mudedi.svg -------------------------------------------------------------------------------- /src/icons/svg/icon-oss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/icons/svg/icon-oss.svg -------------------------------------------------------------------------------- /src/icons/svg/icon-pinglun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/icons/svg/icon-pinglun.svg -------------------------------------------------------------------------------- /src/icons/svg/icon-role.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/icons/svg/icon-role.svg -------------------------------------------------------------------------------- /src/icons/svg/icon-shanchu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/icons/svg/icon-shanchu.svg -------------------------------------------------------------------------------- /src/icons/svg/icon-shezhi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/icons/svg/icon-shezhi.svg -------------------------------------------------------------------------------- /src/icons/svg/icon-shoucang.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/icons/svg/icon-shoucang.svg -------------------------------------------------------------------------------- /src/icons/svg/icon-shoucangfill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/icons/svg/icon-shoucangfill.svg -------------------------------------------------------------------------------- /src/icons/svg/icon-shouye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/icons/svg/icon-shouye.svg -------------------------------------------------------------------------------- /src/icons/svg/icon-sousuo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/icons/svg/icon-sousuo.svg -------------------------------------------------------------------------------- /src/icons/svg/icon-sql.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/icons/svg/icon-sql.svg -------------------------------------------------------------------------------- /src/icons/svg/icon-suoding.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/icons/svg/icon-suoding.svg -------------------------------------------------------------------------------- /src/icons/svg/icon-system.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/icons/svg/icon-system.svg -------------------------------------------------------------------------------- /src/icons/svg/icon-tixing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/icons/svg/icon-tixing.svg -------------------------------------------------------------------------------- /src/icons/svg/icon-tubiao.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/icons/svg/icon-tubiao.svg -------------------------------------------------------------------------------- /src/icons/svg/icon-xiangqu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/icons/svg/icon-xiangqu.svg -------------------------------------------------------------------------------- /src/icons/svg/icon-xiangqufill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/icons/svg/icon-xiangqufill.svg -------------------------------------------------------------------------------- /src/icons/svg/icon-zhedie.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/icons/svg/icon-zhedie.svg -------------------------------------------------------------------------------- /src/icons/svg/icon-zonghe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/icons/svg/icon-zonghe.svg -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/main.js -------------------------------------------------------------------------------- /src/mock/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/mock/index.js -------------------------------------------------------------------------------- /src/mock/modules/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/mock/modules/common.js -------------------------------------------------------------------------------- /src/mock/modules/job-schedule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/mock/modules/job-schedule.js -------------------------------------------------------------------------------- /src/mock/modules/oss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/mock/modules/oss.js -------------------------------------------------------------------------------- /src/mock/modules/sys-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/mock/modules/sys-config.js -------------------------------------------------------------------------------- /src/mock/modules/sys-log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/mock/modules/sys-log.js -------------------------------------------------------------------------------- /src/mock/modules/sys-menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/mock/modules/sys-menu.js -------------------------------------------------------------------------------- /src/mock/modules/sys-role.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/mock/modules/sys-role.js -------------------------------------------------------------------------------- /src/mock/modules/sys-user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/mock/modules/sys-user.js -------------------------------------------------------------------------------- /src/router/import-development.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/router/import-development.js -------------------------------------------------------------------------------- /src/router/import-production.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/router/import-production.js -------------------------------------------------------------------------------- /src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/router/index.js -------------------------------------------------------------------------------- /src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/store/index.js -------------------------------------------------------------------------------- /src/store/modules/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/store/modules/common.js -------------------------------------------------------------------------------- /src/store/modules/formDesign.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/store/modules/formDesign.js -------------------------------------------------------------------------------- /src/store/modules/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/store/modules/user.js -------------------------------------------------------------------------------- /src/utils/bus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/utils/bus.js -------------------------------------------------------------------------------- /src/utils/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/utils/common.js -------------------------------------------------------------------------------- /src/utils/httpRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/utils/httpRequest.js -------------------------------------------------------------------------------- /src/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/utils/index.js -------------------------------------------------------------------------------- /src/utils/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/utils/validate.js -------------------------------------------------------------------------------- /src/views/common/404.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/views/common/404.vue -------------------------------------------------------------------------------- /src/views/common/home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/views/common/home.vue -------------------------------------------------------------------------------- /src/views/common/login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/views/common/login.vue -------------------------------------------------------------------------------- /src/views/common/theme.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/views/common/theme.vue -------------------------------------------------------------------------------- /src/views/demo/FlowEditor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/views/demo/FlowEditor.vue -------------------------------------------------------------------------------- /src/views/demo/echarts.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/views/demo/echarts.vue -------------------------------------------------------------------------------- /src/views/demo/ueditor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/views/demo/ueditor.vue -------------------------------------------------------------------------------- /src/views/main-content.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/views/main-content.vue -------------------------------------------------------------------------------- /src/views/main-navbar-update-password.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/views/main-navbar-update-password.vue -------------------------------------------------------------------------------- /src/views/main-navbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/views/main-navbar.vue -------------------------------------------------------------------------------- /src/views/main-sidebar-sub-menu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/views/main-sidebar-sub-menu.vue -------------------------------------------------------------------------------- /src/views/main-sidebar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/views/main-sidebar.vue -------------------------------------------------------------------------------- /src/views/main.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/views/main.vue -------------------------------------------------------------------------------- /src/views/modules/job/schedule-add-or-update.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/views/modules/job/schedule-add-or-update.vue -------------------------------------------------------------------------------- /src/views/modules/job/schedule-log.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/views/modules/job/schedule-log.vue -------------------------------------------------------------------------------- /src/views/modules/job/schedule.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/views/modules/job/schedule.vue -------------------------------------------------------------------------------- /src/views/modules/oss/oss-config.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/views/modules/oss/oss-config.vue -------------------------------------------------------------------------------- /src/views/modules/oss/oss-upload.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/views/modules/oss/oss-upload.vue -------------------------------------------------------------------------------- /src/views/modules/oss/oss.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/views/modules/oss/oss.vue -------------------------------------------------------------------------------- /src/views/modules/sys/config-add-or-update.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/views/modules/sys/config-add-or-update.vue -------------------------------------------------------------------------------- /src/views/modules/sys/config.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/views/modules/sys/config.vue -------------------------------------------------------------------------------- /src/views/modules/sys/log.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/views/modules/sys/log.vue -------------------------------------------------------------------------------- /src/views/modules/sys/menu-add-or-update.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/views/modules/sys/menu-add-or-update.vue -------------------------------------------------------------------------------- /src/views/modules/sys/menu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/views/modules/sys/menu.vue -------------------------------------------------------------------------------- /src/views/modules/sys/role-add-or-update.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/views/modules/sys/role-add-or-update.vue -------------------------------------------------------------------------------- /src/views/modules/sys/role.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/views/modules/sys/role.vue -------------------------------------------------------------------------------- /src/views/modules/sys/user-add-or-update.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/views/modules/sys/user-add-or-update.vue -------------------------------------------------------------------------------- /src/views/modules/sys/user.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/src/views/modules/sys/user.vue -------------------------------------------------------------------------------- /static/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/base.css -------------------------------------------------------------------------------- /static/config/index-prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/config/index-prod.js -------------------------------------------------------------------------------- /static/config/index-qa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/config/index-qa.js -------------------------------------------------------------------------------- /static/config/index-uat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/config/index-uat.js -------------------------------------------------------------------------------- /static/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/config/index.js -------------------------------------------------------------------------------- /static/config/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/config/init.js -------------------------------------------------------------------------------- /static/flow-editor/demo/css/dmp/admin/admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/css/dmp/admin/admin.css -------------------------------------------------------------------------------- /static/flow-editor/demo/css/dmp/admin/pub.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/flow-editor/demo/css/dmp/index/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/css/dmp/index/index.css -------------------------------------------------------------------------------- /static/flow-editor/demo/css/dmp/index/pub.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/css/dmp/index/pub.css -------------------------------------------------------------------------------- /static/flow-editor/demo/css/dmp/login/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/css/dmp/login/login.css -------------------------------------------------------------------------------- /static/flow-editor/demo/css/font-awesome/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/css/font-awesome/css/font-awesome.css -------------------------------------------------------------------------------- /static/flow-editor/demo/css/font-awesome/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/css/font-awesome/css/font-awesome.min.css -------------------------------------------------------------------------------- /static/flow-editor/demo/css/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/css/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /static/flow-editor/demo/css/font-awesome/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/css/font-awesome/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /static/flow-editor/demo/css/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/css/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /static/flow-editor/demo/css/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/css/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /static/flow-editor/demo/css/font-awesome/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/css/font-awesome/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /static/flow-editor/demo/html/index/flow/flow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/html/index/flow/flow.html -------------------------------------------------------------------------------- /static/flow-editor/demo/html/index/flow/flowEdit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/html/index/flow/flowEdit.html -------------------------------------------------------------------------------- /static/flow-editor/demo/html/index/flow/flowLog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/html/index/flow/flowLog.html -------------------------------------------------------------------------------- /static/flow-editor/demo/img/form-design/下拉选择.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/img/form-design/下拉选择.png -------------------------------------------------------------------------------- /static/flow-editor/demo/img/form-design/加号.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/img/form-design/加号.png -------------------------------------------------------------------------------- /static/flow-editor/demo/img/form-design/单行文本.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/img/form-design/单行文本.png -------------------------------------------------------------------------------- /static/flow-editor/demo/img/form-design/单选框.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/img/form-design/单选框.png -------------------------------------------------------------------------------- /static/flow-editor/demo/img/form-design/图片上传.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/img/form-design/图片上传.png -------------------------------------------------------------------------------- /static/flow-editor/demo/img/form-design/多行文本.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/img/form-design/多行文本.png -------------------------------------------------------------------------------- /static/flow-editor/demo/img/form-design/多选框.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/img/form-design/多选框.png -------------------------------------------------------------------------------- /static/flow-editor/demo/img/form-design/布局.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/img/form-design/布局.png -------------------------------------------------------------------------------- /static/flow-editor/demo/img/form-design/开关.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/img/form-design/开关.png -------------------------------------------------------------------------------- /static/flow-editor/demo/img/form-design/日期.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/img/form-design/日期.png -------------------------------------------------------------------------------- /static/flow-editor/demo/img/form-design/时间选择器.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/img/form-design/时间选择器.png -------------------------------------------------------------------------------- /static/flow-editor/demo/img/form-design/计数标签.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/img/form-design/计数标签.png -------------------------------------------------------------------------------- /static/flow-editor/demo/img/form-design/评分.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/img/form-design/评分.png -------------------------------------------------------------------------------- /static/flow-editor/demo/img/login/login-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/img/login/login-bg.png -------------------------------------------------------------------------------- /static/flow-editor/demo/img/logo/logo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/img/logo/logo1.png -------------------------------------------------------------------------------- /static/flow-editor/demo/img/logo/logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/img/logo/logo2.png -------------------------------------------------------------------------------- /static/flow-editor/demo/img/node/control.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/img/node/control.png -------------------------------------------------------------------------------- /static/flow-editor/demo/img/node/data-source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/img/node/data-source.png -------------------------------------------------------------------------------- /static/flow-editor/demo/img/node/output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/img/node/output.png -------------------------------------------------------------------------------- /static/flow-editor/demo/img/node/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/img/node/plus.png -------------------------------------------------------------------------------- /static/flow-editor/demo/img/node/query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/img/node/query.png -------------------------------------------------------------------------------- /static/flow-editor/demo/img/node/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/img/node/start.png -------------------------------------------------------------------------------- /static/flow-editor/demo/img/node/sub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/img/node/sub.png -------------------------------------------------------------------------------- /static/flow-editor/demo/js/dmp/index/flow/flow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/js/dmp/index/flow/flow.js -------------------------------------------------------------------------------- /static/flow-editor/demo/js/dmp/index/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/js/dmp/index/index.js -------------------------------------------------------------------------------- /static/flow-editor/demo/js/dmp/pub/pub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/js/dmp/pub/pub.js -------------------------------------------------------------------------------- /static/flow-editor/demo/js/layui/examples/admin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/js/layui/examples/admin.html -------------------------------------------------------------------------------- /static/flow-editor/demo/js/layui/examples/all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/js/layui/examples/all.html -------------------------------------------------------------------------------- /static/flow-editor/demo/js/layui/examples/button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/js/layui/examples/button.html -------------------------------------------------------------------------------- /static/flow-editor/demo/js/layui/examples/carousel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/js/layui/examples/carousel.html -------------------------------------------------------------------------------- /static/flow-editor/demo/js/layui/examples/code.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/js/layui/examples/code.html -------------------------------------------------------------------------------- /static/flow-editor/demo/js/layui/examples/element.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/js/layui/examples/element.html -------------------------------------------------------------------------------- /static/flow-editor/demo/js/layui/examples/extend.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/js/layui/examples/extend.html -------------------------------------------------------------------------------- /static/flow-editor/demo/js/layui/examples/flow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/js/layui/examples/flow.html -------------------------------------------------------------------------------- /static/flow-editor/demo/js/layui/examples/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/js/layui/examples/form.html -------------------------------------------------------------------------------- /static/flow-editor/demo/js/layui/examples/js/child/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/js/layui/examples/js/child/test.js -------------------------------------------------------------------------------- /static/flow-editor/demo/js/layui/examples/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/js/layui/examples/js/index.js -------------------------------------------------------------------------------- /static/flow-editor/demo/js/layui/examples/json/table/demo1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/js/layui/examples/json/table/demo1.json -------------------------------------------------------------------------------- /static/flow-editor/demo/js/layui/examples/json/table/demo2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/js/layui/examples/json/table/demo2.json -------------------------------------------------------------------------------- /static/flow-editor/demo/js/layui/examples/json/upload/demoLayEdit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/js/layui/examples/json/upload/demoLayEdit.json -------------------------------------------------------------------------------- /static/flow-editor/demo/js/layui/examples/laydate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/js/layui/examples/laydate.html -------------------------------------------------------------------------------- /static/flow-editor/demo/js/layui/examples/layedit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/js/layui/examples/layedit.html -------------------------------------------------------------------------------- /static/flow-editor/demo/js/layui/examples/layer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/js/layui/examples/layer.html -------------------------------------------------------------------------------- /static/flow-editor/demo/js/layui/examples/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/js/layui/examples/layout.html -------------------------------------------------------------------------------- /static/flow-editor/demo/js/layui/examples/laypage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/js/layui/examples/laypage.html -------------------------------------------------------------------------------- /static/flow-editor/demo/js/layui/examples/responsive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/js/layui/examples/responsive.html -------------------------------------------------------------------------------- /static/flow-editor/demo/js/layui/examples/table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/js/layui/examples/table.html -------------------------------------------------------------------------------- /static/flow-editor/demo/js/layui/examples/tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/js/layui/examples/tree.html -------------------------------------------------------------------------------- /static/flow-editor/demo/js/layui/examples/upload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/js/layui/examples/upload.html -------------------------------------------------------------------------------- /static/flow-editor/demo/js/layui/examples/util.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/js/layui/examples/util.html -------------------------------------------------------------------------------- /static/flow-editor/demo/js/layui/examples/xingzuo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/js/layui/examples/xingzuo.html -------------------------------------------------------------------------------- /static/flow-editor/demo/js/plugin/flow/analytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/js/plugin/flow/analytics.js -------------------------------------------------------------------------------- /static/flow-editor/demo/js/plugin/flow/collaboration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/js/plugin/flow/collaboration.js -------------------------------------------------------------------------------- /static/flow-editor/demo/js/plugin/flow/designer.core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/js/plugin/flow/designer.core.js -------------------------------------------------------------------------------- /static/flow-editor/demo/js/plugin/flow/designer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/js/plugin/flow/designer.css -------------------------------------------------------------------------------- /static/flow-editor/demo/js/plugin/flow/designer.events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/js/plugin/flow/designer.events.js -------------------------------------------------------------------------------- /static/flow-editor/demo/js/plugin/flow/designer.methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/js/plugin/flow/designer.methods.js -------------------------------------------------------------------------------- /static/flow-editor/demo/js/plugin/flow/designer.ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/js/plugin/flow/designer.ui.js -------------------------------------------------------------------------------- /static/flow-editor/demo/js/plugin/flow/export.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/js/plugin/flow/export.js -------------------------------------------------------------------------------- /static/flow-editor/demo/js/plugin/flow/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/js/plugin/flow/global.css -------------------------------------------------------------------------------- /static/flow-editor/demo/js/plugin/flow/images/common-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/js/plugin/flow/images/common-16.png -------------------------------------------------------------------------------- /static/flow-editor/demo/js/plugin/flow/images/search_ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/js/plugin/flow/images/search_ico.png -------------------------------------------------------------------------------- /static/flow-editor/demo/js/plugin/flow/images/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/js/plugin/flow/images/sprite.png -------------------------------------------------------------------------------- /static/flow-editor/demo/js/plugin/flow/images/sprite_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/js/plugin/flow/images/sprite_disabled.png -------------------------------------------------------------------------------- /static/flow-editor/demo/js/plugin/flow/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/js/plugin/flow/jquery.js -------------------------------------------------------------------------------- /static/flow-editor/demo/js/plugin/flow/schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/js/plugin/flow/schema.js -------------------------------------------------------------------------------- /static/flow-editor/demo/js/plugin/flow/themes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/js/plugin/flow/themes.js -------------------------------------------------------------------------------- /static/flow-editor/demo/js/plugin/flow/ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/js/plugin/flow/ui.css -------------------------------------------------------------------------------- /static/flow-editor/demo/js/plugin/flow/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/js/plugin/flow/util.js -------------------------------------------------------------------------------- /static/flow-editor/demo/js/plugin/jquery/canvasparticle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/js/plugin/jquery/canvasparticle.js -------------------------------------------------------------------------------- /static/flow-editor/demo/js/plugin/jquery/head.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/js/plugin/jquery/head.min.js -------------------------------------------------------------------------------- /static/flow-editor/demo/js/plugin/jquery/scrollbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/flow-editor/demo/js/plugin/jquery/scrollbar.js -------------------------------------------------------------------------------- /static/font/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/font/demo.css -------------------------------------------------------------------------------- /static/font/demo_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/font/demo_index.html -------------------------------------------------------------------------------- /static/font/iconfont.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/font/iconfont.css -------------------------------------------------------------------------------- /static/font/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/font/iconfont.eot -------------------------------------------------------------------------------- /static/font/iconfont.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/font/iconfont.js -------------------------------------------------------------------------------- /static/font/iconfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/font/iconfont.svg -------------------------------------------------------------------------------- /static/font/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/font/iconfont.ttf -------------------------------------------------------------------------------- /static/font/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/font/iconfont.woff -------------------------------------------------------------------------------- /static/font/iconfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/font/iconfont.woff2 -------------------------------------------------------------------------------- /static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/img/favicon.ico -------------------------------------------------------------------------------- /static/img/form-design/checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/img/form-design/checkbox.png -------------------------------------------------------------------------------- /static/img/form-design/datetime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/img/form-design/datetime.png -------------------------------------------------------------------------------- /static/img/form-design/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/img/form-design/grid.png -------------------------------------------------------------------------------- /static/img/form-design/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/img/form-design/img.png -------------------------------------------------------------------------------- /static/img/form-design/input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/img/form-design/input.png -------------------------------------------------------------------------------- /static/img/form-design/number.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/img/form-design/number.png -------------------------------------------------------------------------------- /static/img/form-design/radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/img/form-design/radio.png -------------------------------------------------------------------------------- /static/img/form-design/select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/img/form-design/select.png -------------------------------------------------------------------------------- /static/img/form-design/switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/img/form-design/switch.png -------------------------------------------------------------------------------- /static/img/form-design/textarea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/img/form-design/textarea.png -------------------------------------------------------------------------------- /static/img/form-design/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/img/form-design/title.png -------------------------------------------------------------------------------- /static/img/form-design/日期.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/img/form-design/日期.png -------------------------------------------------------------------------------- /static/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/normalize.css -------------------------------------------------------------------------------- /static/plugins/echarts-3.8.5/echarts.common.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/echarts-3.8.5/echarts.common.min.js -------------------------------------------------------------------------------- /static/plugins/mock-1.0.0-beta3/mock-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/mock-1.0.0-beta3/mock-min.js -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/anchor/anchor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/anchor/anchor.html -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/attachment/attachment.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/attachment/attachment.css -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/attachment/attachment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/attachment/attachment.html -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/attachment/attachment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/attachment/attachment.js -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/attachment/fileTypeImages/icon_chm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/attachment/fileTypeImages/icon_chm.gif -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/attachment/fileTypeImages/icon_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/attachment/fileTypeImages/icon_default.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/attachment/fileTypeImages/icon_doc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/attachment/fileTypeImages/icon_doc.gif -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/attachment/fileTypeImages/icon_exe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/attachment/fileTypeImages/icon_exe.gif -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/attachment/fileTypeImages/icon_jpg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/attachment/fileTypeImages/icon_jpg.gif -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/attachment/fileTypeImages/icon_mp3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/attachment/fileTypeImages/icon_mp3.gif -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/attachment/fileTypeImages/icon_mv.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/attachment/fileTypeImages/icon_mv.gif -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/attachment/fileTypeImages/icon_pdf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/attachment/fileTypeImages/icon_pdf.gif -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/attachment/fileTypeImages/icon_ppt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/attachment/fileTypeImages/icon_ppt.gif -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/attachment/fileTypeImages/icon_psd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/attachment/fileTypeImages/icon_psd.gif -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/attachment/fileTypeImages/icon_rar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/attachment/fileTypeImages/icon_rar.gif -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/attachment/fileTypeImages/icon_txt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/attachment/fileTypeImages/icon_txt.gif -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/attachment/fileTypeImages/icon_xls.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/attachment/fileTypeImages/icon_xls.gif -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/attachment/images/alignicon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/attachment/images/alignicon.gif -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/attachment/images/alignicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/attachment/images/alignicon.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/attachment/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/attachment/images/bg.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/attachment/images/file-icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/attachment/images/file-icons.gif -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/attachment/images/file-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/attachment/images/file-icons.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/attachment/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/attachment/images/icons.gif -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/attachment/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/attachment/images/icons.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/attachment/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/attachment/images/image.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/attachment/images/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/attachment/images/progress.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/attachment/images/success.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/attachment/images/success.gif -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/attachment/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/attachment/images/success.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/background/background.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/background/background.css -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/background/background.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/background/background.html -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/background/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/background/background.js -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/background/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/background/images/bg.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/background/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/background/images/success.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/charts/chart.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/charts/chart.config.js -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/charts/charts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/charts/charts.css -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/charts/charts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/charts/charts.html -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/charts/charts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/charts/charts.js -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/charts/images/charts0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/charts/images/charts0.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/charts/images/charts1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/charts/images/charts1.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/charts/images/charts2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/charts/images/charts2.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/charts/images/charts3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/charts/images/charts3.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/charts/images/charts4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/charts/images/charts4.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/charts/images/charts5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/charts/images/charts5.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/emotion/emotion.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/emotion/emotion.css -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/emotion/emotion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/emotion/emotion.html -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/emotion/emotion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/emotion/emotion.js -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/emotion/images/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/emotion/images/0.gif -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/emotion/images/bface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/emotion/images/bface.gif -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/emotion/images/cface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/emotion/images/cface.gif -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/emotion/images/fface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/emotion/images/fface.gif -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/emotion/images/jxface2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/emotion/images/jxface2.gif -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/emotion/images/neweditor-tab-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/emotion/images/neweditor-tab-bg.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/emotion/images/tface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/emotion/images/tface.gif -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/emotion/images/wface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/emotion/images/wface.gif -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/emotion/images/yface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/emotion/images/yface.gif -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/gmap/gmap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/gmap/gmap.html -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/help/help.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/help/help.css -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/help/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/help/help.html -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/help/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/help/help.js -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/image/image.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/image/image.css -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/image/image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/image/image.html -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/image/image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/image/image.js -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/image/images/alignicon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/image/images/alignicon.jpg -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/image/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/image/images/bg.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/image/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/image/images/icons.gif -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/image/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/image/images/icons.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/image/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/image/images/image.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/image/images/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/image/images/progress.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/image/images/success.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/image/images/success.gif -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/image/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/image/images/success.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/insertframe/insertframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/insertframe/insertframe.html -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/internal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/internal.js -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/link/link.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/link/link.html -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/map/map.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/map/map.html -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/map/show.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/map/show.html -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/music/music.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/music/music.css -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/music/music.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/music/music.html -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/music/music.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/music/music.js -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/preview/preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/preview/preview.html -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/scrawl/images/addimg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/scrawl/images/addimg.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/scrawl/images/brush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/scrawl/images/brush.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/scrawl/images/delimg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/scrawl/images/delimg.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/scrawl/images/delimgH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/scrawl/images/delimgH.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/scrawl/images/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/scrawl/images/empty.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/scrawl/images/emptyH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/scrawl/images/emptyH.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/scrawl/images/eraser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/scrawl/images/eraser.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/scrawl/images/redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/scrawl/images/redo.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/scrawl/images/redoH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/scrawl/images/redoH.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/scrawl/images/scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/scrawl/images/scale.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/scrawl/images/scaleH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/scrawl/images/scaleH.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/scrawl/images/size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/scrawl/images/size.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/scrawl/images/undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/scrawl/images/undo.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/scrawl/images/undoH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/scrawl/images/undoH.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/scrawl/scrawl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/scrawl/scrawl.css -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/scrawl/scrawl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/scrawl/scrawl.html -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/scrawl/scrawl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/scrawl/scrawl.js -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/searchreplace/searchreplace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/searchreplace/searchreplace.html -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/searchreplace/searchreplace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/searchreplace/searchreplace.js -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/snapscreen/snapscreen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/snapscreen/snapscreen.html -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/spechars/spechars.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/spechars/spechars.html -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/spechars/spechars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/spechars/spechars.js -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/table/dragicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/table/dragicon.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/table/edittable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/table/edittable.css -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/table/edittable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/table/edittable.html -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/table/edittable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/table/edittable.js -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/table/edittd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/table/edittd.html -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/table/edittip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/table/edittip.html -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/template/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/template/config.js -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/template/images/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/template/images/bg.gif -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/template/images/pre0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/template/images/pre0.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/template/images/pre1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/template/images/pre1.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/template/images/pre2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/template/images/pre2.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/template/images/pre3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/template/images/pre3.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/template/images/pre4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/template/images/pre4.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/template/template.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/template/template.css -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/template/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/template/template.html -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/template/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/template/template.js -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/video/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/video/images/bg.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/video/images/center_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/video/images/center_focus.jpg -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/video/images/file-icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/video/images/file-icons.gif -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/video/images/file-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/video/images/file-icons.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/video/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/video/images/icons.gif -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/video/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/video/images/icons.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/video/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/video/images/image.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/video/images/left_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/video/images/left_focus.jpg -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/video/images/none_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/video/images/none_focus.jpg -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/video/images/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/video/images/progress.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/video/images/right_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/video/images/right_focus.jpg -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/video/images/success.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/video/images/success.gif -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/video/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/video/images/success.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/video/video.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/video/video.css -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/video/video.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/video/video.html -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/video/video.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/video/video.js -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/webapp/webapp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/webapp/webapp.html -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/wordimage/fClipboard_ueditor.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/wordimage/fClipboard_ueditor.swf -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/wordimage/imageUploader.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/wordimage/imageUploader.swf -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/wordimage/tangram.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/wordimage/tangram.js -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/wordimage/wordimage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/wordimage/wordimage.html -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/dialogs/wordimage/wordimage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/dialogs/wordimage/wordimage.js -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/lang/en/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/lang/en/en.js -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/lang/en/images/addimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/lang/en/images/addimage.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/lang/en/images/alldeletebtnhoverskin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/lang/en/images/alldeletebtnhoverskin.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/lang/en/images/alldeletebtnupskin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/lang/en/images/alldeletebtnupskin.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/lang/en/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/lang/en/images/background.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/lang/en/images/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/lang/en/images/button.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/lang/en/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/lang/en/images/copy.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/lang/en/images/deletedisable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/lang/en/images/deletedisable.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/lang/en/images/deleteenable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/lang/en/images/deleteenable.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/lang/en/images/listbackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/lang/en/images/listbackground.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/lang/en/images/localimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/lang/en/images/localimage.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/lang/en/images/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/lang/en/images/music.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/lang/en/images/rotateleftdisable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/lang/en/images/rotateleftdisable.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/lang/en/images/rotateleftenable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/lang/en/images/rotateleftenable.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/lang/en/images/rotaterightdisable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/lang/en/images/rotaterightdisable.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/lang/en/images/rotaterightenable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/lang/en/images/rotaterightenable.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/lang/en/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/lang/en/images/upload.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/lang/zh-cn/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/lang/zh-cn/images/copy.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/lang/zh-cn/images/localimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/lang/zh-cn/images/localimage.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/lang/zh-cn/images/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/lang/zh-cn/images/music.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/lang/zh-cn/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/lang/zh-cn/images/upload.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/lang/zh-cn/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/lang/zh-cn/zh-cn.js -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/themes/default/css/ueditor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/themes/default/css/ueditor.css -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/themes/default/css/ueditor.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/themes/default/css/ueditor.min.css -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/themes/default/dialogbase.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/themes/default/dialogbase.css -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/themes/default/images/anchor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/themes/default/images/anchor.gif -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/themes/default/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/themes/default/images/arrow.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/themes/default/images/arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/themes/default/images/arrow_down.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/themes/default/images/arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/themes/default/images/arrow_up.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/themes/default/images/button-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/themes/default/images/button-bg.gif -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/themes/default/images/cancelbutton.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/themes/default/images/cancelbutton.gif -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/themes/default/images/charts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/themes/default/images/charts.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/themes/default/images/cursor_h.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/themes/default/images/cursor_h.gif -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/themes/default/images/cursor_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/themes/default/images/cursor_h.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/themes/default/images/cursor_v.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/themes/default/images/cursor_v.gif -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/themes/default/images/cursor_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/themes/default/images/cursor_v.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/themes/default/images/dialog-title-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/themes/default/images/dialog-title-bg.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/themes/default/images/filescan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/themes/default/images/filescan.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/themes/default/images/highlighted.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/themes/default/images/highlighted.gif -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/themes/default/images/icons-all.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/themes/default/images/icons-all.gif -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/themes/default/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/themes/default/images/icons.gif -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/themes/default/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/themes/default/images/icons.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/themes/default/images/loaderror.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/themes/default/images/loaderror.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/themes/default/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/themes/default/images/loading.gif -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/themes/default/images/lock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/themes/default/images/lock.gif -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/themes/default/images/neweditor-tab-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/themes/default/images/neweditor-tab-bg.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/themes/default/images/pagebreak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/themes/default/images/pagebreak.gif -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/themes/default/images/scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/themes/default/images/scale.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/themes/default/images/sortable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/themes/default/images/sortable.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/themes/default/images/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/themes/default/images/spacer.gif -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/themes/default/images/sparator_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/themes/default/images/sparator_v.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/themes/default/images/table-cell-align.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/themes/default/images/table-cell-align.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/themes/default/images/tangram-colorpicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/themes/default/images/tangram-colorpicker.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/themes/default/images/toolbar_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/themes/default/images/toolbar_bg.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/themes/default/images/unhighlighted.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/themes/default/images/unhighlighted.gif -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/themes/default/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/themes/default/images/upload.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/themes/default/images/videologo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/themes/default/images/videologo.gif -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/themes/default/images/word.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/themes/default/images/word.gif -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/themes/default/images/wordpaste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/themes/default/images/wordpaste.png -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/themes/iframe.css: -------------------------------------------------------------------------------- 1 | /*可以在这里添加你自己的css*/ 2 | -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/third-party/SyntaxHighlighter/shCore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/third-party/SyntaxHighlighter/shCore.js -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/third-party/SyntaxHighlighter/shCoreDefault.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/third-party/SyntaxHighlighter/shCoreDefault.css -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/third-party/codemirror/codemirror.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/third-party/codemirror/codemirror.css -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/third-party/codemirror/codemirror.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/third-party/codemirror/codemirror.js -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/third-party/highcharts/adapters/mootools-adapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/third-party/highcharts/adapters/mootools-adapter.js -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/third-party/highcharts/adapters/mootools-adapter.src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/third-party/highcharts/adapters/mootools-adapter.src.js -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/third-party/highcharts/adapters/prototype-adapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/third-party/highcharts/adapters/prototype-adapter.js -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/third-party/highcharts/adapters/prototype-adapter.src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/third-party/highcharts/adapters/prototype-adapter.src.js -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/third-party/highcharts/adapters/standalone-framework.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/third-party/highcharts/adapters/standalone-framework.js -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/third-party/highcharts/adapters/standalone-framework.src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/third-party/highcharts/adapters/standalone-framework.src.js -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/third-party/highcharts/highcharts-more.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/third-party/highcharts/highcharts-more.js -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/third-party/highcharts/highcharts-more.src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/third-party/highcharts/highcharts-more.src.js -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/third-party/highcharts/highcharts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/third-party/highcharts/highcharts.js -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/third-party/highcharts/highcharts.src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/third-party/highcharts/highcharts.src.js -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/third-party/highcharts/modules/annotations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/third-party/highcharts/modules/annotations.js -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/third-party/highcharts/modules/annotations.src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/third-party/highcharts/modules/annotations.src.js -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/third-party/highcharts/modules/canvas-tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/third-party/highcharts/modules/canvas-tools.js -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/third-party/highcharts/modules/canvas-tools.src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/third-party/highcharts/modules/canvas-tools.src.js -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/third-party/highcharts/modules/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/third-party/highcharts/modules/data.js -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/third-party/highcharts/modules/data.src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/third-party/highcharts/modules/data.src.js -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/third-party/highcharts/modules/drilldown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/third-party/highcharts/modules/drilldown.js -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/third-party/highcharts/modules/drilldown.src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/third-party/highcharts/modules/drilldown.src.js -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/third-party/highcharts/modules/exporting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/third-party/highcharts/modules/exporting.js -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/third-party/highcharts/modules/exporting.src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/third-party/highcharts/modules/exporting.src.js -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/third-party/highcharts/modules/funnel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/third-party/highcharts/modules/funnel.js -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/third-party/highcharts/modules/funnel.src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/third-party/highcharts/modules/funnel.src.js -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/third-party/highcharts/modules/heatmap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/third-party/highcharts/modules/heatmap.js -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/third-party/highcharts/modules/heatmap.src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/third-party/highcharts/modules/heatmap.src.js -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/third-party/highcharts/modules/map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/third-party/highcharts/modules/map.js -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/third-party/highcharts/modules/map.src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/third-party/highcharts/modules/map.src.js -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/third-party/highcharts/modules/no-data-to-display.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/third-party/highcharts/modules/no-data-to-display.js -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/third-party/highcharts/modules/no-data-to-display.src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/third-party/highcharts/modules/no-data-to-display.src.js -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/third-party/highcharts/themes/dark-blue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/third-party/highcharts/themes/dark-blue.js -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/third-party/highcharts/themes/dark-green.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/third-party/highcharts/themes/dark-green.js -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/third-party/highcharts/themes/gray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/third-party/highcharts/themes/gray.js -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/third-party/highcharts/themes/grid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/third-party/highcharts/themes/grid.js -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/third-party/highcharts/themes/skies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/third-party/highcharts/themes/skies.js -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/third-party/jquery-1.10.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/third-party/jquery-1.10.2.js -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/third-party/jquery-1.10.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/third-party/jquery-1.10.2.min.js -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/third-party/jquery-1.10.2.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/third-party/jquery-1.10.2.min.map -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/third-party/snapscreen/UEditorSnapscreen.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/third-party/snapscreen/UEditorSnapscreen.exe -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/third-party/video-js/font/vjs.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/third-party/video-js/font/vjs.eot -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/third-party/video-js/font/vjs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/third-party/video-js/font/vjs.svg -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/third-party/video-js/font/vjs.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/third-party/video-js/font/vjs.ttf -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/third-party/video-js/font/vjs.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/third-party/video-js/font/vjs.woff -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/third-party/video-js/video-js.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/third-party/video-js/video-js.css -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/third-party/video-js/video-js.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/third-party/video-js/video-js.min.css -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/third-party/video-js/video-js.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/third-party/video-js/video-js.swf -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/third-party/video-js/video.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/third-party/video-js/video.dev.js -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/third-party/video-js/video.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/third-party/video-js/video.js -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/third-party/webuploader/Uploader.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/third-party/webuploader/Uploader.swf -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/third-party/webuploader/webuploader.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/third-party/webuploader/webuploader.css -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/third-party/webuploader/webuploader.custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/third-party/webuploader/webuploader.custom.js -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/third-party/webuploader/webuploader.custom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/third-party/webuploader/webuploader.custom.min.js -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/third-party/webuploader/webuploader.flashonly.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/third-party/webuploader/webuploader.flashonly.js -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/third-party/webuploader/webuploader.flashonly.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/third-party/webuploader/webuploader.flashonly.min.js -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/third-party/webuploader/webuploader.html5only.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/third-party/webuploader/webuploader.html5only.js -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/third-party/webuploader/webuploader.html5only.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/third-party/webuploader/webuploader.html5only.min.js -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/third-party/webuploader/webuploader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/third-party/webuploader/webuploader.js -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/third-party/webuploader/webuploader.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/third-party/webuploader/webuploader.min.js -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/third-party/webuploader/webuploader.withoutimage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/third-party/webuploader/webuploader.withoutimage.js -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/third-party/webuploader/webuploader.withoutimage.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/third-party/webuploader/webuploader.withoutimage.min.js -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/third-party/xss.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/third-party/xss.min.js -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/third-party/zeroclipboard/ZeroClipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/third-party/zeroclipboard/ZeroClipboard.js -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/third-party/zeroclipboard/ZeroClipboard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/third-party/zeroclipboard/ZeroClipboard.min.js -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/third-party/zeroclipboard/ZeroClipboard.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/third-party/zeroclipboard/ZeroClipboard.swf -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/ueditor.all.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/ueditor.all.min.js -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/ueditor.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/ueditor.config.js -------------------------------------------------------------------------------- /static/plugins/ueditor-1.4.3.3/ueditor.parse.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/plugins/ueditor-1.4.3.3/ueditor.parse.min.js -------------------------------------------------------------------------------- /static/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/static/reset.css -------------------------------------------------------------------------------- /test/e2e/custom-assertions/elementCount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/test/e2e/custom-assertions/elementCount.js -------------------------------------------------------------------------------- /test/e2e/nightwatch.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/test/e2e/nightwatch.conf.js -------------------------------------------------------------------------------- /test/e2e/runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/test/e2e/runner.js -------------------------------------------------------------------------------- /test/e2e/specs/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/test/e2e/specs/test.js -------------------------------------------------------------------------------- /test/unit/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/test/unit/.eslintrc -------------------------------------------------------------------------------- /test/unit/jest.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/test/unit/jest.conf.js -------------------------------------------------------------------------------- /test/unit/setup.js: -------------------------------------------------------------------------------- 1 | import Vue from 'vue' 2 | 3 | Vue.config.productionTip = false 4 | -------------------------------------------------------------------------------- /test/unit/specs/HelloWorld.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsangTszKin/form-design/HEAD/test/unit/specs/HelloWorld.spec.js --------------------------------------------------------------------------------