├── src ├── router │ └── modules │ │ └── flowable-admin.js ├── assets │ ├── logo.png │ ├── 401_images │ │ └── 401.gif │ ├── 404_images │ │ ├── 404.png │ │ └── 404_cloud.png │ └── custom-theme │ │ └── fonts │ │ ├── element-icons.ttf │ │ └── element-icons.woff ├── views │ ├── nested │ │ ├── menu2 │ │ │ └── index.vue │ │ └── menu1 │ │ │ ├── menu1-3 │ │ │ └── index.vue │ │ │ ├── index.vue │ │ │ ├── menu1-2 │ │ │ ├── menu1-2-1 │ │ │ │ └── index.vue │ │ │ ├── menu1-2-2 │ │ │ │ └── index.vue │ │ │ └── index.vue │ │ │ └── menu1-1 │ │ │ └── index.vue │ ├── errorLog │ │ ├── errorTestB.vue │ │ └── errorTestA.vue │ ├── example │ │ ├── components │ │ │ ├── Dropdown │ │ │ │ └── index.js │ │ │ └── Warning.vue │ │ ├── edit.vue │ │ └── create.vue │ ├── layout │ │ └── components │ │ │ └── index.js │ ├── login │ │ └── authredirect.vue │ ├── svg-icons │ │ └── requireIcons.js │ ├── redirect │ │ └── index.vue │ └── charts │ │ ├── line.vue │ │ └── mixChart.vue ├── App.vue ├── icons │ ├── svg │ │ ├── chart.svg │ │ ├── size.svg │ │ ├── link.svg │ │ ├── guide.svg │ │ ├── component.svg │ │ ├── money.svg │ │ ├── email.svg │ │ ├── drag.svg │ │ ├── guide 2.svg │ │ ├── documentation.svg │ │ ├── user.svg │ │ ├── lock.svg │ │ └── excel.svg │ ├── index.js │ └── svgo.yml ├── api │ ├── qiniu.js │ ├── remoteSearch.js │ └── transaction.js ├── components │ └── ImageCropper │ │ └── utils │ │ └── mimes.js ├── styles │ └── variables.scss ├── utils │ ├── createUniqueString.js │ └── auth.js ├── directive │ ├── waves │ │ └── index.js │ ├── el-dragDialog │ │ └── index.js │ ├── clipboard │ │ └── index.js │ └── permission │ │ └── index.js └── store │ └── modules │ └── errorLog.js ├── static ├── flowable-idm │ ├── views │ │ └── empty.html │ ├── libs │ │ ├── sizzle_1.10.16 │ │ │ ├── test │ │ │ │ └── data │ │ │ │ │ └── empty.js │ │ │ └── tasks │ │ │ │ ├── tag.js │ │ │ │ └── commit.js │ │ └── es5-shim-15.3.4.5 │ │ │ ├── tests │ │ │ ├── helpers │ │ │ │ └── h.js │ │ │ └── lib │ │ │ │ └── jasmine_favicon.png │ │ │ └── .bower.json │ ├── images │ │ ├── glasspane.png │ │ ├── line-1px.png │ │ ├── logo-login.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── flowable-logo.png │ │ ├── logo-login@2x.png │ │ ├── mstile-150x150.png │ │ ├── apple-touch-icon.png │ │ ├── flowable-logo@2x.png │ │ ├── android-chrome-192x192.png │ │ └── android-chrome-384x384.png │ ├── fonts │ │ ├── TitilliumWeb-Bold.ttf │ │ ├── cherokee-webfont.eot │ │ ├── cherokee-webfont.ttf │ │ ├── cherokee-webfont.woff │ │ ├── lato-bold-webfont.eot │ │ ├── lato-bold-webfont.ttf │ │ ├── lato-bold-webfont.woff │ │ ├── TitilliumWeb-Regular.ttf │ │ ├── lato-regular-webfont.eot │ │ ├── lato-regular-webfont.ttf │ │ ├── lato-regular-webfont.woff │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ ├── browserconfig.xml │ └── manifest.json ├── flowable-modeler │ ├── libs │ │ ├── sizzle_1.10.16 │ │ │ ├── test │ │ │ │ └── data │ │ │ │ │ └── empty.js │ │ │ └── tasks │ │ │ │ ├── tag.js │ │ │ │ └── commit.js │ │ ├── es5-shim-15.3.4.5 │ │ │ ├── tests │ │ │ │ ├── helpers │ │ │ │ │ └── h.js │ │ │ │ └── lib │ │ │ │ │ └── jasmine_favicon.png │ │ │ └── .bower.json │ │ ├── ui-grid_3.0.0 │ │ │ ├── ui-grid.eot │ │ │ ├── ui-grid.ttf │ │ │ └── ui-grid.woff │ │ └── bootstrap_3.1.1 │ │ │ └── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ ├── images │ │ ├── line.png │ │ ├── line-1px.png │ │ ├── glasspane.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── flowable-logo.png │ │ ├── tour │ │ │ ├── tour-dnd.gif │ │ │ ├── open-group.gif │ │ │ └── sequenceflow-bendpoint.gif │ │ ├── mstile-150x150.png │ │ ├── apple-touch-icon.png │ │ ├── flowable-logo@2x.png │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-384x384.png │ │ └── form-builder │ │ │ ├── group-icon.png │ │ │ ├── spacer-icon.png │ │ │ ├── datefield-icon.png │ │ │ ├── headline-icon.png │ │ │ ├── hyperlink-icon.png │ │ │ ├── password-icon.png │ │ │ ├── readonly-icon.png │ │ │ ├── textfield-icon.png │ │ │ ├── amountfield-icon.png │ │ │ ├── booleanfield-icon.png │ │ │ ├── choicefield-icon.png │ │ │ ├── decimalfield-icon.png │ │ │ ├── numberfield-icon.png │ │ │ ├── peoplefield-icon.png │ │ │ ├── uploadfield-icon.png │ │ │ ├── dropdownfield-icon.png │ │ │ ├── dynamic-table-icon.png │ │ │ ├── horizontal-line-icon.png │ │ │ ├── readonly-text-icon.png │ │ │ ├── headline-with-line-icon.png │ │ │ └── multi-line-textfield-icon.png │ ├── fonts │ │ ├── cherokee-webfont.eot │ │ ├── cherokee-webfont.ttf │ │ ├── TitilliumWeb-Bold.ttf │ │ ├── cherokee-webfont.woff │ │ ├── lato-bold-webfont.eot │ │ ├── lato-bold-webfont.ttf │ │ ├── lato-bold-webfont.woff │ │ ├── TitilliumWeb-Regular.ttf │ │ ├── lato-regular-webfont.eot │ │ ├── lato-regular-webfont.ttf │ │ ├── lato-regular-webfont.woff │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ ├── editor-app │ │ ├── configuration │ │ │ └── properties │ │ │ │ ├── case-reference-write-template.html │ │ │ │ ├── decisiontable-reference-write-template.html │ │ │ │ ├── http-request-method-display-template.html │ │ │ │ ├── boolean-property-template.html │ │ │ │ ├── fields-write-template.html │ │ │ │ ├── duedate-write-template.html │ │ │ │ ├── assignment-write-template.html │ │ │ │ ├── form-reference-write-template.html │ │ │ │ ├── in-parameters-write-template.html │ │ │ │ ├── out-parameters-write-template.html │ │ │ │ ├── task-listeners-write-template.html │ │ │ │ ├── text-property-write-template.html │ │ │ │ ├── data-properties-write-template.html │ │ │ │ ├── event-listeners-write-template.html │ │ │ │ ├── form-properties-write-template.html │ │ │ │ ├── signal-definitions-write-template.html │ │ │ │ ├── execution-listeners-write-template.html │ │ │ │ ├── fields-display-template.html │ │ │ │ ├── message-definitions-write-template.html │ │ │ │ ├── process-reference-write-template.html │ │ │ │ ├── sequenceflow-order-write-template.html │ │ │ │ ├── case-reference-display-template.html │ │ │ │ ├── condition-expression-write-template.html │ │ │ │ ├── sequenceflow-order-display-template.html │ │ │ │ ├── process-reference-display-template.html │ │ │ │ ├── decisiontable-reference-display-template.html │ │ │ │ ├── in-parameters-display-template.html │ │ │ │ ├── out-parameters-display-template.html │ │ │ │ ├── signal-definitions-display-template.html │ │ │ │ ├── task-listeners-display-template.html │ │ │ │ ├── event-listeners-display-template.html │ │ │ │ ├── form-properties-display-template.html │ │ │ │ ├── message-definitions-display-template.html │ │ │ │ ├── execution-listeners-display-template.html │ │ │ │ ├── ordering-property-write-template.html │ │ │ │ ├── planitem-dropdown-write-template.html │ │ │ │ ├── calledelementtype-property-write-template.html │ │ │ │ ├── default-value-display-template.html │ │ │ │ ├── form-reference-display-template.html │ │ │ │ ├── planitem-dropdown-read-template.html │ │ │ │ ├── multiinstance-property-write-template.html │ │ │ │ ├── data-properties-display-template.html │ │ │ │ ├── signal-property-write-template.html │ │ │ │ ├── message-property-write-template.html │ │ │ │ ├── errorgrid-critical.html │ │ │ │ ├── http-request-method-property-write-template.html │ │ │ │ ├── string-property-write-mode-template.html │ │ │ │ ├── transition-event-write-template.html │ │ │ │ ├── process-historylevel-property-write-template.html │ │ │ │ └── condition-expression-display-template.html │ │ ├── images │ │ │ ├── delete.png │ │ │ ├── loading.gif │ │ │ ├── pencil.png │ │ │ ├── wrench.png │ │ │ ├── bpmn-error.png │ │ │ ├── bpmn-warning.png │ │ │ ├── report_edit.png │ │ │ ├── datadefinition.png │ │ │ ├── nw-handle-dark.gif │ │ │ ├── se-handle-dark.gif │ │ │ └── shapemenu_highlight.png │ │ ├── img-kis │ │ │ ├── grid.gif │ │ │ ├── kis_logo.png │ │ │ ├── add-bendpoint.png │ │ │ ├── icon-zoom-fit.png │ │ │ ├── icon-same-size.png │ │ │ ├── icon-zoom-actual.png │ │ │ ├── remove-bendpoint.png │ │ │ ├── icon-add-bendpoint.png │ │ │ ├── add-bendpoint-hover.png │ │ │ ├── icon-align-horizontal.png │ │ │ ├── icon-align-vertical.png │ │ │ ├── icon-remove-bendpoint.png │ │ │ ├── icon-same-size-selected.png │ │ │ ├── icon-zoom-fit-selected.png │ │ │ ├── remove-bendpoint-hover.png │ │ │ ├── icon-zoom-actual-selected.png │ │ │ ├── icon-add-bendpoint-selected.png │ │ │ ├── icon-align-vertical-selected.png │ │ │ ├── icon-align-horizontal-selected.png │ │ │ └── icon-remove-bendpoint-selected.png │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ ├── activiti-admin-webfont.eot │ │ │ ├── activiti-admin-webfont.ttf │ │ │ ├── activiti-admin-webfont.woff │ │ │ ├── fontawesome-webfont.woff2 │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ ├── stencilsets │ │ │ ├── xforms │ │ │ │ ├── xforms.png │ │ │ │ └── icons │ │ │ │ │ ├── new_alert.png │ │ │ │ │ ├── new_case.png │ │ │ │ │ ├── new_combo.png │ │ │ │ │ ├── new_date.png │ │ │ │ │ ├── new_form.png │ │ │ │ │ ├── new_group.png │ │ │ │ │ ├── new_help.png │ │ │ │ │ ├── new_hint.png │ │ │ │ │ ├── new_input.png │ │ │ │ │ ├── new_item.png │ │ │ │ │ ├── new_label.png │ │ │ │ │ ├── new_range.png │ │ │ │ │ ├── new_action.png │ │ │ │ │ ├── new_choices.png │ │ │ │ │ ├── new_header.png │ │ │ │ │ ├── new_itemset.png │ │ │ │ │ ├── new_number.png │ │ │ │ │ ├── new_output.png │ │ │ │ │ ├── new_repeat.png │ │ │ │ │ ├── new_secret.png │ │ │ │ │ ├── new_select.png │ │ │ │ │ ├── new_select1.png │ │ │ │ │ ├── new_submit.png │ │ │ │ │ ├── new_switch.png │ │ │ │ │ ├── new_trigger.png │ │ │ │ │ ├── new_upload.png │ │ │ │ │ ├── new_checkbox.png │ │ │ │ │ ├── new_paragraph.png │ │ │ │ │ ├── new_separator.png │ │ │ │ │ ├── new_textarea.png │ │ │ │ │ ├── new_radiobutton.png │ │ │ │ │ ├── new_repeating_group.png │ │ │ │ │ └── new_action_container.png │ │ │ ├── bpmn2.0 │ │ │ │ └── icons │ │ │ │ │ ├── diagram.png │ │ │ │ │ ├── activity │ │ │ │ │ ├── task.png │ │ │ │ │ ├── subprocess.png │ │ │ │ │ ├── list │ │ │ │ │ │ ├── type.http.png │ │ │ │ │ │ ├── type.mule.png │ │ │ │ │ │ ├── type.send.png │ │ │ │ │ │ ├── type.user.png │ │ │ │ │ │ ├── type.camel.png │ │ │ │ │ │ ├── type.manual.png │ │ │ │ │ │ ├── type.script.png │ │ │ │ │ │ ├── type.shell.png │ │ │ │ │ │ ├── type.decision.png │ │ │ │ │ │ ├── type.receive.png │ │ │ │ │ │ ├── type.service.png │ │ │ │ │ │ └── type.business.rule.png │ │ │ │ │ ├── adhoc.subprocess.png │ │ │ │ │ ├── event.subprocess.png │ │ │ │ │ ├── expanded.subprocess.png │ │ │ │ │ └── event.subprocess.collapsed.png │ │ │ │ │ ├── endevent │ │ │ │ │ ├── none.png │ │ │ │ │ ├── cancel.png │ │ │ │ │ ├── error.png │ │ │ │ │ └── terminate.png │ │ │ │ │ ├── swimlane │ │ │ │ │ ├── lane.png │ │ │ │ │ └── pool.png │ │ │ │ │ ├── throwing │ │ │ │ │ ├── none.png │ │ │ │ │ └── signal.png │ │ │ │ │ ├── catching │ │ │ │ │ ├── cancel.png │ │ │ │ │ ├── error.png │ │ │ │ │ ├── signal.png │ │ │ │ │ ├── timer.png │ │ │ │ │ ├── message.png │ │ │ │ │ └── compensation.png │ │ │ │ │ ├── startevent │ │ │ │ │ ├── none.png │ │ │ │ │ ├── error.png │ │ │ │ │ ├── message.png │ │ │ │ │ ├── signal.png │ │ │ │ │ └── timer.png │ │ │ │ │ ├── gateway │ │ │ │ │ ├── eventbased.png │ │ │ │ │ ├── inclusive.png │ │ │ │ │ ├── parallel.png │ │ │ │ │ └── exclusive.databased.png │ │ │ │ │ ├── connector │ │ │ │ │ ├── messageflow.png │ │ │ │ │ ├── sequenceflow.png │ │ │ │ │ ├── association.undirected.png │ │ │ │ │ └── association.unidirectional.png │ │ │ │ │ ├── dataobject │ │ │ │ │ └── data.store.png │ │ │ │ │ └── artifact │ │ │ │ │ └── text.annotation.png │ │ │ └── cmmn1.1 │ │ │ │ └── icons │ │ │ │ ├── activity │ │ │ │ ├── task.png │ │ │ │ ├── casetask.png │ │ │ │ ├── httptask.png │ │ │ │ ├── humantask.png │ │ │ │ ├── milestone.png │ │ │ │ ├── processtask.png │ │ │ │ ├── scripttask.png │ │ │ │ ├── servicetask.png │ │ │ │ ├── casefileitem.png │ │ │ │ ├── decisiontask.png │ │ │ │ ├── timereventlistener.png │ │ │ │ ├── expanded.planfragment.png │ │ │ │ └── collapsed.planfragment.png │ │ │ │ ├── sentry │ │ │ │ ├── entry.png │ │ │ │ └── exit.png │ │ │ │ ├── event │ │ │ │ ├── userlistener.png │ │ │ │ ├── eventlistener.png │ │ │ │ └── timerlistener.png │ │ │ │ ├── connection │ │ │ │ └── connector.png │ │ │ │ ├── tables │ │ │ │ └── planningtable.png │ │ │ │ └── containers │ │ │ │ ├── caseplanmodel.png │ │ │ │ ├── expanded.stage.png │ │ │ │ └── collapsed.stage.png │ │ └── popups │ │ │ └── icon-template.html │ ├── browserconfig.xml │ └── manifest.json ├── flowable-task │ ├── libs │ │ ├── sizzle_1.10.16 │ │ │ ├── test │ │ │ │ └── data │ │ │ │ │ └── empty.js │ │ │ └── tasks │ │ │ │ ├── tag.js │ │ │ │ └── commit.js │ │ ├── es5-shim-15.3.4.5 │ │ │ ├── tests │ │ │ │ ├── helpers │ │ │ │ │ └── h.js │ │ │ │ └── lib │ │ │ │ │ └── jasmine_favicon.png │ │ │ └── .bower.json │ │ └── ui-grid_3.0.0 │ │ │ ├── ui-grid.eot │ │ │ ├── ui-grid.ttf │ │ │ └── ui-grid.woff │ ├── images │ │ ├── line-1px.png │ │ ├── glasspane.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── flowable-logo.png │ │ ├── apple-touch-icon.png │ │ ├── flowable-logo@2x.png │ │ ├── mstile-150x150.png │ │ ├── android-chrome-192x192.png │ │ └── android-chrome-384x384.png │ ├── workflow │ │ ├── views │ │ │ ├── case.html │ │ │ ├── task.html │ │ │ ├── process.html │ │ │ └── integration-mode-error.html │ │ └── user-picture.jpg │ ├── fonts │ │ ├── TitilliumWeb-Bold.ttf │ │ ├── cherokee-webfont.eot │ │ ├── cherokee-webfont.ttf │ │ ├── cherokee-webfont.woff │ │ ├── lato-bold-webfont.eot │ │ ├── lato-bold-webfont.ttf │ │ ├── lato-bold-webfont.woff │ │ ├── TitilliumWeb-Regular.ttf │ │ ├── lato-regular-webfont.eot │ │ ├── lato-regular-webfont.ttf │ │ ├── lato-regular-webfont.woff │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ ├── browserconfig.xml │ └── manifest.json └── flowable-admin │ ├── bower_components │ ├── jquery │ │ ├── src │ │ │ ├── outro.js │ │ │ ├── sizzle-jquery.js │ │ │ └── deprecated.js │ │ ├── test │ │ │ ├── data │ │ │ │ ├── badcall.js │ │ │ │ ├── badjson.js │ │ │ │ ├── echoQuery.php │ │ │ │ ├── core │ │ │ │ │ └── dont_return.php │ │ │ │ ├── json_obj.js │ │ │ │ ├── readywaitasset.js │ │ │ │ ├── echoData.php │ │ │ │ ├── nocontent.php │ │ │ │ ├── statusText.php │ │ │ │ ├── support │ │ │ │ │ ├── csp.js │ │ │ │ │ ├── boxSizing.html │ │ │ │ │ └── testElementCrash.html │ │ │ │ ├── atom+xml.php │ │ │ │ ├── name.html │ │ │ │ ├── test.js │ │ │ │ ├── errorWithText.php │ │ │ │ ├── event │ │ │ │ │ └── longLoadScript.php │ │ │ │ ├── 1x1.jpg │ │ │ │ ├── evalScript.php │ │ │ │ ├── test3.html │ │ │ │ ├── iframe.html │ │ │ │ ├── test2.html │ │ │ │ ├── errorWithJSON.php │ │ │ │ ├── cleanScript.html │ │ │ │ ├── test.html │ │ │ │ ├── with_fries_over_jsonp.php │ │ │ │ ├── params_html.php │ │ │ │ ├── test.php │ │ │ │ ├── script.php │ │ │ │ ├── json.php │ │ │ │ ├── text.php │ │ │ │ └── dashboard.xml │ │ │ ├── .jshintignore │ │ │ ├── xhtml.php │ │ │ ├── unit │ │ │ │ ├── exports.js │ │ │ │ └── deprecated.js │ │ │ └── jquery.js │ │ ├── .gitmodules │ │ ├── bower.json │ │ ├── .jshintrc │ │ └── component.json │ ├── sass-bootstrap │ │ ├── CNAME │ │ ├── Gemfile │ │ ├── examples │ │ │ ├── navbar │ │ │ │ └── navbar.css │ │ │ ├── navbar-fixed-top │ │ │ │ └── navbar-fixed-top.css │ │ │ ├── navbar-static-top │ │ │ │ └── navbar-static-top.css │ │ │ ├── screenshots │ │ │ │ ├── grid.jpg │ │ │ │ ├── navbar.jpg │ │ │ │ ├── theme.jpg │ │ │ │ ├── carousel.jpg │ │ │ │ ├── jumbotron.jpg │ │ │ │ ├── offcanvas.jpg │ │ │ │ ├── sign-in.jpg │ │ │ │ ├── justified-nav.jpg │ │ │ │ ├── navbar-fixed.jpg │ │ │ │ ├── navbar-static.jpg │ │ │ │ ├── non-responsive.jpg │ │ │ │ ├── sticky-footer.jpg │ │ │ │ ├── jumbotron-narrow.jpg │ │ │ │ ├── starter-template.jpg │ │ │ │ └── sticky-footer-navbar.jpg │ │ │ ├── starter-template │ │ │ │ └── starter-template.css │ │ │ ├── jumbotron │ │ │ │ └── jumbotron.css │ │ │ ├── offcanvas │ │ │ │ └── offcanvas.js │ │ │ └── theme │ │ │ │ └── theme.css │ │ ├── assets │ │ │ └── ico │ │ │ │ ├── favicon.png │ │ │ │ ├── apple-touch-icon-57-precomposed.png │ │ │ │ ├── apple-touch-icon-72-precomposed.png │ │ │ │ ├── apple-touch-icon-114-precomposed.png │ │ │ │ └── apple-touch-icon-144-precomposed.png │ │ ├── Gemfile.lock │ │ ├── bower.json │ │ ├── _includes │ │ │ ├── ads.html │ │ │ └── old-bs-docs.html │ │ └── js │ │ │ └── tests │ │ │ └── server.js │ ├── json3 │ │ ├── .npmignore │ │ ├── vendor │ │ │ └── closure-compiler.jar │ │ ├── page │ │ │ ├── logo.png │ │ │ └── background.png │ │ ├── .gitmodules │ │ ├── benchmark │ │ │ └── assets │ │ │ │ └── nano.jar │ │ └── .bower.json │ ├── angular-ui-utils │ │ ├── .travis.yml │ │ └── bower.json │ ├── atmosphere │ │ ├── bower.json │ │ └── README.md │ ├── modernizr │ │ ├── feature-detects │ │ │ ├── css-mediaqueries.js │ │ │ ├── workers-sharedworkers.js │ │ │ ├── script-async.js │ │ │ ├── script-defer.js │ │ │ ├── cors.js │ │ │ ├── css-objectfit.js │ │ │ ├── dom-microdata.js │ │ │ ├── network-eventsource.js │ │ │ ├── audio-audiodata-api.js │ │ │ ├── es5-strictmode.js │ │ │ ├── pointerlock-api.js │ │ │ ├── dart.js │ │ │ ├── dom-classlist.js │ │ │ ├── window-framed.js │ │ │ ├── vibration.js │ │ │ ├── battery-api.js │ │ │ ├── audio-webaudio-api.js │ │ │ ├── dataview-api.js │ │ │ ├── elem-time.js │ │ │ ├── lists-reversed.js │ │ │ ├── web-intents.js │ │ │ ├── css-resize.js │ │ │ ├── elem-output.js │ │ │ ├── style-scoped.js │ │ │ ├── userdata.js │ │ │ ├── css-userselect.js │ │ │ ├── getusermedia.js │ │ │ ├── iframe-srcdoc.js │ │ │ ├── json.js │ │ │ ├── iframe-sandbox.js │ │ │ ├── iframe-seamless.js │ │ │ ├── blob-constructor.js │ │ │ ├── dom-dataset.js │ │ │ ├── css-overflow-scrolling.js │ │ │ ├── websockets-binary.js │ │ │ ├── custom-protocol-handler.js │ │ │ ├── performance.js │ │ │ ├── css-boxsizing.js │ │ │ ├── contextmenu.js │ │ │ ├── requestanimationframe.js │ │ │ ├── file-filesystem.js │ │ │ ├── dom-createElement-attrs.js │ │ │ ├── css-supports.js │ │ │ ├── css-backgroundsizecover.js │ │ │ ├── a-download.js │ │ │ ├── css-lastchild.js │ │ │ ├── elem-datalist.js │ │ │ ├── forms-placeholder.js │ │ │ └── css-cubicbezierrange.js │ │ ├── .travis.yml │ │ ├── media │ │ │ └── Modernizr 2 Logo.png │ │ ├── test │ │ │ └── caniuse_files │ │ │ │ ├── alpha.png │ │ │ │ ├── ruby.png │ │ │ │ ├── table.png │ │ │ │ ├── green5x5.png │ │ │ │ ├── red30x30.png │ │ │ │ ├── svg_blur.png │ │ │ │ ├── apng_test.png │ │ │ │ ├── mathml_ref.png │ │ │ │ ├── before-after.png │ │ │ │ ├── stroked-text.png │ │ │ │ ├── svg-html-blur.png │ │ │ │ ├── text-shadow1.png │ │ │ │ ├── text-shadow2.png │ │ │ │ ├── windsong_font.png │ │ │ │ ├── png_alpha_result.png │ │ │ │ ├── svg-img.svg │ │ │ │ ├── svg-img.svg.1 │ │ │ │ └── hashchange.html │ │ ├── .editorconfig │ │ └── .bower.json │ ├── angular-scenario │ │ ├── angular-scenario.js │ │ ├── jstd-scenario-adapter-config.js │ │ └── bower.json │ ├── angular │ │ ├── bower.json │ │ └── angular-csp.css │ ├── jquery-atmosphere │ │ ├── bower.json │ │ └── README.md │ ├── angular-mocks │ │ └── bower.json │ ├── angular-route │ │ └── bower.json │ ├── angular-cookies │ │ └── bower.json │ ├── angular-resource │ │ └── bower.json │ ├── angular-sanitize │ │ └── bower.json │ └── ng-file-upload │ │ └── README.md │ ├── images │ ├── cluster.png │ ├── network.png │ ├── cluster-x2.png │ ├── network-x2.png │ ├── settings.png │ ├── tip-left.png │ ├── settings-x2.png │ ├── tip-left-2x.png │ ├── famfamfam-flags.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── flowable-logo.png │ ├── mstile-150x150.png │ ├── apple-touch-icon.png │ ├── flowable-logo@2x.png │ ├── glyphicons-halflings.png │ ├── android-chrome-192x192.png │ ├── android-chrome-384x384.png │ └── glyphicons-halflings-white.png │ ├── fonts │ ├── font3933-webfont.eot │ ├── font3933-webfont.ttf │ ├── TitilliumWeb-Bold.ttf │ ├── font3933-webfont.woff │ ├── TitilliumWeb-Regular.ttf │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff │ ├── additional_components │ ├── ui-grid │ │ ├── ui-grid.eot │ │ ├── ui-grid.ttf │ │ └── ui-grid.woff │ └── angular-ui-select2 │ │ ├── select2.png │ │ ├── select2x2.png │ │ └── select2-spinner.gif │ ├── browserconfig.xml │ └── manifest.json ├── .eslintignore ├── favicon.ico ├── images ├── 2018112.png ├── 201811201.png ├── 20181121.png └── 20181124.png ├── .travis.yml ├── config ├── dev.env.js ├── sit.env.js └── prod.env.js ├── README.md ├── .postcssrc.js ├── .editorconfig ├── .gitignore └── .babelrc /src/router/modules/flowable-admin.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/flowable-idm/views/empty.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /static/flowable-idm/libs/sizzle_1.10.16/test/data/empty.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | build/*.js 2 | config/*.js 3 | src/assets 4 | -------------------------------------------------------------------------------- /static/flowable-modeler/libs/sizzle_1.10.16/test/data/empty.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/flowable-task/libs/sizzle_1.10.16/test/data/empty.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/favicon.ico -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/jquery/src/outro.js: -------------------------------------------------------------------------------- 1 | 2 | })( window ); 3 | -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/jquery/test/data/badcall.js: -------------------------------------------------------------------------------- 1 | undefined(); 2 | -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/sass-bootstrap/CNAME: -------------------------------------------------------------------------------- 1 | getbootstrap.com 2 | -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/jquery/test/data/badjson.js: -------------------------------------------------------------------------------- 1 | {bad: toTheBone} 2 | -------------------------------------------------------------------------------- /images/2018112.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/images/2018112.png -------------------------------------------------------------------------------- /images/201811201.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/images/201811201.png -------------------------------------------------------------------------------- /images/20181121.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/images/20181121.png -------------------------------------------------------------------------------- /images/20181124.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/images/20181124.png -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/jquery/test/data/echoQuery.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/jquery/test/data/core/dont_return.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/jquery/test/data/json_obj.js: -------------------------------------------------------------------------------- 1 | { "data": {"lang": "en", "length": 25} } 2 | -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/jquery/test/data/readywaitasset.js: -------------------------------------------------------------------------------- 1 | var delayedMessage = "It worked!"; 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: stable 3 | script: npm run test 4 | notifications: 5 | email: false 6 | -------------------------------------------------------------------------------- /src/assets/401_images/401.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/src/assets/401_images/401.gif -------------------------------------------------------------------------------- /src/assets/404_images/404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/src/assets/404_images/404.png -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/jquery/test/data/echoData.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /static/flowable-idm/libs/es5-shim-15.3.4.5/tests/helpers/h.js: -------------------------------------------------------------------------------- 1 | function implement() { 2 | throw 'Not implemented'; 3 | } -------------------------------------------------------------------------------- /static/flowable-task/libs/es5-shim-15.3.4.5/tests/helpers/h.js: -------------------------------------------------------------------------------- 1 | function implement() { 2 | throw 'Not implemented'; 3 | } -------------------------------------------------------------------------------- /config/dev.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"development"', 3 | ENV_CONFIG: '"dev"', 4 | BASE_API: '""' 5 | } 6 | -------------------------------------------------------------------------------- /src/assets/404_images/404_cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/src/assets/404_images/404_cloud.png -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/json3/.npmignore: -------------------------------------------------------------------------------- 1 | build.js 2 | index.html 3 | jsl.conf 4 | 5 | page 6 | test 7 | vendor -------------------------------------------------------------------------------- /static/flowable-modeler/libs/es5-shim-15.3.4.5/tests/helpers/h.js: -------------------------------------------------------------------------------- 1 | function implement() { 2 | throw 'Not implemented'; 3 | } -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/jquery/test/.jshintignore: -------------------------------------------------------------------------------- 1 | qunit/ 2 | data/badjson.js 3 | data/jquery-1.9.1.ajax_xhr.min.js 4 | -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/jquery/test/data/nocontent.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/flowable-admin/images/cluster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-admin/images/cluster.png -------------------------------------------------------------------------------- /static/flowable-admin/images/network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-admin/images/network.png -------------------------------------------------------------------------------- /static/flowable-idm/images/glasspane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-idm/images/glasspane.png -------------------------------------------------------------------------------- /static/flowable-idm/images/line-1px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-idm/images/line-1px.png -------------------------------------------------------------------------------- /static/flowable-modeler/images/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/images/line.png -------------------------------------------------------------------------------- /static/flowable-task/images/line-1px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-task/images/line-1px.png -------------------------------------------------------------------------------- /config/sit.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"', 3 | ENV_CONFIG: '"sit"', 4 | BASE_API: '"https://api-sit"' 5 | } 6 | -------------------------------------------------------------------------------- /static/flowable-admin/images/cluster-x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-admin/images/cluster-x2.png -------------------------------------------------------------------------------- /static/flowable-admin/images/network-x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-admin/images/network-x2.png -------------------------------------------------------------------------------- /static/flowable-admin/images/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-admin/images/settings.png -------------------------------------------------------------------------------- /static/flowable-admin/images/tip-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-admin/images/tip-left.png -------------------------------------------------------------------------------- /static/flowable-idm/images/logo-login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-idm/images/logo-login.png -------------------------------------------------------------------------------- /static/flowable-modeler/images/line-1px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/images/line-1px.png -------------------------------------------------------------------------------- /static/flowable-task/images/glasspane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-task/images/glasspane.png -------------------------------------------------------------------------------- /config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"', 3 | ENV_CONFIG: '"prod"', 4 | BASE_API: '"https://api-prod"' 5 | } 6 | -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/jquery/test/data/statusText.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/jquery/test/data/support/csp.js: -------------------------------------------------------------------------------- 1 | jQuery(function() { 2 | parent.iframeCallback( jQuery.support ); 3 | }); 4 | -------------------------------------------------------------------------------- /static/flowable-admin/images/settings-x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-admin/images/settings-x2.png -------------------------------------------------------------------------------- /static/flowable-admin/images/tip-left-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-admin/images/tip-left-2x.png -------------------------------------------------------------------------------- /static/flowable-idm/images/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-idm/images/favicon-16x16.png -------------------------------------------------------------------------------- /static/flowable-idm/images/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-idm/images/favicon-32x32.png -------------------------------------------------------------------------------- /static/flowable-idm/images/flowable-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-idm/images/flowable-logo.png -------------------------------------------------------------------------------- /static/flowable-idm/images/logo-login@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-idm/images/logo-login@2x.png -------------------------------------------------------------------------------- /static/flowable-idm/images/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-idm/images/mstile-150x150.png -------------------------------------------------------------------------------- /static/flowable-modeler/images/glasspane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/images/glasspane.png -------------------------------------------------------------------------------- /static/flowable-task/images/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-task/images/favicon-16x16.png -------------------------------------------------------------------------------- /static/flowable-task/images/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-task/images/favicon-32x32.png -------------------------------------------------------------------------------- /static/flowable-task/images/flowable-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-task/images/flowable-logo.png -------------------------------------------------------------------------------- /static/flowable-task/workflow/views/case.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /static/flowable-task/workflow/views/task.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /src/assets/custom-theme/fonts/element-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/src/assets/custom-theme/fonts/element-icons.ttf -------------------------------------------------------------------------------- /src/assets/custom-theme/fonts/element-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/src/assets/custom-theme/fonts/element-icons.woff -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/angular-ui-utils/.travis.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # blacklist the bower branch 3 | branches: 4 | only: 5 | - master 6 | -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/jquery/test/data/atom+xml.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/jquery/test/data/name.html: -------------------------------------------------------------------------------- 1 | ERROR 2 | -------------------------------------------------------------------------------- /static/flowable-admin/fonts/font3933-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-admin/fonts/font3933-webfont.eot -------------------------------------------------------------------------------- /static/flowable-admin/fonts/font3933-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-admin/fonts/font3933-webfont.ttf -------------------------------------------------------------------------------- /static/flowable-admin/images/famfamfam-flags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-admin/images/famfamfam-flags.png -------------------------------------------------------------------------------- /static/flowable-admin/images/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-admin/images/favicon-16x16.png -------------------------------------------------------------------------------- /static/flowable-admin/images/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-admin/images/favicon-32x32.png -------------------------------------------------------------------------------- /static/flowable-admin/images/flowable-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-admin/images/flowable-logo.png -------------------------------------------------------------------------------- /static/flowable-admin/images/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-admin/images/mstile-150x150.png -------------------------------------------------------------------------------- /static/flowable-idm/fonts/TitilliumWeb-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-idm/fonts/TitilliumWeb-Bold.ttf -------------------------------------------------------------------------------- /static/flowable-idm/fonts/cherokee-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-idm/fonts/cherokee-webfont.eot -------------------------------------------------------------------------------- /static/flowable-idm/fonts/cherokee-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-idm/fonts/cherokee-webfont.ttf -------------------------------------------------------------------------------- /static/flowable-idm/fonts/cherokee-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-idm/fonts/cherokee-webfont.woff -------------------------------------------------------------------------------- /static/flowable-idm/fonts/lato-bold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-idm/fonts/lato-bold-webfont.eot -------------------------------------------------------------------------------- /static/flowable-idm/fonts/lato-bold-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-idm/fonts/lato-bold-webfont.ttf -------------------------------------------------------------------------------- /static/flowable-idm/fonts/lato-bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-idm/fonts/lato-bold-webfont.woff -------------------------------------------------------------------------------- /static/flowable-idm/images/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-idm/images/apple-touch-icon.png -------------------------------------------------------------------------------- /static/flowable-idm/images/flowable-logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-idm/images/flowable-logo@2x.png -------------------------------------------------------------------------------- /static/flowable-modeler/images/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/images/favicon-16x16.png -------------------------------------------------------------------------------- /static/flowable-modeler/images/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/images/favicon-32x32.png -------------------------------------------------------------------------------- /static/flowable-modeler/images/flowable-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/images/flowable-logo.png -------------------------------------------------------------------------------- /static/flowable-modeler/images/tour/tour-dnd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/images/tour/tour-dnd.gif -------------------------------------------------------------------------------- /static/flowable-task/fonts/TitilliumWeb-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-task/fonts/TitilliumWeb-Bold.ttf -------------------------------------------------------------------------------- /static/flowable-task/fonts/cherokee-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-task/fonts/cherokee-webfont.eot -------------------------------------------------------------------------------- /static/flowable-task/fonts/cherokee-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-task/fonts/cherokee-webfont.ttf -------------------------------------------------------------------------------- /static/flowable-task/fonts/cherokee-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-task/fonts/cherokee-webfont.woff -------------------------------------------------------------------------------- /static/flowable-task/fonts/lato-bold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-task/fonts/lato-bold-webfont.eot -------------------------------------------------------------------------------- /static/flowable-task/fonts/lato-bold-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-task/fonts/lato-bold-webfont.ttf -------------------------------------------------------------------------------- /static/flowable-task/images/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-task/images/apple-touch-icon.png -------------------------------------------------------------------------------- /static/flowable-task/images/flowable-logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-task/images/flowable-logo@2x.png -------------------------------------------------------------------------------- /static/flowable-task/images/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-task/images/mstile-150x150.png -------------------------------------------------------------------------------- /static/flowable-task/workflow/user-picture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-task/workflow/user-picture.jpg -------------------------------------------------------------------------------- /static/flowable-task/workflow/views/process.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/atmosphere/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "atmosphere.js", 3 | "version": "2.1.2", 4 | "name": "atmosphere-js" 5 | } -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/jquery/test/data/test.js: -------------------------------------------------------------------------------- 1 | this.testBar = "bar"; 2 | jQuery("#ap").html("bar"); 3 | ok( true, "test.js executed"); 4 | -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/modernizr/feature-detects/css-mediaqueries.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | Modernizr.addTest('mediaqueries', Modernizr.mq('only all')); -------------------------------------------------------------------------------- /static/flowable-admin/fonts/TitilliumWeb-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-admin/fonts/TitilliumWeb-Bold.ttf -------------------------------------------------------------------------------- /static/flowable-admin/fonts/font3933-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-admin/fonts/font3933-webfont.woff -------------------------------------------------------------------------------- /static/flowable-admin/images/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-admin/images/apple-touch-icon.png -------------------------------------------------------------------------------- /static/flowable-admin/images/flowable-logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-admin/images/flowable-logo@2x.png -------------------------------------------------------------------------------- /static/flowable-idm/fonts/TitilliumWeb-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-idm/fonts/TitilliumWeb-Regular.ttf -------------------------------------------------------------------------------- /static/flowable-idm/fonts/lato-regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-idm/fonts/lato-regular-webfont.eot -------------------------------------------------------------------------------- /static/flowable-idm/fonts/lato-regular-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-idm/fonts/lato-regular-webfont.ttf -------------------------------------------------------------------------------- /static/flowable-modeler/fonts/cherokee-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/fonts/cherokee-webfont.eot -------------------------------------------------------------------------------- /static/flowable-modeler/fonts/cherokee-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/fonts/cherokee-webfont.ttf -------------------------------------------------------------------------------- /static/flowable-modeler/images/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/images/mstile-150x150.png -------------------------------------------------------------------------------- /static/flowable-modeler/images/tour/open-group.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/images/tour/open-group.gif -------------------------------------------------------------------------------- /static/flowable-task/fonts/lato-bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-task/fonts/lato-bold-webfont.woff -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/jquery/test/data/errorWithText.php: -------------------------------------------------------------------------------- 1 | 3.2' 5 | gem 'rb-fsevent' 6 | -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/sass-bootstrap/examples/navbar/navbar.css: -------------------------------------------------------------------------------- 1 | body { 2 | padding: 30px; 3 | } 4 | 5 | .navbar { 6 | margin-bottom: 30px; 7 | } -------------------------------------------------------------------------------- /static/flowable-admin/fonts/TitilliumWeb-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-admin/fonts/TitilliumWeb-Regular.ttf -------------------------------------------------------------------------------- /static/flowable-admin/images/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-admin/images/glyphicons-halflings.png -------------------------------------------------------------------------------- /static/flowable-idm/fonts/lato-regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-idm/fonts/lato-regular-webfont.woff -------------------------------------------------------------------------------- /static/flowable-idm/images/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-idm/images/android-chrome-192x192.png -------------------------------------------------------------------------------- /static/flowable-idm/images/android-chrome-384x384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-idm/images/android-chrome-384x384.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/configuration/properties/case-reference-write-template.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/images/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/images/delete.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/images/loading.gif -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/images/pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/images/pencil.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/images/wrench.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/images/wrench.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/img-kis/grid.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/img-kis/grid.gif -------------------------------------------------------------------------------- /static/flowable-modeler/fonts/TitilliumWeb-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/fonts/TitilliumWeb-Bold.ttf -------------------------------------------------------------------------------- /static/flowable-modeler/fonts/cherokee-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/fonts/cherokee-webfont.woff -------------------------------------------------------------------------------- /static/flowable-modeler/fonts/lato-bold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/fonts/lato-bold-webfont.eot -------------------------------------------------------------------------------- /static/flowable-modeler/fonts/lato-bold-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/fonts/lato-bold-webfont.ttf -------------------------------------------------------------------------------- /static/flowable-modeler/fonts/lato-bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/fonts/lato-bold-webfont.woff -------------------------------------------------------------------------------- /static/flowable-modeler/images/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/images/apple-touch-icon.png -------------------------------------------------------------------------------- /static/flowable-modeler/images/flowable-logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/images/flowable-logo@2x.png -------------------------------------------------------------------------------- /static/flowable-task/fonts/TitilliumWeb-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-task/fonts/TitilliumWeb-Regular.ttf -------------------------------------------------------------------------------- /static/flowable-task/fonts/lato-regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-task/fonts/lato-regular-webfont.eot -------------------------------------------------------------------------------- /static/flowable-task/fonts/lato-regular-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-task/fonts/lato-regular-webfont.ttf -------------------------------------------------------------------------------- /static/flowable-task/fonts/lato-regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-task/fonts/lato-regular-webfont.woff -------------------------------------------------------------------------------- /static/flowable-task/libs/ui-grid_3.0.0/ui-grid.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-task/libs/ui-grid_3.0.0/ui-grid.eot -------------------------------------------------------------------------------- /static/flowable-task/libs/ui-grid_3.0.0/ui-grid.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-task/libs/ui-grid_3.0.0/ui-grid.ttf -------------------------------------------------------------------------------- /static/flowable-task/libs/ui-grid_3.0.0/ui-grid.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-task/libs/ui-grid_3.0.0/ui-grid.woff -------------------------------------------------------------------------------- /src/views/nested/menu2/index.vue: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/angular-scenario/angular-scenario.js: -------------------------------------------------------------------------------- 1 | Unexpected error. File contents could not be restored from local history during undo/redo. -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/sass-bootstrap/examples/navbar-fixed-top/navbar-fixed-top.css: -------------------------------------------------------------------------------- 1 | body { 2 | min-height: 2000px; 3 | padding-top: 70px; 4 | } 5 | -------------------------------------------------------------------------------- /static/flowable-admin/images/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-admin/images/android-chrome-192x192.png -------------------------------------------------------------------------------- /static/flowable-admin/images/android-chrome-384x384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-admin/images/android-chrome-384x384.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/img-kis/kis_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/img-kis/kis_logo.png -------------------------------------------------------------------------------- /static/flowable-modeler/fonts/TitilliumWeb-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/fonts/TitilliumWeb-Regular.ttf -------------------------------------------------------------------------------- /static/flowable-modeler/fonts/lato-regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/fonts/lato-regular-webfont.eot -------------------------------------------------------------------------------- /static/flowable-modeler/fonts/lato-regular-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/fonts/lato-regular-webfont.ttf -------------------------------------------------------------------------------- /static/flowable-modeler/fonts/lato-regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/fonts/lato-regular-webfont.woff -------------------------------------------------------------------------------- /static/flowable-modeler/libs/ui-grid_3.0.0/ui-grid.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/libs/ui-grid_3.0.0/ui-grid.eot -------------------------------------------------------------------------------- /static/flowable-modeler/libs/ui-grid_3.0.0/ui-grid.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/libs/ui-grid_3.0.0/ui-grid.ttf -------------------------------------------------------------------------------- /static/flowable-modeler/libs/ui-grid_3.0.0/ui-grid.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/libs/ui-grid_3.0.0/ui-grid.woff -------------------------------------------------------------------------------- /static/flowable-task/images/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-task/images/android-chrome-192x192.png -------------------------------------------------------------------------------- /static/flowable-task/images/android-chrome-384x384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-task/images/android-chrome-384x384.png -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/jquery/test/data/event/longLoadScript.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/json3/page/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-admin/bower_components/json3/page/logo.png -------------------------------------------------------------------------------- /static/flowable-idm/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-idm/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /static/flowable-idm/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-idm/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/images/bpmn-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/images/bpmn-error.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/images/bpmn-warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/images/bpmn-warning.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/images/report_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/images/report_edit.png -------------------------------------------------------------------------------- /static/flowable-modeler/images/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/images/android-chrome-192x192.png -------------------------------------------------------------------------------- /static/flowable-modeler/images/android-chrome-384x384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/images/android-chrome-384x384.png -------------------------------------------------------------------------------- /static/flowable-modeler/images/form-builder/group-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/images/form-builder/group-icon.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | ## 效果 3 | 4 | ![](/images/2018112.png) 5 | 6 | ![](/images/20181121.png) 7 | 8 | ![](/images/20181124.png) 9 | 10 | ![](/images/201811201.png) 11 | -------------------------------------------------------------------------------- /static/flowable-admin/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-admin/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /static/flowable-admin/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-admin/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /static/flowable-admin/images/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-admin/images/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /static/flowable-idm/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-idm/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/configuration/properties/decisiontable-reference-write-template.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/images/datadefinition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/images/datadefinition.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/images/nw-handle-dark.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/images/nw-handle-dark.gif -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/images/se-handle-dark.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/images/se-handle-dark.gif -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/img-kis/add-bendpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/img-kis/add-bendpoint.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/img-kis/icon-zoom-fit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/img-kis/icon-zoom-fit.png -------------------------------------------------------------------------------- /static/flowable-modeler/images/form-builder/spacer-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/images/form-builder/spacer-icon.png -------------------------------------------------------------------------------- /static/flowable-task/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-task/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /static/flowable-task/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-task/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /static/flowable-task/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-task/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /static/flowable-admin/additional_components/ui-grid/ui-grid.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-admin/additional_components/ui-grid/ui-grid.eot -------------------------------------------------------------------------------- /static/flowable-admin/additional_components/ui-grid/ui-grid.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-admin/additional_components/ui-grid/ui-grid.ttf -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/jquery/test/data/1x1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-admin/bower_components/jquery/test/data/1x1.jpg -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/modernizr/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 4 | before_script: 5 | - npm install grunt 6 | script: grunt travis --verbose -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/modernizr/feature-detects/workers-sharedworkers.js: -------------------------------------------------------------------------------- 1 | Modernizr.addTest('sharedworkers', function(){ 2 | return !!window.SharedWorker; 3 | }); -------------------------------------------------------------------------------- /static/flowable-admin/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-admin/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/img-kis/icon-same-size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/img-kis/icon-same-size.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/img-kis/icon-zoom-actual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/img-kis/icon-zoom-actual.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/img-kis/remove-bendpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/img-kis/remove-bendpoint.png -------------------------------------------------------------------------------- /static/flowable-modeler/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /static/flowable-modeler/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /static/flowable-modeler/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /static/flowable-modeler/images/form-builder/datefield-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/images/form-builder/datefield-icon.png -------------------------------------------------------------------------------- /static/flowable-modeler/images/form-builder/headline-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/images/form-builder/headline-icon.png -------------------------------------------------------------------------------- /static/flowable-modeler/images/form-builder/hyperlink-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/images/form-builder/hyperlink-icon.png -------------------------------------------------------------------------------- /static/flowable-modeler/images/form-builder/password-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/images/form-builder/password-icon.png -------------------------------------------------------------------------------- /static/flowable-modeler/images/form-builder/readonly-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/images/form-builder/readonly-icon.png -------------------------------------------------------------------------------- /static/flowable-modeler/images/form-builder/textfield-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/images/form-builder/textfield-icon.png -------------------------------------------------------------------------------- /static/flowable-modeler/images/tour/sequenceflow-bendpoint.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/images/tour/sequenceflow-bendpoint.gif -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- 1 | 6 | 7 | 12 | -------------------------------------------------------------------------------- /static/flowable-admin/additional_components/ui-grid/ui-grid.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-admin/additional_components/ui-grid/ui-grid.woff -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/json3/page/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-admin/bower_components/json3/page/background.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/images/shapemenu_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/images/shapemenu_highlight.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/img-kis/icon-add-bendpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/img-kis/icon-add-bendpoint.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/xforms/xforms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/xforms/xforms.png -------------------------------------------------------------------------------- /static/flowable-modeler/images/form-builder/amountfield-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/images/form-builder/amountfield-icon.png -------------------------------------------------------------------------------- /static/flowable-modeler/images/form-builder/booleanfield-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/images/form-builder/booleanfield-icon.png -------------------------------------------------------------------------------- /static/flowable-modeler/images/form-builder/choicefield-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/images/form-builder/choicefield-icon.png -------------------------------------------------------------------------------- /static/flowable-modeler/images/form-builder/decimalfield-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/images/form-builder/decimalfield-icon.png -------------------------------------------------------------------------------- /static/flowable-modeler/images/form-builder/numberfield-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/images/form-builder/numberfield-icon.png -------------------------------------------------------------------------------- /static/flowable-modeler/images/form-builder/peoplefield-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/images/form-builder/peoplefield-icon.png -------------------------------------------------------------------------------- /static/flowable-modeler/images/form-builder/uploadfield-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/images/form-builder/uploadfield-icon.png -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/jquery/test/data/evalScript.php: -------------------------------------------------------------------------------- 1 | ok( "" === "GET", "request method is " ); -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/fonts/activiti-admin-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/fonts/activiti-admin-webfont.eot -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/fonts/activiti-admin-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/fonts/activiti-admin-webfont.ttf -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/fonts/activiti-admin-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/fonts/activiti-admin-webfont.woff -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/img-kis/add-bendpoint-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/img-kis/add-bendpoint-hover.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/img-kis/icon-align-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/img-kis/icon-align-horizontal.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/img-kis/icon-align-vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/img-kis/icon-align-vertical.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/img-kis/icon-remove-bendpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/img-kis/icon-remove-bendpoint.png -------------------------------------------------------------------------------- /static/flowable-modeler/images/form-builder/dropdownfield-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/images/form-builder/dropdownfield-icon.png -------------------------------------------------------------------------------- /static/flowable-modeler/images/form-builder/dynamic-table-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/images/form-builder/dynamic-table-icon.png -------------------------------------------------------------------------------- /static/flowable-modeler/images/form-builder/horizontal-line-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/images/form-builder/horizontal-line-icon.png -------------------------------------------------------------------------------- /static/flowable-modeler/images/form-builder/readonly-text-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/images/form-builder/readonly-text-icon.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/img-kis/icon-same-size-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/img-kis/icon-same-size-selected.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/img-kis/icon-zoom-fit-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/img-kis/icon-zoom-fit-selected.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/img-kis/remove-bendpoint-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/img-kis/remove-bendpoint-hover.png -------------------------------------------------------------------------------- /src/icons/svg/chart.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/views/nested/menu1/menu1-3/index.vue: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/angular/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "angular", 3 | "version": "1.3.13", 4 | "main": "./angular.js", 5 | "ignore": [], 6 | "dependencies": { 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/jquery/test/data/test3.html: -------------------------------------------------------------------------------- 1 |
This is a user
2 |
This is a user
3 |
This is a teacher
4 | -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/sass-bootstrap/examples/navbar-static-top/navbar-static-top.css: -------------------------------------------------------------------------------- 1 | body { 2 | min-height: 2000px; 3 | } 4 | 5 | .navbar-static-top { 6 | margin-bottom: 19px; 7 | } -------------------------------------------------------------------------------- /static/flowable-idm/libs/es5-shim-15.3.4.5/tests/lib/jasmine_favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-idm/libs/es5-shim-15.3.4.5/tests/lib/jasmine_favicon.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/img-kis/icon-zoom-actual-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/img-kis/icon-zoom-actual-selected.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/diagram.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/xforms/icons/new_alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/xforms/icons/new_alert.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/xforms/icons/new_case.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/xforms/icons/new_case.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/xforms/icons/new_combo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/xforms/icons/new_combo.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/xforms/icons/new_date.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/xforms/icons/new_date.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/xforms/icons/new_form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/xforms/icons/new_form.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/xforms/icons/new_group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/xforms/icons/new_group.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/xforms/icons/new_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/xforms/icons/new_help.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/xforms/icons/new_hint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/xforms/icons/new_hint.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/xforms/icons/new_input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/xforms/icons/new_input.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/xforms/icons/new_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/xforms/icons/new_item.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/xforms/icons/new_label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/xforms/icons/new_label.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/xforms/icons/new_range.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/xforms/icons/new_range.png -------------------------------------------------------------------------------- /static/flowable-modeler/images/form-builder/headline-with-line-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/images/form-builder/headline-with-line-icon.png -------------------------------------------------------------------------------- /static/flowable-modeler/images/form-builder/multi-line-textfield-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/images/form-builder/multi-line-textfield-icon.png -------------------------------------------------------------------------------- /static/flowable-task/libs/es5-shim-15.3.4.5/tests/lib/jasmine_favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-task/libs/es5-shim-15.3.4.5/tests/lib/jasmine_favicon.png -------------------------------------------------------------------------------- /src/api/qiniu.js: -------------------------------------------------------------------------------- 1 | import request from '@/utils/request' 2 | 3 | export function getToken() { 4 | return request({ 5 | url: '/qiniu/upload/token', // 假地址 自行替换 6 | method: 'get' 7 | }) 8 | } 9 | -------------------------------------------------------------------------------- /static/flowable-admin/additional_components/angular-ui-select2/select2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-admin/additional_components/angular-ui-select2/select2.png -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/jquery/test/data/iframe.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | iframe 4 | 5 | 6 |
span text
7 | 8 | 9 | -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/modernizr/feature-detects/script-async.js: -------------------------------------------------------------------------------- 1 | // async script 2 | // By Theodoor van Donge 3 | Modernizr.addTest('scriptasync', 'async' in document.createElement('script')); -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/modernizr/feature-detects/script-defer.js: -------------------------------------------------------------------------------- 1 | // defer script 2 | // By Theodoor van Donge 3 | Modernizr.addTest('scriptdefer', 'defer' in document.createElement('script')); -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/modernizr/media/Modernizr 2 Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-admin/bower_components/modernizr/media/Modernizr 2 Logo.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/img-kis/icon-add-bendpoint-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/img-kis/icon-add-bendpoint-selected.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/img-kis/icon-align-vertical-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/img-kis/icon-align-vertical-selected.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/xforms/icons/new_action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/xforms/icons/new_action.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/xforms/icons/new_choices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/xforms/icons/new_choices.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/xforms/icons/new_header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/xforms/icons/new_header.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/xforms/icons/new_itemset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/xforms/icons/new_itemset.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/xforms/icons/new_number.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/xforms/icons/new_number.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/xforms/icons/new_output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/xforms/icons/new_output.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/xforms/icons/new_repeat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/xforms/icons/new_repeat.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/xforms/icons/new_secret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/xforms/icons/new_secret.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/xforms/icons/new_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/xforms/icons/new_select.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/xforms/icons/new_select1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/xforms/icons/new_select1.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/xforms/icons/new_submit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/xforms/icons/new_submit.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/xforms/icons/new_switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/xforms/icons/new_switch.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/xforms/icons/new_trigger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/xforms/icons/new_trigger.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/xforms/icons/new_upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/xforms/icons/new_upload.png -------------------------------------------------------------------------------- /src/components/ImageCropper/utils/mimes.js: -------------------------------------------------------------------------------- 1 | export default { 2 | 'jpg': 'image/jpeg', 3 | 'png': 'image/png', 4 | 'gif': 'image/gif', 5 | 'svg': 'image/svg+xml', 6 | 'psd': 'image/photoshop' 7 | } 8 | -------------------------------------------------------------------------------- /src/views/nested/menu1/index.vue: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /src/views/nested/menu1/menu1-2/menu1-2-1/index.vue: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /src/views/nested/menu1/menu1-2/menu1-2-2/index.vue: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /static/flowable-admin/additional_components/angular-ui-select2/select2x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-admin/additional_components/angular-ui-select2/select2x2.png -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/jquery/test/data/test2.html: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/modernizr/feature-detects/cors.js: -------------------------------------------------------------------------------- 1 | // cors 2 | // By Theodoor van Donge 3 | Modernizr.addTest('cors', !!(window.XMLHttpRequest && 'withCredentials' in new XMLHttpRequest())); -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/modernizr/test/caniuse_files/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-admin/bower_components/modernizr/test/caniuse_files/alpha.png -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/modernizr/test/caniuse_files/ruby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-admin/bower_components/modernizr/test/caniuse_files/ruby.png -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/modernizr/test/caniuse_files/table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-admin/bower_components/modernizr/test/caniuse_files/table.png -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/sass-bootstrap/assets/ico/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-admin/bower_components/sass-bootstrap/assets/ico/favicon.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/configuration/properties/http-request-method-display-template.html: -------------------------------------------------------------------------------- 1 | 2 | {{property.value}} 3 | GET -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/img-kis/icon-align-horizontal-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/img-kis/icon-align-horizontal-selected.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/img-kis/icon-remove-bendpoint-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/img-kis/icon-remove-bendpoint-selected.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/activity/task.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/activity/task.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/endevent/none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/endevent/none.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/swimlane/lane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/swimlane/lane.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/swimlane/pool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/swimlane/pool.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/throwing/none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/throwing/none.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/cmmn1.1/icons/activity/task.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/cmmn1.1/icons/activity/task.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/cmmn1.1/icons/sentry/entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/cmmn1.1/icons/sentry/entry.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/cmmn1.1/icons/sentry/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/cmmn1.1/icons/sentry/exit.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/xforms/icons/new_checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/xforms/icons/new_checkbox.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/xforms/icons/new_paragraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/xforms/icons/new_paragraph.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/xforms/icons/new_separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/xforms/icons/new_separator.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/xforms/icons/new_textarea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/xforms/icons/new_textarea.png -------------------------------------------------------------------------------- /static/flowable-modeler/libs/es5-shim-15.3.4.5/tests/lib/jasmine_favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/libs/es5-shim-15.3.4.5/tests/lib/jasmine_favicon.png -------------------------------------------------------------------------------- /src/views/errorLog/errorTestB.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 12 | -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/jquery/test/xhtml.php: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/modernizr/test/caniuse_files/green5x5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-admin/bower_components/modernizr/test/caniuse_files/green5x5.png -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/modernizr/test/caniuse_files/red30x30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-admin/bower_components/modernizr/test/caniuse_files/red30x30.png -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/modernizr/test/caniuse_files/svg_blur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-admin/bower_components/modernizr/test/caniuse_files/svg_blur.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/catching/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/catching/cancel.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/catching/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/catching/error.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/catching/signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/catching/signal.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/catching/timer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/catching/timer.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/endevent/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/endevent/cancel.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/endevent/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/endevent/error.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/startevent/none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/startevent/none.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/throwing/signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/throwing/signal.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/xforms/icons/new_radiobutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/xforms/icons/new_radiobutton.png -------------------------------------------------------------------------------- /static/flowable-admin/additional_components/angular-ui-select2/select2-spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-admin/additional_components/angular-ui-select2/select2-spinner.gif -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/modernizr/test/caniuse_files/apng_test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-admin/bower_components/modernizr/test/caniuse_files/apng_test.png -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/modernizr/test/caniuse_files/mathml_ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-admin/bower_components/modernizr/test/caniuse_files/mathml_ref.png -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/sass-bootstrap/examples/screenshots/grid.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-admin/bower_components/sass-bootstrap/examples/screenshots/grid.jpg -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/catching/message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/catching/message.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/endevent/terminate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/endevent/terminate.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/gateway/eventbased.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/gateway/eventbased.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/gateway/inclusive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/gateway/inclusive.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/gateway/parallel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/gateway/parallel.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/startevent/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/startevent/error.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/startevent/message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/startevent/message.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/startevent/signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/startevent/signal.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/startevent/timer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/startevent/timer.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/cmmn1.1/icons/activity/casetask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/cmmn1.1/icons/activity/casetask.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/cmmn1.1/icons/activity/httptask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/cmmn1.1/icons/activity/httptask.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/cmmn1.1/icons/activity/humantask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/cmmn1.1/icons/activity/humantask.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/cmmn1.1/icons/activity/milestone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/cmmn1.1/icons/activity/milestone.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/cmmn1.1/icons/event/userlistener.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/cmmn1.1/icons/event/userlistener.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/xforms/icons/new_repeating_group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/xforms/icons/new_repeating_group.png -------------------------------------------------------------------------------- /static/flowable-modeler/libs/bootstrap_3.1.1/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/libs/bootstrap_3.1.1/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /static/flowable-modeler/libs/bootstrap_3.1.1/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/libs/bootstrap_3.1.1/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/atmosphere/README.md: -------------------------------------------------------------------------------- 1 | bower-atmosphere 2 | ============================ 3 | 4 | This repository is for distribution on `bower` 5 | 6 | ```shell 7 | bower install atmosphere 8 | ``` 9 | -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/jquery/test/data/errorWithJSON.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/views/example/components/Dropdown/index.js: -------------------------------------------------------------------------------- 1 | export { default as CommentDropdown } from './Comment' 2 | export { default as PlatformDropdown } from './Platform' 3 | export { default as SourceUrlDropdown } from './SourceUrl' 4 | -------------------------------------------------------------------------------- /src/views/nested/menu1/menu1-2/index.vue: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/angular-scenario/jstd-scenario-adapter-config.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Configuration for jstd scenario adapter 3 | */ 4 | var jstdScenarioAdapter = { 5 | relativeUrlPrefix: '/build/docs/' 6 | }; 7 | -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/angular-ui-utils/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "angular-ui-utils", 3 | "version": "0.2.1", 4 | "main": "./ui-utils.js", 5 | "dependencies": { 6 | "angular": ">= 1.0.2" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/modernizr/test/caniuse_files/png_alpha_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-admin/bower_components/modernizr/test/caniuse_files/png_alpha_result.png -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/sass-bootstrap/examples/jumbotron/jumbotron.css: -------------------------------------------------------------------------------- 1 | /* Move down content because we have a fixed navbar that is 50px tall */ 2 | body { 3 | padding-top: 50px; 4 | padding-bottom: 20px; 5 | } 6 | -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/sass-bootstrap/examples/screenshots/carousel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-admin/bower_components/sass-bootstrap/examples/screenshots/carousel.jpg -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/sass-bootstrap/examples/screenshots/jumbotron.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-admin/bower_components/sass-bootstrap/examples/screenshots/jumbotron.jpg -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/sass-bootstrap/examples/screenshots/offcanvas.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-admin/bower_components/sass-bootstrap/examples/screenshots/offcanvas.jpg -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/sass-bootstrap/examples/screenshots/sign-in.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-admin/bower_components/sass-bootstrap/examples/screenshots/sign-in.jpg -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/activity/list/type.http.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/activity/list/type.http.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/activity/list/type.mule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/activity/list/type.mule.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/activity/list/type.send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/activity/list/type.send.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/activity/list/type.user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/activity/list/type.user.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/catching/compensation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/catching/compensation.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/connector/messageflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/connector/messageflow.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/connector/sequenceflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/connector/sequenceflow.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/dataobject/data.store.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/dataobject/data.store.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/cmmn1.1/icons/activity/casefileitem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/cmmn1.1/icons/activity/casefileitem.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/cmmn1.1/icons/activity/decisiontask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/cmmn1.1/icons/activity/decisiontask.png -------------------------------------------------------------------------------- /src/api/remoteSearch.js: -------------------------------------------------------------------------------- 1 | import request from '@/utils/request' 2 | 3 | export function userSearch(name) { 4 | return request({ 5 | url: '/search/user', 6 | method: 'get', 7 | params: { name } 8 | }) 9 | } 10 | -------------------------------------------------------------------------------- /src/api/transaction.js: -------------------------------------------------------------------------------- 1 | import request from '@/utils/request' 2 | 3 | export function fetchList(query) { 4 | return request({ 5 | url: '/transaction/list', 6 | method: 'get', 7 | params: query 8 | }) 9 | } 10 | -------------------------------------------------------------------------------- /src/views/nested/menu1/menu1-1/index.vue: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/jquery-atmosphere/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "jquery.atmosphere.js", 3 | "version": "2.1.2", 4 | "dependencies": { 5 | "jquery": ">= 1.9.0" 6 | }, 7 | "name": "atmosphere-jquery" 8 | } -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/modernizr/feature-detects/css-objectfit.js: -------------------------------------------------------------------------------- 1 | 2 | // dev.opera.com/articles/view/css3-object-fit-object-position/ 3 | 4 | Modernizr.addTest('object-fit', 5 | !!Modernizr.prefixed('objectFit') 6 | ); -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/modernizr/feature-detects/dom-microdata.js: -------------------------------------------------------------------------------- 1 | // Microdata support 2 | // http://www.w3.org/TR/html5/microdata.html 3 | // By Addy Osmani 4 | Modernizr.addTest('microdata', !!(document['getItems'])); -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/modernizr/feature-detects/network-eventsource.js: -------------------------------------------------------------------------------- 1 | 2 | // server sent events aka eventsource 3 | // dev.w3.org/html5/eventsource/ 4 | 5 | Modernizr.addTest('eventsource', !!window.EventSource); 6 | -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/sass-bootstrap/examples/offcanvas/offcanvas.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function() { 2 | $('[data-toggle=offcanvas]').click(function() { 3 | $('.row-offcanvas').toggleClass('active'); 4 | }); 5 | }); -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/activity/adhoc.subprocess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/activity/adhoc.subprocess.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/activity/event.subprocess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/activity/event.subprocess.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/activity/list/type.camel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/activity/list/type.camel.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/activity/list/type.manual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/activity/list/type.manual.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/activity/list/type.script.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/activity/list/type.script.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/activity/list/type.shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/activity/list/type.shell.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/artifact/text.annotation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/artifact/text.annotation.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/cmmn1.1/icons/containers/caseplanmodel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/cmmn1.1/icons/containers/caseplanmodel.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/cmmn1.1/icons/containers/expanded.stage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/cmmn1.1/icons/containers/expanded.stage.png -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/modernizr/feature-detects/audio-audiodata-api.js: -------------------------------------------------------------------------------- 1 | // Mozilla Audio Data API 2 | // https://wiki.mozilla.org/Audio_Data_API 3 | // by Addy Osmani 4 | Modernizr.addTest('audiodata', !!(window.Audio)); 5 | -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/sass-bootstrap/examples/screenshots/justified-nav.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-admin/bower_components/sass-bootstrap/examples/screenshots/justified-nav.jpg -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/sass-bootstrap/examples/screenshots/navbar-fixed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-admin/bower_components/sass-bootstrap/examples/screenshots/navbar-fixed.jpg -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/sass-bootstrap/examples/screenshots/navbar-static.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-admin/bower_components/sass-bootstrap/examples/screenshots/navbar-static.jpg -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/sass-bootstrap/examples/screenshots/non-responsive.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-admin/bower_components/sass-bootstrap/examples/screenshots/non-responsive.jpg -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/sass-bootstrap/examples/screenshots/sticky-footer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-admin/bower_components/sass-bootstrap/examples/screenshots/sticky-footer.jpg -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/configuration/properties/boolean-property-template.html: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 |
-------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/activity/expanded.subprocess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/activity/expanded.subprocess.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/activity/list/type.decision.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/activity/list/type.decision.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/activity/list/type.receive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/activity/list/type.receive.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/activity/list/type.service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/activity/list/type.service.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/gateway/exclusive.databased.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/gateway/exclusive.databased.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/cmmn1.1/icons/activity/timereventlistener.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/cmmn1.1/icons/activity/timereventlistener.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/cmmn1.1/icons/containers/collapsed.stage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/cmmn1.1/icons/containers/collapsed.stage.png -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/jquery-atmosphere/README.md: -------------------------------------------------------------------------------- 1 | bower-jquery-atmosphere 2 | ============================ 3 | 4 | This repository is for distribution on `bower` 5 | 6 | ```shell 7 | bower install jquery-atmosphere 8 | ``` 9 | -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/modernizr/feature-detects/es5-strictmode.js: -------------------------------------------------------------------------------- 1 | // strict mode 2 | 3 | // test by @kangax 4 | 5 | Modernizr.addTest('strictmode', function(){ 6 | return (function(){ "use strict"; return !this; })(); 7 | }); -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/sass-bootstrap/examples/screenshots/jumbotron-narrow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-admin/bower_components/sass-bootstrap/examples/screenshots/jumbotron-narrow.jpg -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/sass-bootstrap/examples/screenshots/starter-template.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-admin/bower_components/sass-bootstrap/examples/screenshots/starter-template.jpg -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/configuration/properties/fields-write-template.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/cmmn1.1/icons/activity/expanded.planfragment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/cmmn1.1/icons/activity/expanded.planfragment.png -------------------------------------------------------------------------------- /src/views/layout/components/index.js: -------------------------------------------------------------------------------- 1 | export { default as Navbar } from './Navbar' 2 | export { default as Sidebar } from './Sidebar/index.vue' 3 | export { default as TagsView } from './TagsView' 4 | export { default as AppMain } from './AppMain' 5 | -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/jquery/.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "src/sizzle"] 2 | path = src/sizzle 3 | url = git://github.com/jquery/sizzle.git 4 | [submodule "test/qunit"] 5 | path = test/qunit 6 | url = git://github.com/jquery/qunit.git 7 | -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/modernizr/feature-detects/pointerlock-api.js: -------------------------------------------------------------------------------- 1 | // https://developer.mozilla.org/en-US/docs/API/Pointer_Lock_API 2 | 3 | Modernizr.addTest('pointerlock',!!Modernizr.prefixed('pointerLockElement', document)); 4 | 5 | -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/configuration/properties/duedate-write-template.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/activity/list/type.business.rule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/activity/list/type.business.rule.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/connector/association.undirected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/connector/association.undirected.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/cmmn1.1/icons/activity/collapsed.planfragment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/cmmn1.1/icons/activity/collapsed.planfragment.png -------------------------------------------------------------------------------- /src/views/errorLog/errorTestA.vue: -------------------------------------------------------------------------------- 1 | 8 | 9 | 14 | -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/modernizr/feature-detects/dart.js: -------------------------------------------------------------------------------- 1 | // Dart 2 | // By Theodoor van Donge 3 | 4 | // https://chromiumcodereview.appspot.com/9232049/ 5 | 6 | Modernizr.addTest('dart', !!Modernizr.prefixed('startDart', navigator)); 7 | -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/modernizr/test/caniuse_files/svg-img.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/modernizr/test/caniuse_files/svg-img.svg.1: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/sass-bootstrap/assets/ico/apple-touch-icon-57-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-admin/bower_components/sass-bootstrap/assets/ico/apple-touch-icon-57-precomposed.png -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/sass-bootstrap/assets/ico/apple-touch-icon-72-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-admin/bower_components/sass-bootstrap/assets/ico/apple-touch-icon-72-precomposed.png -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/sass-bootstrap/examples/screenshots/sticky-footer-navbar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-admin/bower_components/sass-bootstrap/examples/screenshots/sticky-footer-navbar.jpg -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/configuration/properties/assignment-write-template.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/activity/event.subprocess.collapsed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/activity/event.subprocess.collapsed.png -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/angular-mocks/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "angular-mocks", 3 | "version": "1.3.13", 4 | "main": "./angular-mocks.js", 5 | "ignore": [], 6 | "dependencies": { 7 | "angular": "1.3.13" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/angular-route/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "angular-route", 3 | "version": "1.3.13", 4 | "main": "./angular-route.js", 5 | "ignore": [], 6 | "dependencies": { 7 | "angular": "1.3.13" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/json3/.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "vendor/spec"] 2 | path = vendor/spec 3 | url = git://github.com/kitcambridge/spec.git 4 | [submodule "vendor/marked"] 5 | path = vendor/marked 6 | url = git://github.com/chjj/marked.git 7 | -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/modernizr/feature-detects/dom-classlist.js: -------------------------------------------------------------------------------- 1 | // classList 2 | // https://developer.mozilla.org/en/DOM/element.classList 3 | // By Addy Osmani 4 | Modernizr.addTest('classlist', 'classList' in document.documentElement); 5 | -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/sass-bootstrap/assets/ico/apple-touch-icon-114-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-admin/bower_components/sass-bootstrap/assets/ico/apple-touch-icon-114-precomposed.png -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/sass-bootstrap/assets/ico/apple-touch-icon-144-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-admin/bower_components/sass-bootstrap/assets/ico/apple-touch-icon-144-precomposed.png -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/configuration/properties/form-reference-write-template.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/configuration/properties/in-parameters-write-template.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/configuration/properties/out-parameters-write-template.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/configuration/properties/task-listeners-write-template.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/configuration/properties/text-property-write-template.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/connector/association.unidirectional.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshun/flowable-vue-ui/HEAD/static/flowable-modeler/editor-app/stencilsets/bpmn2.0/icons/connector/association.unidirectional.png -------------------------------------------------------------------------------- /src/styles/variables.scss: -------------------------------------------------------------------------------- 1 | $base:#171e27; 2 | $contrast: #202a37; 3 | $secondary: #202a37; 4 | $text: #FFFFFF; 5 | $gray: #d0d0d0; 6 | $primary: #01CEA2; 7 | 8 | 9 | $error: #EA3465; 10 | $info: #3eb1f3; 11 | $success: #01CEA2; 12 | $warning: #F3833E; 13 | -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/angular-cookies/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "angular-cookies", 3 | "version": "1.3.13", 4 | "main": "./angular-cookies.js", 5 | "ignore": [], 6 | "dependencies": { 7 | "angular": "1.3.13" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/angular-resource/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "angular-resource", 3 | "version": "1.3.13", 4 | "main": "./angular-resource.js", 5 | "ignore": [], 6 | "dependencies": { 7 | "angular": "1.3.13" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/angular-sanitize/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "angular-sanitize", 3 | "version": "1.3.13", 4 | "main": "./angular-sanitize.js", 5 | "ignore": [], 6 | "dependencies": { 7 | "angular": "1.3.13" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/angular-scenario/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "angular-scenario", 3 | "version": "1.3.13", 4 | "main": "./angular-scenario.js", 5 | "ignore": [], 6 | "dependencies": { 7 | "angular": "1.3.13" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/jquery/test/unit/exports.js: -------------------------------------------------------------------------------- 1 | module("exports", { teardown: moduleTeardown }); 2 | 3 | test("amdModule", function() { 4 | expect(1); 5 | 6 | equal( jQuery, amdDefined, "Make sure defined module matches jQuery" ); 7 | }); 8 | -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/configuration/properties/data-properties-write-template.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/configuration/properties/event-listeners-write-template.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/configuration/properties/form-properties-write-template.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/configuration/properties/signal-definitions-write-template.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/configuration/properties/execution-listeners-write-template.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/configuration/properties/fields-display-template.html: -------------------------------------------------------------------------------- 1 | 2 | {{'PROPERTY.FIELDS' | translate:property.value.fields}} 3 | {{'PROPERTY.FIELDS.EMPTY' | translate}} -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/configuration/properties/message-definitions-write-template.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/configuration/properties/process-reference-write-template.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/configuration/properties/sequenceflow-order-write-template.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/modernizr/feature-detects/window-framed.js: -------------------------------------------------------------------------------- 1 | 2 | // tests if page is iframed 3 | 4 | // github.com/Modernizr/Modernizr/issues/242 5 | 6 | Modernizr.addTest('framed', function(){ 7 | return window.location != top.location; 8 | }); 9 | -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/configuration/properties/case-reference-display-template.html: -------------------------------------------------------------------------------- 1 | 2 | {{property.value.name}} 3 | PROPERTY.CASEREFERENCE.EMPTY 4 | -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/configuration/properties/condition-expression-write-template.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/configuration/properties/sequenceflow-order-display-template.html: -------------------------------------------------------------------------------- 1 | 2 | PROPERTY.SEQUENCEFLOW.ORDER.NOT.EMPTY 3 | PROPERTY.SEQUENCEFLOW.ORDER.EMPTY -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/jquery/test/data/cleanScript.html: -------------------------------------------------------------------------------- 1 | 6 | 11 | -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/modernizr/.editorconfig: -------------------------------------------------------------------------------- 1 | # editorconfig.org 2 | root = true 3 | 4 | [*] 5 | indent_style = space 6 | indent_size = 2 7 | end_of_line = lf 8 | charset = utf-8 9 | trim_trailing_whitespace = true 10 | insert_final_newline = true 11 | -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/modernizr/feature-detects/vibration.js: -------------------------------------------------------------------------------- 1 | // Vibration API 2 | // http://www.w3.org/TR/vibration/ 3 | // https://developer.mozilla.org/en/DOM/window.navigator.mozVibrate 4 | Modernizr.addTest('vibrate', !!Modernizr.prefixed('vibrate', navigator)); -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/configuration/properties/process-reference-display-template.html: -------------------------------------------------------------------------------- 1 | 2 | {{property.value.name}} 3 | PROPERTY.PROCESSREFERENCE.EMPTY 4 | -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/jquery/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "jquery", 3 | "version": "2.0.3", 4 | "description": "jQuery component", 5 | "keywords": [ 6 | "jquery", 7 | "component" 8 | ], 9 | "main": "jquery.js", 10 | "license": "MIT" 11 | } 12 | -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/modernizr/feature-detects/battery-api.js: -------------------------------------------------------------------------------- 1 | 2 | // Battery API 3 | // https://developer.mozilla.org/en/DOM/window.navigator.mozBattery 4 | // By: Paul Sayre 5 | 6 | Modernizr.addTest('battery', 7 | !!Modernizr.prefixed('battery', navigator) 8 | ); -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/configuration/properties/decisiontable-reference-display-template.html: -------------------------------------------------------------------------------- 1 | 2 | {{property.value.name}} 3 | PROPERTY.DECISIONTABLEREFERENCE.EMPTY 4 | -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/configuration/properties/in-parameters-display-template.html: -------------------------------------------------------------------------------- 1 | 2 | {{'PROPERTY.INPARAMETERS.VALUE' | translate:property.value.inParameters}} 3 | PROPERTY.INPARAMETERS.EMPTY -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/jquery/test/data/test.html: -------------------------------------------------------------------------------- 1 | html text
2 | 6 | 7 | blabla 8 | -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/modernizr/feature-detects/audio-webaudio-api.js: -------------------------------------------------------------------------------- 1 | // Web Audio API 2 | // https://dvcs.w3.org/hg/audio/raw-file/tip/webaudio/specification.html 3 | // By Addy Osmani 4 | Modernizr.addTest('webaudio', !!(window.webkitAudioContext || window.AudioContext)); 5 | -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/modernizr/feature-detects/dataview-api.js: -------------------------------------------------------------------------------- 1 | // DataView 2 | // https://developer.mozilla.org/en/JavaScript_typed_arrays/DataView 3 | // By Addy Osmani 4 | Modernizr.addTest('dataview', (typeof DataView !== 'undefined' && 'getFloat64' in DataView.prototype)); -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/configuration/properties/out-parameters-display-template.html: -------------------------------------------------------------------------------- 1 | 2 | {{'PROPERTY.OUTPARAMETERS.VALUE' | translate:property.value.outParameters}} 3 | PROPERTY.OUTPARAMETERS.EMPTY -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/configuration/properties/signal-definitions-display-template.html: -------------------------------------------------------------------------------- 1 | 2 | {{'PROPERTY.SIGNALDEFINITIONS.DISPLAY' | translate:property.value}} 3 | PROPERTY.SIGNALDEFINITIONS.EMPTY -------------------------------------------------------------------------------- /static/flowable-modeler/editor-app/configuration/properties/task-listeners-display-template.html: -------------------------------------------------------------------------------- 1 | 2 | {{'PROPERTY.TASKLISTENERS.VALUE' | translate:property.value.taskListeners}} 3 | PROPERTY.TASKLISTENERS.EMPTY -------------------------------------------------------------------------------- /src/views/example/edit.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 13 | 14 | -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/jquery/test/data/with_fries_over_jsonp.php: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /static/flowable-admin/bower_components/modernizr/feature-detects/elem-time.js: -------------------------------------------------------------------------------- 1 | //